annotations = [
[
"2020-09-20",
"Cohort of undergraduates are allowed to move back onto campus for limited in-person classes",
{ dy: 100 }
],
["2020-10-05", "Quiet period ends", { dy: 60 }],
[
"2020-11-18",
"In-person classes shifted online in response to rising cases",
{ flip: true }
],
[
"2020-11-25",
"Thanksgiving break begins, portion of the undergraduate population leaves campus for the rest of the semester"
],
[
"2021-01-27",
"Campus moves to Modified Level 2 activity status",
{ dy: 20 }
],
[
"2021-07-07",
"After 90% vaccination level reached, Brown removes vaccinated students from testing program and drops indoor masking requirement for masking students",
{ flip: true }
],
[
"2021-08-03",
"University reinstates indoor mask mandate for all community members and increases required testing frequency for vaccinated people"
],
[
"2021-09-13",
"New temporary restrictions introduced, including suspension of indoor dining",
{ flip: true, dy: 120 }
],
["2021-09-24", "In-person dining resumes", { dy: 270 }],
[
"2021-09-29",
"Remaining temporary restrictions are reversed",
{ dy: 180, width: 80 }
],
[
"2021-10-06",
"Fully vaccinated students are only required to get tested once weekly",
{ dy: 100 }
],
[
"2021-10-29",
"Fully vaccinated undergraduate students are no longer required to get tested",
{ flip: true }
]
].map((d) => ({
date: new Date(d[0]),
content: d[1],
...d[2]
}))