initial draft

This commit is contained in:
sneakers-the-rat 2024-05-13 22:46:17 -07:00
commit 56087703a0
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D
18 changed files with 5853 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.venv

17
README.md Normal file
View file

@ -0,0 +1,17 @@
Install deps (with pdm):
```bash
cd src
pdm install
source ./.venv/bin/activate
```
To build:
from repository root -
```bash
mkdocs build -f ./src/mkdocs.yml -d ../build/site
```
use [monolith](https://github.com/Y2Z/monolith) to make the self-contained page in `build/monolith`

File diff suppressed because one or more lines are too long

251
build/site/css/timeline.css Normal file
View file

@ -0,0 +1,251 @@
@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,200;1,200&family=Roboto:ital,wght@0,700;1,700&display=swap');
:root {
--header-font: "Roboto", "aktiv-grotesk", sans-serif;
--body-font: "Chivo", serif;
--primary-color: #1A1A1A;
--primary-color-shade-0: #CACACA;
--primary-color-shade-0-alpha: #CACACA00;
--secondary-color: #FFDE00;
}
body {
font-family: var(--body-font);
font-weight: 200;
}
h1 {
font-family: var(--header-font);
font-weight: bold;
}
.nt-timeline-title {
font-family: var(--header-font);
font-weight: bold;
}
/* nt-timeline vendoring */
.nt-timeline {
margin-top: 30px;
}
.nt-timeline .nt-timeline-title {
font-size: 1.1rem;
margin-top: 0;
}
.nt-timeline .nt-timeline-sub-title {
margin-top: 0;
}
.nt-timeline .nt-timeline-content {
font-size: 1rem;
border-bottom: 2px dashed #ccc;
padding-bottom: 1.2rem;
}
.nt-timeline.horizontal .nt-timeline-items {
flex-direction: row;
overflow-x: scroll;
}
.nt-timeline.horizontal .nt-timeline-items > div {
min-width: 400px;
margin-right: 50px;
}
.nt-timeline.horizontal.reverse .nt-timeline-items {
flex-direction: row-reverse;
}
.nt-timeline.horizontal.center .nt-timeline-before {
background-image: linear-gradient(rgba(252, 70, 107, 0) 0%, rgb(252, 70, 107) 100%);
background-repeat: no-repeat;
background-size: 100% 2px;
background-position: 0 center;
}
.nt-timeline.horizontal.center .nt-timeline-after {
background-image: linear-gradient(180deg, var(--primary-color-shade-0) 0%, var(--primary-color-shade-0) 100%);
background-repeat: no-repeat;
background-size: 100% 2px;
background-position: 0 center;
}
.nt-timeline.horizontal.center .nt-timeline-items {
background-image: radial-gradient(circle, rgb(63, 94, 251) 0%, rgb(252, 70, 107) 100%);
background-repeat: no-repeat;
background-size: 100% 2px;
background-position: 0 center;
}
.nt-timeline.horizontal .nt-timeline-dot {
left: 50%;
}
.nt-timeline.horizontal .nt-timeline-dot:not(.bigger) {
top: calc(50% - 4px);
}
.nt-timeline.horizontal .nt-timeline-dot.bigger {
top: calc(50% - 15px);
}
.nt-timeline.vertical .nt-timeline-items {
flex-direction: column;
}
.nt-timeline.vertical.reverse .nt-timeline-items {
flex-direction: column-reverse;
}
.nt-timeline.vertical.center .nt-timeline-before {
background: linear-gradient(rgba(252, 70, 107, 0) 0%, rgb(252, 70, 107) 100%) no-repeat center/2px 100%;
}
.nt-timeline.vertical.center .nt-timeline-after {
background: linear-gradient(rgb(252, 70, 107) 0%, rgba(252, 70, 107, 0) 100%) no-repeat center/2px 100%;
}
.nt-timeline.vertical.center .nt-timeline-items {
background: radial-gradient(circle, rgb(63, 94, 251) 0%, rgb(252, 70, 107) 100%) no-repeat center/2px 100%;
}
.nt-timeline.vertical.center .nt-timeline-dot {
left: calc(50% - 10px);
}
.nt-timeline.vertical.center .nt-timeline-dot:not(.bigger) {
top: 10px;
}
.nt-timeline.vertical.center .nt-timeline-dot.bigger {
left: calc(50% - 20px);
}
.nt-timeline.vertical.left {
padding-left: 100px;
}
.nt-timeline.vertical.left .nt-timeline-item {
padding-left: 70px;
}
.nt-timeline.vertical.left .nt-timeline-sub-title {
left: -100px;
width: 100px;
text-align: right;
}
.nt-timeline.vertical.left .nt-timeline-before {
background: linear-gradient(var(--primary-color-shade-0-alpha) 0%, var(--primary-color-shade-0) 100%) no-repeat 30px/2px 100%;
}
.nt-timeline.vertical.left .nt-timeline-after {
background: linear-gradient(var(--primary-color-shade-0) 0%, var(--primary-color-shade-0-alpha) 100%) no-repeat 30px/2px 100%;
}
.nt-timeline.vertical.left .nt-timeline-items {
background: radial-gradient(circle, var(--primary-color) 0%, var(--primary-color-shade-0) 100%) no-repeat 30px/2px 100%;
}
.nt-timeline.vertical.left .nt-timeline-dot {
left: 24px;
top: 5px;
}
.nt-timeline.vertical.left .nt-timeline-dot.bigger {
top: 0px;
left: 10px;
}
.nt-timeline.vertical.right {
padding-right: 100px;
}
.nt-timeline.vertical.right .nt-timeline-sub-title {
right: -100px;
text-align: left;
width: 100px;
}
.nt-timeline.vertical.right .nt-timeline-item {
padding-right: 70px;
}
.nt-timeline.vertical.right .nt-timeline-before {
background: linear-gradient(rgba(252, 70, 107, 0) 0%, rgb(252, 70, 107) 100%) no-repeat calc(100% - 30px)/2px 100%;
}
.nt-timeline.vertical.right .nt-timeline-after {
background: linear-gradient(rgb(252, 70, 107) 0%, rgba(252, 70, 107, 0) 100%) no-repeat calc(100% - 30px)/2px 100%;
}
.nt-timeline.vertical.right .nt-timeline-items {
background: radial-gradient(circle, rgb(63, 94, 251) 0%, rgb(252, 70, 107) 100%) no-repeat calc(100% - 30px)/2px 100%;
}
.nt-timeline.vertical.right .nt-timeline-dot {
right: 21px;
top: 8px;
}
.nt-timeline.vertical.right .nt-timeline-dot.bigger {
top: 10px;
right: 10px;
}
.nt-timeline-items {
display: flex;
position: relative;
}
.nt-timeline-items > div {
min-height: 100px;
padding-top: 2px;
padding-bottom: 20px;
}
.nt-timeline-before {
content: "";
height: 15px;
}
.nt-timeline-after {
content: "";
height: 60px;
margin-bottom: 20px;
}
.nt-timeline-sub-title {
position: absolute;
width: 50%;
top: 4px;
font-size: 18px;
color: var(--nt-color-50);
}
[data-md-color-scheme=slate] .nt-timeline-sub-title {
color: var(--nt-color-51);
}
.nt-timeline-item {
position: relative;
}
.nt-timeline.vertical.center:not(.alternate) .nt-timeline-item {
padding-left: calc(50% + 40px);
}
.nt-timeline.vertical.center:not(.alternate) .nt-timeline-item .nt-timeline-sub-title {
left: 0;
padding-right: 40px;
text-align: right;
}
.nt-timeline.vertical.center.alternate .nt-timeline-item:nth-child(odd) {
padding-left: calc(50% + 40px);
}
.nt-timeline.vertical.center.alternate .nt-timeline-item:nth-child(odd) .nt-timeline-sub-title {
left: 0;
padding-right: 40px;
text-align: right;
}
.nt-timeline.vertical.center.alternate .nt-timeline-item:nth-child(even) {
text-align: right;
padding-right: calc(50% + 40px);
}
.nt-timeline.vertical.center.alternate .nt-timeline-item:nth-child(even) .nt-timeline-sub-title {
right: 0;
padding-left: 40px;
text-align: left;
}
.nt-timeline-dot {
position: relative;
width: 10px;
height: 10px;
border-radius: 100%;
background-color: var(--secondary-color);
position: absolute;
top: 0px;
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
border: 3px solid var(--primary-color);
}
.nt-timeline-dot:not(.bigger) .icon {
font-size: 10px;
}
.nt-timeline-dot.bigger {
width: 40px;
height: 40px;
padding: 3px;
}
.nt-timeline-dot .icon {
color: white;
}

230
build/site/index.html Normal file
View file

@ -0,0 +1,230 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/timeline.css">
</head>
<div class="nt-timeline vertical left">
<div class="nt-timeline-before"></div>
<div class="nt-timeline-items">
<div class="nt-timeline-item">
<p class="nt-timeline-title">Camp Established</p>
<span class="nt-timeline-sub-title">April 25</span><p class="nt-timeline-content">Early Thursday morning, UCLA students and employees set up tents on Dickson Court outside Royce Hall, establishing Palestine Solidarity Encampment. <br><br>
UCLA issues a BruinALERT: "We're actively monitoring this situation to support a safe and peaceful campus environment that respects our community's right to free expression while minimizing disruption to our teaching and learning mission."
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">UCLA Issues First Statement</p>
<span class="nt-timeline-sub-title">April 26</span><p class="nt-timeline-content">UCLA issues <a href="https://newsroom.ucla.edu/ucla-statement-about-encampment-on-campus-april-26">a statement</a> on the encampment, including: "we are following University of California systemwide policy guidance, which directs us not to request law enforcement involvement preemptively, and only if absolutely necessary to protect the physical safety of our campus community"
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Peaceful Demonstration</p>
<p class="nt-timeline-content">The first phase of the encampment is marked by education and solidarity - with daily programming including teach-ins and multi-faith prayer. Counter-protesters are almost continuously present around the encampment day and night, and organizers are careful to de-escalate the few small scuffles between groups, but some injuries are reported among members of the encampment and counter-protesters.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">First Major Counter-demonstration</p>
<span class="nt-timeline-sub-title">April 28</span><p class="nt-timeline-content">Several groups organize a <a href="https://dailybruin.com/2024/04/27/counter-protests-of-ucla-encampment-raise-over-50000-on-gofundme">counter-demonstration</a> after raising $50,000 ($98,000 <a href="https://web.archive.org/web/20240514011726/https://www.gofundme.com/f/ucla-counter-protest">at the time of writing</a>) to fund a stage, jumbotron and loudspeakers for the event. Barricades separating the crowds of thousands are <a href="https://dailybruin.com/2024/04/28/protesters-counter-protesters-clash-as-they-converge-upon-ucla-encampment">breached</a> multiple times, and violence <a href="https://x.com/ACatWithNews/status/1784680676106870952">escalates</a> as private security officers fail to maintain a barrier between protesters and counter-protesters.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Psychological Warfare</p>
<span class="nt-timeline-sub-title">April 28-May 1</span><p class="nt-timeline-content">The jumbotron and loudspeakers are allowed to stay on Dickson court throughout the week, playing footage from October 7th and sounds like <a href="https://youtu.be/_jL8cDm5Th4">babies crying</a> on repeat through the day and night to prevent sleep, a <a href="https://lapublicpress.org/2024/05/two-nights-of-violence-at-uclas-solidarity-encampment/">known torture tactic</a>.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Encampment Declared Illegal</p>
<span class="nt-timeline-sub-title">April 30</span><p class="nt-timeline-content">UCLA declares the encampment illegal and warns everyone to leave.</p>
<div class="nt-timeline-dot "></div>
</div>
</div>
<div class="nt-timeline-after"></div>
</div>
<h2 id="april-30-the-encampment-is-attacked">April 30 - The Encampment is Attacked</h2>
<p>All times approximate.</p>
<div class="nt-timeline vertical left">
<div class="nt-timeline-before"></div>
<div class="nt-timeline-items">
<div class="nt-timeline-item">
<p class="nt-timeline-title">Attack Begins</p>
<span class="nt-timeline-sub-title">10:40pm
</span><p class="nt-timeline-content">Members of the encampment are <a href="https://x.com/m0thercity/status/1785593008693579901">peacefully occupying the camp</a>, when a crowd begins to <a href="https://youtu.be/C5LLK2SogPs?t=425">tear apart the barricade</a> surrounding the encampment. Members of the encampment reinforce the barricades, and private security halfheartedly tries to re-establish the buffer between the groups but do nothing to intervene.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Police Notified</p>
<span class="nt-timeline-sub-title">10:45pm
</span><p class="nt-timeline-content">Administrative Vice Chancellor Michael Beck <a href="https://www.latimes.com/california/story/2024-05-07/a-ucla-timeline-from-peaceful-encampment-to-violent-attacks-aftermath">requests assistance</a> from LAPD Chief John Thomas, LASD, Beverly Hills, Culver City and Santa Monica Police Departments.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Attack Escalates</p>
<span class="nt-timeline-sub-title">10:50pm
</span><p class="nt-timeline-content">Private security abandons the area, and the metal barricades outside of the encampment are completely removed. Attacks come in waves, with attackers retreating into Dickson plaza, and then returning in force to attack the barricades together. Attackers alternate between tearing down the barricade and attacking students and staff in the encampment with pipes, boards, lasers, <a href="https://youtu.be/C5LLK2SogPs?t=901">bear mace, skunk spray,</a> and <a href="https://youtu.be/C5LLK2SogPs?t=1455">Tasers</a>. Throughout the attack, members and organizers of the encampment do not pursue the attackers, maintaining their barricades.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Private Security Leave</p>
<span class="nt-timeline-sub-title">10:53pm
</span><p class="nt-timeline-content">Campus security guards <a href="https://lapublicpress.org/2024/05/two-nights-of-violence-at-uclas-solidarity-encampment/">leave the scene,</a> or stand on the sidelines and watch.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Fireworks Begin</p>
<span class="nt-timeline-sub-title">11:00pm
</span><p class="nt-timeline-content"><a href="https://www.nytimes.com/interactive/2024/05/03/us/ucla-protests-encampment-violence.html">Attackers launch large mortar fireworks directly into the encampment,</a> knocking a student <a href="https://www.latimes.com/california/story/2024-05-10/how-social-media-rumors-sparked-a-night-of-mayhem-at-ucla">unconscious</a> and hospitalizing her with a concussion after one explodes feet from her head.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">UCPD Arrives, Leaves</p>
<span class="nt-timeline-sub-title">11:15pm
</span><p class="nt-timeline-content">Two UCPD police cars arrive with an ambulance, treat someone, and <a href="https://www.latimes.com/california/story/2024-05-10/how-social-media-rumors-sparked-a-night-of-mayhem-at-ucla">leave 4 minutes later</a>.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Injured Students Carried Out, Attacked</p>
<span class="nt-timeline-sub-title">11:27pm, continuous
</span><p class="nt-timeline-content">Injured students are being continuously carried out of the encampment to seek medical attention as no further ambulances are arriving, allegedly <a href="https://x.com/m0thercity/status/1785581710673162593">blocked by UCPD</a>. Attackers <a href="https://x.com/joeyneverjoe/status/1785556603602661422">throw a firework</a> directly at an injured student on a makeshift gurney.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">LAPD Chief Arrives, Officers Told to Wait</p>
<span class="nt-timeline-sub-title">12:00am
</span><p class="nt-timeline-content">LAPD chief Thomas arrives on campus <a href="https://www.latimes.com/california/story/2024-05-07/a-ucla-timeline-from-peaceful-encampment-to-violent-attacks-aftermath">shortly before midnight</a> asking officers on the scene "why they couldn't go in with the officers they had, and the lieutenant told him he was directed to wait."
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Attackers Pick Off Students As They Reinforce Barricades</p>
<span class="nt-timeline-sub-title">12:30AM, continuous
</span><p class="nt-timeline-content">As the students in the encampment try and reinforce their barricades, <a href="https://x.com/ACatWithNews/status/1785577318121119787">attackers pick them off</a>, <a href="https://www.nytimes.com/interactive/2024/05/03/us/ucla-protests-encampment-violence.html">pulling them into mobs</a>, spraying chemical irritants and hitting them with pipes and boards.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">LAPD thinks about responding</p>
<span class="nt-timeline-sub-title">12:32am
</span><p class="nt-timeline-content">A man on the LAPD police scanner says they "<a href="https://www.washingtonpost.com/investigations/2024/05/11/ucla-protests-police-inaction-fights/">might want to launch a UCLA unit</a>." Attacks intensify further, the crowd in the hundreds.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Police officers arrive</p>
<span class="nt-timeline-sub-title">1:43am
</span><p class="nt-timeline-content">A line of CHP and LAPD officers begin lining up on the far end of Dickson Court near Portola Plaza. Attacks have been continuous and escalating since they began, and <a href="https://abc7.com/videoClip/14749795/">continue</a> in plain view of the assembled police. Some attackers are masked, but many are <a href="https://www.youtube.com/live/v3bAl2VshnA?t=6348">plainly identifiable</a>.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Students Reinforce with Supplies</p>
<span class="nt-timeline-sub-title">2:00am, continuous
</span><p class="nt-timeline-content">On the other side of the attack at the Tongva Steps, <a href="https://itsgoingdown.org/the-cops-brought-guns-ucla-report/">students continued to resupply the encampment</a> with water, masks, food, and goggles - fearless in the face of violence.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Police Begin to advance</p>
<span class="nt-timeline-sub-title">2:45am
</span><p class="nt-timeline-content">An hour after beginning to assemble, and <a href="https://www.washingtonpost.com/investigations/2024/05/11/ucla-protests-police-inaction-fights/">four hours</a> after the attack began, CHP and LAPD officers begin <a href="https://www.youtube.com/live/d5YNEoTqMZ4?t=2259">advancing</a> on the encampment. Attacks persist. Attackers are allowed to <a href="https://www.youtube.com/live/d5YNEoTqMZ4?t=3297">walk away</a> without interference through the advancing police line. Attackers on megaphones can be heard on live streams <a href="https://youtu.be/C5LLK2SogPs?t=9942">telling people to get out of the way of the police</a>, saying <a href="https://www.youtube.com/live/unD1Aj4I5Ys?t=4806">"once the police take them out, we'll be done with our job"</a> suggesting their intent was to provoke a police response to clear the encampment.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Attackers cleared out</p>
<span class="nt-timeline-sub-title">3:30am
</span><p class="nt-timeline-content">The attackers are mostly gone, and the remaining police <a href="https://www.youtube.com/live/d5YNEoTqMZ4?t=6488">hold a perimeter</a> at the eastern side of Dickson Court.</p>
<div class="nt-timeline-dot "></div>
</div>
</div>
<div class="nt-timeline-after"></div>
</div>
<p>By the end of the night, </p>
<blockquote>
<p>"The medic team treated at least 29 distinct patients, according to another volunteer who requested anonymity. Fifteen people had serious injuries requiring hospitalization and 10 people had suffered blunt head trauma, she reported, and five people had lacerations "large and deep enough" to require stitching at the hospital." - <a href="https://lapublicpress.org/2024/05/two-nights-of-violence-at-uclas-solidarity-encampment/">LA Public Press.</a></p>
</blockquote>
<h2 id="may-1st-the-encampment-is-cleared">May 1st - The Encampment is Cleared</h2>
<div class="nt-timeline vertical left">
<div class="nt-timeline-before"></div>
<div class="nt-timeline-items">
<div class="nt-timeline-item">
<p class="nt-timeline-title">Supporters Rally to Defend the Encampment</p>
<span class="nt-timeline-sub-title">6:00pm
</span><p class="nt-timeline-content">Thousands of students, faculty, staff, and community members rally on the Tongva Steps and Portola Plaza in defense of the encampment. Police have taken and held the east side of Dickson Plaza in between supporters and the encampment. Rumors circulate the police have planned to begin the sweep at 6PM, but 6 comes and goes with no movement.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Police Presence Grows</p>
<span class="nt-timeline-sub-title">7:00pm - 1:00am
</span><p class="nt-timeline-content">Organizers warn people with the lowest risk tolerance to leave, as police officers continually pour into Haines and Kaplan hall on the ease side of Dickson Court. EMTs are put on alert for a sweep sometime between 1-6AM. Supportive crowds chant on both sides of the encampment. A small crowd of roughly a dozen counter-protesters to the east tries to antagonize the crowd which vastly outnumbers them as organizers try to de-escalate and hold the line.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Police Move to Kettle on Tongva Stairs</p>
<span class="nt-timeline-sub-title">1:20am
</span><p class="nt-timeline-content">Taking the resting and quiet crowd of supporters around Tongva stairs mostly by surprise, a line of officers in riot gear bypass an undertrained and inexperienced UAW security team by walking up the grass and cutting through the bushes at the top of the stairs, above the point which had been cleared to allow people to escape, and enter the encampment. The first flashbang of the night explodes in the southwest corner of Dickson Court.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Police Ejected from Encampment</p>
<span class="nt-timeline-sub-title">1:50am
</span><p class="nt-timeline-content">Surrounded, the police officers on the west end of the encampment are <a href="https://x.com/PplsCityCouncil/status/1785964919273451690">forced out</a> and <a href="https://x.com/FilmThePoliceLA/status/1785958000273887733">down the stairs</a>. If the west end of the kettle were to have held, there would have been no avenue of escape for the many in the encampment that would flee the ensuing violence down the stairs through the night. This likely prevented the ~200 arrests from being ~500, and allowed those injured by the police to seek help. The Tongva and Fowler stairs are <a href="https://itsgoingdown.org/the-cops-brought-guns-ucla-report/">reinforced</a> by <a href="https://x.com/FilmThePoliceLA/status/1785976048007749972">supporters</a> and hold through the night despite <a href="https://x.com/FilmThePoliceLA/status/1786010332881912274">concerted efforts</a> to force through up the Fowler stairs.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Police Begin Breaking the Barricades</p>
<span class="nt-timeline-sub-title">3:15am
</span><p class="nt-timeline-content">The police have had uncontested access to the reinforced east side of the encampment all night, and they begin disassembling the barricade. According to sources listening to police scanners, "it's go time." CHP officers begin pushing away the crowds that have assembled on Portola Plaza, shoving and clubbing as they go. The crowd of supporters are pushed to lines near the music building in the south. The walkway between Haines and Campbell Hall has been blocked off to stage police vehicles. The north walkway between Royce and Haines is blocked off by police, and the south walkway between Powell and Kaplan is blocked by hired security. The Tongva stairs are the only possible entrance to the camp. Information among those outside breaks down, and it becomes difficult to coordinate aid to the camp --- there are too many police to know where they're coming from.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">Rubber Bullets, Teargas, and Flashbangs</p>
<span class="nt-timeline-sub-title">3:40am
</span><p class="nt-timeline-content">Hundreds of aerial flashbangs are <a href="https://x.com/HuntedHorse/status/1785983464795501039">fired low overhead</a> almost continuously. The air is filling up with smoke and haze from the explosives, irritants, and fire extinguishers. Injured and bleeding students begin to trickle through the south exit and Tongva steps. The police have made the encampment into a warzone. <a href="https://x.com/SJPatUCLA/status/1786097688913867232">Multiple</a> students are <a href="https://x.com/HuntedHorse/status/1785996746952429875">shot</a> in the head</a> and <a href="https://www.latimes.com/california/story/2024-05-03/injuries-during-clearing-of-ucla-encampment">chest</a> at close range as the officers <a href="https://twitter.com/EyeonPalestine/status/1786020394475905517?">fire rubber bullets indiscriminately into the haze</a>. The police would later <a href="https://www.latimes.com/california/story/2024-05-03/injuries-during-clearing-of-ucla-encampment">plainly lie</a>, claiming they never fired rubber bullets, but the dozens of injured and thousands of witnesses tell a different story. Again individual members of the encampment are <a href="https://x.com/MrOlmos/status/1786007572711186564">picked off</a>, but this time by the Police. They are cuffed and <a href="https://lapublicpress.org/2024/05/two-nights-of-violence-at-uclas-solidarity-encampment/">dragged across the cement</a> to be arrested.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">The Encampment is Breached</p>
<span class="nt-timeline-sub-title">4:06am
</span><p class="nt-timeline-content">The eastern barricade of the encampment is <a href="https://x.com/MrOlmos/status/1785993119760302416">breached</a> and the officers file through, facing off with the remaining members of the camp who, despite the violence, hold the line, linking arms. Police on a raised area continue to <a href="https://x.com/MrOlmos/status/1785996617168171392">shoot into the crowd</a> despite being <a href="https://x.com/MrOlmos/status/1785997668122321032">unchallenged</a>. From across Dickson, people perched on the Powell scaffolding can see police firing rubber bullets at nearly point blank range in the east end of Royce walkway where press have been pushed away and the officers shine bright lights to dazzle cameras.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">The Encampment Is Lost</p>
<span class="nt-timeline-sub-title">4:45am
</span><p class="nt-timeline-content">The doors of Royce are finally breached and police file in from the north. Everyone caught in the middle is arrested. Those who avoid arrest flee west, being flanked, and officers <a href="https://x.com/HuntedHorse/status/1786000568860975327">fire flashbangs</a> over their heads as they walk away. A student with a mutilated finger is seen walking down the Tongva steps. As the crowd reaches the steps, the flashbangs get lower and are feet over the head of press and legal observers. The last remaining people try and rebuild a final barricade to protect those that fled, and the Fowler stairs are finally lost as the police make it to the west end of Dickson plaza.
</p>
<div class="nt-timeline-dot "></div>
</div>
<div class="nt-timeline-item">
<p class="nt-timeline-title">The Police Destroy the Camp</p>
<span class="nt-timeline-sub-title">5:30
</span><p class="nt-timeline-content">Police roam through the camp with knives, cutting open tents, crushing anything that can be broken with their boots. A rumor circulates that LAPD and CHP have to leave campus at 6am -- wishful thinking -- and some people wait to retrieve what they left in the field, but 12 hours after 6pm passed without incident, so too does 6am. The last remaining people stage a final show of resilience at the top of the steps and leave as a group. To the east, several dozen try to <a href="https://x.com/HuntedHorse/status/1786020031014604911">block the bus full of arrested students, faculty, and staff,</a> but are again beaten, flash banged, and arrested.</p>
<div class="nt-timeline-dot "></div>
</div>
</div>
<div class="nt-timeline-after"></div>
</div>
<p>The night after a mob of vigilantes attacked our students and colleagues to provoke a police sweep of the encampment, the mob got what they wanted. Hundreds of our comrades were brutalized and traumatized for peacefully occupying public spaces to advocate against an ongoing genocide. The police let the attackers walk free, but arrested, shot, and pepper sprayed anyone in sight in the encampment. </p>
<p>(Need final counts of number injured and arrested)</p>
</html>

3475
build/site/search/lunr.js Normal file

File diff suppressed because it is too large Load diff

109
build/site/search/main.js Normal file
View file

@ -0,0 +1,109 @@
function getSearchTermFromLocation() {
var sPageURL = window.location.search.substring(1);
var sURLVariables = sPageURL.split('&');
for (var i = 0; i < sURLVariables.length; i++) {
var sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] == 'q') {
return decodeURIComponent(sParameterName[1].replace(/\+/g, '%20'));
}
}
}
function joinUrl (base, path) {
if (path.substring(0, 1) === "/") {
// path starts with `/`. Thus it is absolute.
return path;
}
if (base.substring(base.length-1) === "/") {
// base ends with `/`
return base + path;
}
return base + "/" + path;
}
function escapeHtml (value) {
return value.replace(/&/g, '&amp;')
.replace(/"/g, '&quot;')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;');
}
function formatResult (location, title, summary) {
return '<article><h3><a href="' + joinUrl(base_url, location) + '">'+ escapeHtml(title) + '</a></h3><p>' + escapeHtml(summary) +'</p></article>';
}
function displayResults (results) {
var search_results = document.getElementById("mkdocs-search-results");
while (search_results.firstChild) {
search_results.removeChild(search_results.firstChild);
}
if (results.length > 0){
for (var i=0; i < results.length; i++){
var result = results[i];
var html = formatResult(result.location, result.title, result.summary);
search_results.insertAdjacentHTML('beforeend', html);
}
} else {
var noResultsText = search_results.getAttribute('data-no-results-text');
if (!noResultsText) {
noResultsText = "No results found";
}
search_results.insertAdjacentHTML('beforeend', '<p>' + noResultsText + '</p>');
}
}
function doSearch () {
var query = document.getElementById('mkdocs-search-query').value;
if (query.length > min_search_length) {
if (!window.Worker) {
displayResults(search(query));
} else {
searchWorker.postMessage({query: query});
}
} else {
// Clear results for short queries
displayResults([]);
}
}
function initSearch () {
var search_input = document.getElementById('mkdocs-search-query');
if (search_input) {
search_input.addEventListener("keyup", doSearch);
}
var term = getSearchTermFromLocation();
if (term) {
search_input.value = term;
doSearch();
}
}
function onWorkerMessage (e) {
if (e.data.allowSearch) {
initSearch();
} else if (e.data.results) {
var results = e.data.results;
displayResults(results);
} else if (e.data.config) {
min_search_length = e.data.config.min_search_length-1;
}
}
if (!window.Worker) {
console.log('Web Worker API not supported');
// load index in main thread
$.getScript(joinUrl(base_url, "search/worker.js")).done(function () {
console.log('Loaded worker');
init();
window.postMessage = function (msg) {
onWorkerMessage({data: msg});
};
}).fail(function (jqxhr, settings, exception) {
console.error('Could not load worker.js');
});
} else {
// Wrap search in a web worker
var searchWorker = new Worker(joinUrl(base_url, "search/worker.js"));
searchWorker.postMessage({init: true});
searchWorker.onmessage = onWorkerMessage;
}

File diff suppressed because one or more lines are too long

133
build/site/search/worker.js Normal file
View file

@ -0,0 +1,133 @@
var base_path = 'function' === typeof importScripts ? '.' : '/search/';
var allowSearch = false;
var index;
var documents = {};
var lang = ['en'];
var data;
function getScript(script, callback) {
console.log('Loading script: ' + script);
$.getScript(base_path + script).done(function () {
callback();
}).fail(function (jqxhr, settings, exception) {
console.log('Error: ' + exception);
});
}
function getScriptsInOrder(scripts, callback) {
if (scripts.length === 0) {
callback();
return;
}
getScript(scripts[0], function() {
getScriptsInOrder(scripts.slice(1), callback);
});
}
function loadScripts(urls, callback) {
if( 'function' === typeof importScripts ) {
importScripts.apply(null, urls);
callback();
} else {
getScriptsInOrder(urls, callback);
}
}
function onJSONLoaded () {
data = JSON.parse(this.responseText);
var scriptsToLoad = ['lunr.js'];
if (data.config && data.config.lang && data.config.lang.length) {
lang = data.config.lang;
}
if (lang.length > 1 || lang[0] !== "en") {
scriptsToLoad.push('lunr.stemmer.support.js');
if (lang.length > 1) {
scriptsToLoad.push('lunr.multi.js');
}
if (lang.includes("ja") || lang.includes("jp")) {
scriptsToLoad.push('tinyseg.js');
}
for (var i=0; i < lang.length; i++) {
if (lang[i] != 'en') {
scriptsToLoad.push(['lunr', lang[i], 'js'].join('.'));
}
}
}
loadScripts(scriptsToLoad, onScriptsLoaded);
}
function onScriptsLoaded () {
console.log('All search scripts loaded, building Lunr index...');
if (data.config && data.config.separator && data.config.separator.length) {
lunr.tokenizer.separator = new RegExp(data.config.separator);
}
if (data.index) {
index = lunr.Index.load(data.index);
data.docs.forEach(function (doc) {
documents[doc.location] = doc;
});
console.log('Lunr pre-built index loaded, search ready');
} else {
index = lunr(function () {
if (lang.length === 1 && lang[0] !== "en" && lunr[lang[0]]) {
this.use(lunr[lang[0]]);
} else if (lang.length > 1) {
this.use(lunr.multiLanguage.apply(null, lang)); // spread operator not supported in all browsers: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator#Browser_compatibility
}
this.field('title');
this.field('text');
this.ref('location');
for (var i=0; i < data.docs.length; i++) {
var doc = data.docs[i];
this.add(doc);
documents[doc.location] = doc;
}
});
console.log('Lunr index built, search ready');
}
allowSearch = true;
postMessage({config: data.config});
postMessage({allowSearch: allowSearch});
}
function init () {
var oReq = new XMLHttpRequest();
oReq.addEventListener("load", onJSONLoaded);
var index_path = base_path + '/search_index.json';
if( 'function' === typeof importScripts ){
index_path = 'search_index.json';
}
oReq.open("GET", index_path);
oReq.send();
}
function search (query) {
if (!allowSearch) {
console.error('Assets for search still loading');
return;
}
var resultDocuments = [];
var results = index.search(query);
for (var i=0; i < results.length; i++){
var result = results[i];
doc = documents[result.ref];
doc.summary = doc.text.substring(0, 200);
resultDocuments.push(doc);
}
return resultDocuments;
}
if( 'function' === typeof importScripts ) {
onmessage = function (e) {
if (e.data.init) {
init();
} else if (e.data.query) {
postMessage({ results: search(e.data.query) });
} else {
console.error("Worker - Unrecognized message: " + e);
}
};
}

3
build/site/sitemap.xml Normal file
View file

@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
</urlset>

BIN
build/site/sitemap.xml.gz Normal file

Binary file not shown.

1
src/.pdm-python Normal file
View file

@ -0,0 +1 @@
/Users/jonny/Dropbox/uaw/graphics/sav-timeline/src/.venv/bin/python

251
src/docs/css/timeline.css Normal file
View file

@ -0,0 +1,251 @@
@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,200;1,200&family=Roboto:ital,wght@0,700;1,700&display=swap');
:root {
--header-font: "Roboto", "aktiv-grotesk", sans-serif;
--body-font: "Chivo", serif;
--primary-color: #1A1A1A;
--primary-color-shade-0: #CACACA;
--primary-color-shade-0-alpha: #CACACA00;
--secondary-color: #FFDE00;
}
body {
font-family: var(--body-font);
font-weight: 200;
}
h1 {
font-family: var(--header-font);
font-weight: bold;
}
.nt-timeline-title {
font-family: var(--header-font);
font-weight: bold;
}
/* nt-timeline vendoring */
.nt-timeline {
margin-top: 30px;
}
.nt-timeline .nt-timeline-title {
font-size: 1.1rem;
margin-top: 0;
}
.nt-timeline .nt-timeline-sub-title {
margin-top: 0;
}
.nt-timeline .nt-timeline-content {
font-size: 1rem;
border-bottom: 2px dashed #ccc;
padding-bottom: 1.2rem;
}
.nt-timeline.horizontal .nt-timeline-items {
flex-direction: row;
overflow-x: scroll;
}
.nt-timeline.horizontal .nt-timeline-items > div {
min-width: 400px;
margin-right: 50px;
}
.nt-timeline.horizontal.reverse .nt-timeline-items {
flex-direction: row-reverse;
}
.nt-timeline.horizontal.center .nt-timeline-before {
background-image: linear-gradient(rgba(252, 70, 107, 0) 0%, rgb(252, 70, 107) 100%);
background-repeat: no-repeat;
background-size: 100% 2px;
background-position: 0 center;
}
.nt-timeline.horizontal.center .nt-timeline-after {
background-image: linear-gradient(180deg, var(--primary-color-shade-0) 0%, var(--primary-color-shade-0) 100%);
background-repeat: no-repeat;
background-size: 100% 2px;
background-position: 0 center;
}
.nt-timeline.horizontal.center .nt-timeline-items {
background-image: radial-gradient(circle, rgb(63, 94, 251) 0%, rgb(252, 70, 107) 100%);
background-repeat: no-repeat;
background-size: 100% 2px;
background-position: 0 center;
}
.nt-timeline.horizontal .nt-timeline-dot {
left: 50%;
}
.nt-timeline.horizontal .nt-timeline-dot:not(.bigger) {
top: calc(50% - 4px);
}
.nt-timeline.horizontal .nt-timeline-dot.bigger {
top: calc(50% - 15px);
}
.nt-timeline.vertical .nt-timeline-items {
flex-direction: column;
}
.nt-timeline.vertical.reverse .nt-timeline-items {
flex-direction: column-reverse;
}
.nt-timeline.vertical.center .nt-timeline-before {
background: linear-gradient(rgba(252, 70, 107, 0) 0%, rgb(252, 70, 107) 100%) no-repeat center/2px 100%;
}
.nt-timeline.vertical.center .nt-timeline-after {
background: linear-gradient(rgb(252, 70, 107) 0%, rgba(252, 70, 107, 0) 100%) no-repeat center/2px 100%;
}
.nt-timeline.vertical.center .nt-timeline-items {
background: radial-gradient(circle, rgb(63, 94, 251) 0%, rgb(252, 70, 107) 100%) no-repeat center/2px 100%;
}
.nt-timeline.vertical.center .nt-timeline-dot {
left: calc(50% - 10px);
}
.nt-timeline.vertical.center .nt-timeline-dot:not(.bigger) {
top: 10px;
}
.nt-timeline.vertical.center .nt-timeline-dot.bigger {
left: calc(50% - 20px);
}
.nt-timeline.vertical.left {
padding-left: 100px;
}
.nt-timeline.vertical.left .nt-timeline-item {
padding-left: 70px;
}
.nt-timeline.vertical.left .nt-timeline-sub-title {
left: -100px;
width: 100px;
text-align: right;
}
.nt-timeline.vertical.left .nt-timeline-before {
background: linear-gradient(var(--primary-color-shade-0-alpha) 0%, var(--primary-color-shade-0) 100%) no-repeat 30px/2px 100%;
}
.nt-timeline.vertical.left .nt-timeline-after {
background: linear-gradient(var(--primary-color-shade-0) 0%, var(--primary-color-shade-0-alpha) 100%) no-repeat 30px/2px 100%;
}
.nt-timeline.vertical.left .nt-timeline-items {
background: radial-gradient(circle, var(--primary-color) 0%, var(--primary-color-shade-0) 100%) no-repeat 30px/2px 100%;
}
.nt-timeline.vertical.left .nt-timeline-dot {
left: 24px;
top: 5px;
}
.nt-timeline.vertical.left .nt-timeline-dot.bigger {
top: 0px;
left: 10px;
}
.nt-timeline.vertical.right {
padding-right: 100px;
}
.nt-timeline.vertical.right .nt-timeline-sub-title {
right: -100px;
text-align: left;
width: 100px;
}
.nt-timeline.vertical.right .nt-timeline-item {
padding-right: 70px;
}
.nt-timeline.vertical.right .nt-timeline-before {
background: linear-gradient(rgba(252, 70, 107, 0) 0%, rgb(252, 70, 107) 100%) no-repeat calc(100% - 30px)/2px 100%;
}
.nt-timeline.vertical.right .nt-timeline-after {
background: linear-gradient(rgb(252, 70, 107) 0%, rgba(252, 70, 107, 0) 100%) no-repeat calc(100% - 30px)/2px 100%;
}
.nt-timeline.vertical.right .nt-timeline-items {
background: radial-gradient(circle, rgb(63, 94, 251) 0%, rgb(252, 70, 107) 100%) no-repeat calc(100% - 30px)/2px 100%;
}
.nt-timeline.vertical.right .nt-timeline-dot {
right: 21px;
top: 8px;
}
.nt-timeline.vertical.right .nt-timeline-dot.bigger {
top: 10px;
right: 10px;
}
.nt-timeline-items {
display: flex;
position: relative;
}
.nt-timeline-items > div {
min-height: 100px;
padding-top: 2px;
padding-bottom: 20px;
}
.nt-timeline-before {
content: "";
height: 15px;
}
.nt-timeline-after {
content: "";
height: 60px;
margin-bottom: 20px;
}
.nt-timeline-sub-title {
position: absolute;
width: 50%;
top: 4px;
font-size: 18px;
color: var(--nt-color-50);
}
[data-md-color-scheme=slate] .nt-timeline-sub-title {
color: var(--nt-color-51);
}
.nt-timeline-item {
position: relative;
}
.nt-timeline.vertical.center:not(.alternate) .nt-timeline-item {
padding-left: calc(50% + 40px);
}
.nt-timeline.vertical.center:not(.alternate) .nt-timeline-item .nt-timeline-sub-title {
left: 0;
padding-right: 40px;
text-align: right;
}
.nt-timeline.vertical.center.alternate .nt-timeline-item:nth-child(odd) {
padding-left: calc(50% + 40px);
}
.nt-timeline.vertical.center.alternate .nt-timeline-item:nth-child(odd) .nt-timeline-sub-title {
left: 0;
padding-right: 40px;
text-align: right;
}
.nt-timeline.vertical.center.alternate .nt-timeline-item:nth-child(even) {
text-align: right;
padding-right: calc(50% + 40px);
}
.nt-timeline.vertical.center.alternate .nt-timeline-item:nth-child(even) .nt-timeline-sub-title {
right: 0;
padding-left: 40px;
text-align: left;
}
.nt-timeline-dot {
position: relative;
width: 10px;
height: 10px;
border-radius: 100%;
background-color: var(--secondary-color);
position: absolute;
top: 0px;
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
border: 3px solid var(--primary-color);
}
.nt-timeline-dot:not(.bigger) .icon {
font-size: 10px;
}
.nt-timeline-dot.bigger {
width: 40px;
height: 40px;
padding: 3px;
}
.nt-timeline-dot .icon {
color: white;
}

196
src/docs/index.md Normal file
View file

@ -0,0 +1,196 @@
::timeline::
- title: Camp Established
sub_title: April 25
content: |
Early Thursday morning, UCLA students and employees set up tents on Dickson Court outside Royce Hall, establishing Palestine Solidarity Encampment. <br><br>
UCLA issues a BruinALERT: "We're actively monitoring this situation to support a safe and peaceful campus environment that respects our community's right to free expression while minimizing disruption to our teaching and learning mission."
- title: UCLA Issues First Statement
sub_title: April 26
content: |
UCLA issues <a href="https://newsroom.ucla.edu/ucla-statement-about-encampment-on-campus-april-26">a statement</a> on the encampment, including: "we are following University of California systemwide policy guidance, which directs us not to request law enforcement involvement preemptively, and only if absolutely necessary to protect the physical safety of our campus community"
- title: Peaceful Demonstration
content: |
The first phase of the encampment is marked by education and solidarity - with daily programming including teach-ins and multi-faith prayer. Counter-protesters are almost continuously present around the encampment day and night, and organizers are careful to de-escalate the few small scuffles between groups, but some injuries are reported among members of the encampment and counter-protesters.
- title: First Major Counter-demonstration
sub_title: April 28
content: |
Several groups organize a <a href="https://dailybruin.com/2024/04/27/counter-protests-of-ucla-encampment-raise-over-50000-on-gofundme">counter-demonstration</a> after raising $50,000 ($98,000 <a href="https://web.archive.org/web/20240514011726/https://www.gofundme.com/f/ucla-counter-protest">at the time of writing</a>) to fund a stage, jumbotron and loudspeakers for the event. Barricades separating the crowds of thousands are <a href="https://dailybruin.com/2024/04/28/protesters-counter-protesters-clash-as-they-converge-upon-ucla-encampment">breached</a> multiple times, and violence <a href="https://x.com/ACatWithNews/status/1784680676106870952">escalates</a> as private security officers fail to maintain a barrier between protesters and counter-protesters.
- title: Psychological Warfare
sub_title: April 28-May 1
content: |
The jumbotron and loudspeakers are allowed to stay on Dickson court throughout the week, playing footage from October 7th and sounds like <a href="https://youtu.be/_jL8cDm5Th4">babies crying</a> on repeat through the day and night to prevent sleep, a <a href="https://lapublicpress.org/2024/05/two-nights-of-violence-at-uclas-solidarity-encampment/">known torture tactic</a>.
- title: Encampment Declared Illegal
sub_title: April 30
content: UCLA declares the encampment illegal and warns everyone to leave.
::/timeline::
## April 30 - The Encampment is Attacked
All times approximate.
::timeline::
- title: Attack Begins
sub_title: |
10:40pm
content: |
Members of the encampment are <a href="https://x.com/m0thercity/status/1785593008693579901">peacefully occupying the camp</a>, when a crowd begins to <a href="https://youtu.be/C5LLK2SogPs?t=425">tear apart the barricade</a> surrounding the encampment. Members of the encampment reinforce the barricades, and private security halfheartedly tries to re-establish the buffer between the groups but do nothing to intervene.
- title: Police Notified
sub_title: |
10:45pm
content: |
Administrative Vice Chancellor Michael Beck <a href="https://www.latimes.com/california/story/2024-05-07/a-ucla-timeline-from-peaceful-encampment-to-violent-attacks-aftermath">requests assistance</a> from LAPD Chief John Thomas, LASD, Beverly Hills, Culver City and Santa Monica Police Departments.
- title: Attack Escalates
sub_title: |
10:50pm
content: |
Private security abandons the area, and the metal barricades outside of the encampment are completely removed. Attacks come in waves, with attackers retreating into Dickson plaza, and then returning in force to attack the barricades together. Attackers alternate between tearing down the barricade and attacking students and staff in the encampment with pipes, boards, lasers, <a href="https://youtu.be/C5LLK2SogPs?t=901">bear mace, skunk spray,</a> and <a href="https://youtu.be/C5LLK2SogPs?t=1455">Tasers</a>. Throughout the attack, members and organizers of the encampment do not pursue the attackers, maintaining their barricades.
- title: Private Security Leave
sub_title: |
10:53pm
content: |
Campus security guards <a href="https://lapublicpress.org/2024/05/two-nights-of-violence-at-uclas-solidarity-encampment/">leave the scene,</a> or stand on the sidelines and watch.
- title: Fireworks Begin
sub_title: |
11:00pm
content: |
<a href="https://www.nytimes.com/interactive/2024/05/03/us/ucla-protests-encampment-violence.html">Attackers launch large mortar fireworks directly into the encampment,</a> knocking a student <a href="https://www.latimes.com/california/story/2024-05-10/how-social-media-rumors-sparked-a-night-of-mayhem-at-ucla">unconscious</a> and hospitalizing her with a concussion after one explodes feet from her head.
- title: UCPD Arrives, Leaves
sub_title: |
11:15pm
content: |
Two UCPD police cars arrive with an ambulance, treat someone, and <a href="https://www.latimes.com/california/story/2024-05-10/how-social-media-rumors-sparked-a-night-of-mayhem-at-ucla">leave 4 minutes later</a>.
- title: Injured Students Carried Out, Attacked
sub_title: |
11:27pm, continuous
content: |
Injured students are being continuously carried out of the encampment to seek medical attention as no further ambulances are arriving, allegedly <a href="https://x.com/m0thercity/status/1785581710673162593">blocked by UCPD</a>. Attackers <a href="https://x.com/joeyneverjoe/status/1785556603602661422">throw a firework</a> directly at an injured student on a makeshift gurney.
- title: LAPD Chief Arrives, Officers Told to Wait
sub_title: |
12:00am
content: |
LAPD chief Thomas arrives on campus <a href="https://www.latimes.com/california/story/2024-05-07/a-ucla-timeline-from-peaceful-encampment-to-violent-attacks-aftermath">shortly before midnight</a> asking officers on the scene "why they couldn't go in with the officers they had, and the lieutenant told him he was directed to wait."
- title: Attackers Pick Off Students As They Reinforce Barricades
sub_title: |
12:30AM, continuous
content: |
As the students in the encampment try and reinforce their barricades, <a href="https://x.com/ACatWithNews/status/1785577318121119787">attackers pick them off</a>, <a href="https://www.nytimes.com/interactive/2024/05/03/us/ucla-protests-encampment-violence.html">pulling them into mobs</a>, spraying chemical irritants and hitting them with pipes and boards.
- title: LAPD thinks about responding
sub_title: |
12:32am
content: |
A man on the LAPD police scanner says they "<a href="https://www.washingtonpost.com/investigations/2024/05/11/ucla-protests-police-inaction-fights/">might want to launch a UCLA unit</a>." Attacks intensify further, the crowd in the hundreds.
- title: Police officers arrive
sub_title: |
1:43am
content: |
A line of CHP and LAPD officers begin lining up on the far end of Dickson Court near Portola Plaza. Attacks have been continuous and escalating since they began, and <a href="https://abc7.com/videoClip/14749795/">continue</a> in plain view of the assembled police. Some attackers are masked, but many are <a href="https://www.youtube.com/live/v3bAl2VshnA?t=6348">plainly identifiable</a>.
- title: Students Reinforce with Supplies
sub_title: |
2:00am, continuous
content: |
On the other side of the attack at the Tongva Steps, <a href="https://itsgoingdown.org/the-cops-brought-guns-ucla-report/">students continued to resupply the encampment</a> with water, masks, food, and goggles - fearless in the face of violence.
- title: Police Begin to advance
sub_title: |
2:45am
content: |
An hour after beginning to assemble, and <a href="https://www.washingtonpost.com/investigations/2024/05/11/ucla-protests-police-inaction-fights/">four hours</a> after the attack began, CHP and LAPD officers begin <a href="https://www.youtube.com/live/d5YNEoTqMZ4?t=2259">advancing</a> on the encampment. Attacks persist. Attackers are allowed to <a href="https://www.youtube.com/live/d5YNEoTqMZ4?t=3297">walk away</a> without interference through the advancing police line. Attackers on megaphones can be heard on live streams <a href="https://youtu.be/C5LLK2SogPs?t=9942">telling people to get out of the way of the police</a>, saying <a href="https://www.youtube.com/live/unD1Aj4I5Ys?t=4806">"once the police take them out, we'll be done with our job"</a> suggesting their intent was to provoke a police response to clear the encampment.
- title: Attackers cleared out
sub_title: |
3:30am
content: |
The attackers are mostly gone, and the remaining police <a href="https://www.youtube.com/live/d5YNEoTqMZ4?t=6488">hold a perimeter</a> at the eastern side of Dickson Court.
::/timeline::
By the end of the night,
> "The medic team treated at least 29 distinct patients, according to another volunteer who requested anonymity. Fifteen people had serious injuries requiring hospitalization and 10 people had suffered blunt head trauma, she reported, and five people had lacerations "large and deep enough" to require stitching at the hospital." - <a href="https://lapublicpress.org/2024/05/two-nights-of-violence-at-uclas-solidarity-encampment/">LA Public Press.</a>
## May 1st - The Encampment is Cleared
::timeline::
- title: Supporters Rally to Defend the Encampment
sub_title: |
6:00pm
content: |
Thousands of students, faculty, staff, and community members rally on the Tongva Steps and Portola Plaza in defense of the encampment. Police have taken and held the east side of Dickson Plaza in between supporters and the encampment. Rumors circulate the police have planned to begin the sweep at 6PM, but 6 comes and goes with no movement.
- title: Police Presence Grows
sub_title: |
7:00pm - 1:00am
content: |
Organizers warn people with the lowest risk tolerance to leave, as police officers continually pour into Haines and Kaplan hall on the ease side of Dickson Court. EMTs are put on alert for a sweep sometime between 1-6AM. Supportive crowds chant on both sides of the encampment. A small crowd of roughly a dozen counter-protesters to the east tries to antagonize the crowd which vastly outnumbers them as organizers try to de-escalate and hold the line.
- title: Police Move to Kettle on Tongva Stairs
sub_title: |
1:20am
content: |
Taking the resting and quiet crowd of supporters around Tongva stairs mostly by surprise, a line of officers in riot gear bypass an undertrained and inexperienced UAW security team by walking up the grass and cutting through the bushes at the top of the stairs, above the point which had been cleared to allow people to escape, and enter the encampment. The first flashbang of the night explodes in the southwest corner of Dickson Court.
- title: Police Ejected from Encampment
sub_title: |
1:50am
content: |
Surrounded, the police officers on the west end of the encampment are <a href="https://x.com/PplsCityCouncil/status/1785964919273451690">forced out</a> and <a href="https://x.com/FilmThePoliceLA/status/1785958000273887733">down the stairs</a>. If the west end of the kettle were to have held, there would have been no avenue of escape for the many in the encampment that would flee the ensuing violence down the stairs through the night. This likely prevented the ~200 arrests from being ~500, and allowed those injured by the police to seek help. The Tongva and Fowler stairs are <a href="https://itsgoingdown.org/the-cops-brought-guns-ucla-report/">reinforced</a> by <a href="https://x.com/FilmThePoliceLA/status/1785976048007749972">supporters</a> and hold through the night despite <a href="https://x.com/FilmThePoliceLA/status/1786010332881912274">concerted efforts</a> to force through up the Fowler stairs.
- title: Police Begin Breaking the Barricades
sub_title: |
3:15am
content: |
The police have had uncontested access to the reinforced east side of the encampment all night, and they begin disassembling the barricade. According to sources listening to police scanners, "it's go time." CHP officers begin pushing away the crowds that have assembled on Portola Plaza, shoving and clubbing as they go. The crowd of supporters are pushed to lines near the music building in the south. The walkway between Haines and Campbell Hall has been blocked off to stage police vehicles. The north walkway between Royce and Haines is blocked off by police, and the south walkway between Powell and Kaplan is blocked by hired security. The Tongva stairs are the only possible entrance to the camp. Information among those outside breaks down, and it becomes difficult to coordinate aid to the camp --- there are too many police to know where they're coming from.
- title: Rubber Bullets, Teargas, and Flashbangs
sub_title: |
3:40am
content: |
Hundreds of aerial flashbangs are <a href="https://x.com/HuntedHorse/status/1785983464795501039">fired low overhead</a> almost continuously. The air is filling up with smoke and haze from the explosives, irritants, and fire extinguishers. Injured and bleeding students begin to trickle through the south exit and Tongva steps. The police have made the encampment into a warzone. <a href="https://x.com/SJPatUCLA/status/1786097688913867232">Multiple</a> students are <a href="https://x.com/HuntedHorse/status/1785996746952429875">shot</a> in the head</a> and <a href="https://www.latimes.com/california/story/2024-05-03/injuries-during-clearing-of-ucla-encampment">chest</a> at close range as the officers <a href="https://twitter.com/EyeonPalestine/status/1786020394475905517?">fire rubber bullets indiscriminately into the haze</a>. The police would later <a href="https://www.latimes.com/california/story/2024-05-03/injuries-during-clearing-of-ucla-encampment">plainly lie</a>, claiming they never fired rubber bullets, but the dozens of injured and thousands of witnesses tell a different story. Again individual members of the encampment are <a href="https://x.com/MrOlmos/status/1786007572711186564">picked off</a>, but this time by the Police. They are cuffed and <a href="https://lapublicpress.org/2024/05/two-nights-of-violence-at-uclas-solidarity-encampment/">dragged across the cement</a> to be arrested.
- title: The Encampment is Breached
sub_title: |
4:06am
content: |
The eastern barricade of the encampment is <a href="https://x.com/MrOlmos/status/1785993119760302416">breached</a> and the officers file through, facing off with the remaining members of the camp who, despite the violence, hold the line, linking arms. Police on a raised area continue to <a href="https://x.com/MrOlmos/status/1785996617168171392">shoot into the crowd</a> despite being <a href="https://x.com/MrOlmos/status/1785997668122321032">unchallenged</a>. From across Dickson, people perched on the Powell scaffolding can see police firing rubber bullets at nearly point blank range in the east end of Royce walkway where press have been pushed away and the officers shine bright lights to dazzle cameras.
- title: The Encampment Is Lost
sub_title: |
4:45am
content: |
The doors of Royce are finally breached and police file in from the north. Everyone caught in the middle is arrested. Those who avoid arrest flee west, being flanked, and officers <a href="https://x.com/HuntedHorse/status/1786000568860975327">fire flashbangs</a> over their heads as they walk away. A student with a mutilated finger is seen walking down the Tongva steps. As the crowd reaches the steps, the flashbangs get lower and are feet over the head of press and legal observers. The last remaining people try and rebuild a final barricade to protect those that fled, and the Fowler stairs are finally lost as the police make it to the west end of Dickson plaza.
- title: The Police Destroy the Camp
sub_title: |
5:30
content: |
Police roam through the camp with knives, cutting open tents, crushing anything that can be broken with their boots. A rumor circulates that LAPD and CHP have to leave campus at 6am -- wishful thinking -- and some people wait to retrieve what they left in the field, but 12 hours after 6pm passed without incident, so too does 6am. The last remaining people stage a final show of resilience at the top of the steps and leave as a group. To the east, several dozen try to <a href="https://x.com/HuntedHorse/status/1786020031014604911">block the bus full of arrested students, faculty, and staff,</a> but are again beaten, flash banged, and arrested.
::/timeline::
The night after a mob of vigilantes attacked our students and colleagues to provoke a police sweep of the encampment, the mob got what they wanted. Hundreds of our comrades were brutalized and traumatized for peacefully occupying public spaces to advocate against an ongoing genocide. The police let the attackers walk free, but arrested, shot, and pepper sprayed anyone in sight in the encampment.
(Need final counts of number injured and arrested)

11
src/mkdocs.yml Normal file
View file

@ -0,0 +1,11 @@
site_name: Encampment Timeline
theme:
name: null
custom_dir: 'theme/'
extra_css:
- css/timeline.css
markdown_extensions:
- neoteroi.timeline

875
src/pdm.lock Normal file
View file

@ -0,0 +1,875 @@
# This file is @generated by PDM.
# It is not intended for manual editing.
[metadata]
groups = ["default"]
strategy = ["cross_platform", "inherit_metadata"]
lock_version = "4.4.1"
content_hash = "sha256:990113cc9cefcc9185ccc34da6b963bf4b66b50c54acfb690bab92df87825b4d"
[[package]]
name = "anyio"
version = "4.3.0"
requires_python = ">=3.8"
summary = "High level compatibility layer for multiple asynchronous event loop implementations"
groups = ["default"]
dependencies = [
"exceptiongroup>=1.0.2; python_version < \"3.11\"",
"idna>=2.8",
"sniffio>=1.1",
"typing-extensions>=4.1; python_version < \"3.11\"",
]
files = [
{file = "anyio-4.3.0-py3-none-any.whl", hash = "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8"},
{file = "anyio-4.3.0.tar.gz", hash = "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6"},
]
[[package]]
name = "babel"
version = "2.15.0"
requires_python = ">=3.8"
summary = "Internationalization utilities"
groups = ["default"]
dependencies = [
"pytz>=2015.7; python_version < \"3.9\"",
]
files = [
{file = "Babel-2.15.0-py3-none-any.whl", hash = "sha256:08706bdad8d0a3413266ab61bd6c34d0c28d6e1e7badf40a2cebe67644e2e1fb"},
{file = "babel-2.15.0.tar.gz", hash = "sha256:8daf0e265d05768bc6c7a314cf1321e9a123afc328cc635c18622a2f30a04413"},
]
[[package]]
name = "certifi"
version = "2024.2.2"
requires_python = ">=3.6"
summary = "Python package for providing Mozilla's CA Bundle."
groups = ["default"]
files = [
{file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"},
{file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"},
]
[[package]]
name = "charset-normalizer"
version = "3.3.2"
requires_python = ">=3.7.0"
summary = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
groups = ["default"]
files = [
{file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"},
{file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"},
{file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"},
{file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"},
{file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"},
{file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"},
{file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"},
{file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"},
{file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"},
{file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"},
{file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"},
{file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"},
{file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"},
{file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"},
{file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"},
{file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"},
{file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"},
{file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"},
{file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"},
{file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"},
{file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"},
{file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"},
{file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"},
{file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"},
{file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"},
{file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"},
{file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"},
{file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"},
{file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"},
{file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"},
{file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"},
{file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"},
{file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"},
{file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"},
{file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"},
{file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"},
{file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"},
{file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"},
{file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"},
{file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"},
{file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"},
{file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"},
{file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"},
{file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"},
{file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"},
{file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"},
{file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"},
{file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"},
{file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"},
{file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"},
{file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"},
{file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"},
{file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"},
{file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"},
{file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"},
{file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"},
{file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"},
{file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"},
{file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"},
{file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"},
{file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"},
{file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"},
{file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"},
{file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"},
{file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"},
{file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"},
{file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"},
{file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"},
{file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"},
{file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"},
{file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"},
{file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"},
{file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"},
{file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"},
{file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"},
{file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"},
{file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"},
]
[[package]]
name = "click"
version = "8.1.7"
requires_python = ">=3.7"
summary = "Composable command line interface toolkit"
groups = ["default"]
dependencies = [
"colorama; platform_system == \"Windows\"",
]
files = [
{file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"},
{file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"},
]
[[package]]
name = "colorama"
version = "0.4.6"
requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
summary = "Cross-platform colored terminal text."
groups = ["default"]
files = [
{file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"},
{file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
]
[[package]]
name = "essentials"
version = "1.1.5"
summary = "General purpose classes and functions, reusable in any kind of Python application"
groups = ["default"]
files = [
{file = "essentials-1.1.5-py3-none-any.whl", hash = "sha256:905fa4a69fcd2b2cf41ecc6cc65827e30c87ef91f3f5c71540bcc5e984fa8360"},
{file = "essentials-1.1.5.tar.gz", hash = "sha256:8736f738bb2c51d5069b2de2cf9146f7d402f25f9f95636781e59a422c908c46"},
]
[[package]]
name = "essentials-openapi"
version = "1.0.9"
requires_python = ">=3.8"
summary = "Classes to generate OpenAPI Documentation v3 and v2, in JSON and YAML."
groups = ["default"]
dependencies = [
"essentials>=1.1.5",
"markupsafe~=2.1.2",
"pyyaml>=6",
]
files = [
{file = "essentials_openapi-1.0.9-py3-none-any.whl", hash = "sha256:1431e98ef0a442f1919fd9833385bf44d832c355fd05919dc06d43d4da0f8ef4"},
{file = "essentials_openapi-1.0.9.tar.gz", hash = "sha256:ebc46aac41c0b917a658f77caaa0ca93a6e4a4519de8a272f82c1538ccd5619f"},
]
[[package]]
name = "exceptiongroup"
version = "1.2.1"
requires_python = ">=3.7"
summary = "Backport of PEP 654 (exception groups)"
groups = ["default"]
marker = "python_version < \"3.11\""
files = [
{file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"},
{file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"},
]
[[package]]
name = "ghp-import"
version = "2.1.0"
summary = "Copy your docs directly to the gh-pages branch."
groups = ["default"]
dependencies = [
"python-dateutil>=2.8.1",
]
files = [
{file = "ghp-import-2.1.0.tar.gz", hash = "sha256:9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343"},
{file = "ghp_import-2.1.0-py3-none-any.whl", hash = "sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619"},
]
[[package]]
name = "h11"
version = "0.14.0"
requires_python = ">=3.7"
summary = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1"
groups = ["default"]
files = [
{file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"},
{file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"},
]
[[package]]
name = "httpcore"
version = "1.0.5"
requires_python = ">=3.8"
summary = "A minimal low-level HTTP client."
groups = ["default"]
dependencies = [
"certifi",
"h11<0.15,>=0.13",
]
files = [
{file = "httpcore-1.0.5-py3-none-any.whl", hash = "sha256:421f18bac248b25d310f3cacd198d55b8e6125c107797b609ff9b7a6ba7991b5"},
{file = "httpcore-1.0.5.tar.gz", hash = "sha256:34a38e2f9291467ee3b44e89dd52615370e152954ba21721378a87b2960f7a61"},
]
[[package]]
name = "httpx"
version = "0.27.0"
requires_python = ">=3.8"
summary = "The next generation HTTP client."
groups = ["default"]
dependencies = [
"anyio",
"certifi",
"httpcore==1.*",
"idna",
"sniffio",
]
files = [
{file = "httpx-0.27.0-py3-none-any.whl", hash = "sha256:71d5465162c13681bff01ad59b2cc68dd838ea1f10e51574bac27103f00c91a5"},
{file = "httpx-0.27.0.tar.gz", hash = "sha256:a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5"},
]
[[package]]
name = "idna"
version = "3.7"
requires_python = ">=3.5"
summary = "Internationalized Domain Names in Applications (IDNA)"
groups = ["default"]
files = [
{file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"},
{file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"},
]
[[package]]
name = "importlib-metadata"
version = "7.1.0"
requires_python = ">=3.8"
summary = "Read metadata from Python packages"
groups = ["default"]
marker = "python_version < \"3.10\""
dependencies = [
"zipp>=0.5",
]
files = [
{file = "importlib_metadata-7.1.0-py3-none-any.whl", hash = "sha256:30962b96c0c223483ed6cc7280e7f0199feb01a0e40cfae4d4450fc6fab1f570"},
{file = "importlib_metadata-7.1.0.tar.gz", hash = "sha256:b78938b926ee8d5f020fc4772d487045805a55ddbad2ecf21c6d60938dc7fcd2"},
]
[[package]]
name = "jinja2"
version = "3.1.4"
requires_python = ">=3.7"
summary = "A very fast and expressive template engine."
groups = ["default"]
dependencies = [
"MarkupSafe>=2.0",
]
files = [
{file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"},
{file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"},
]
[[package]]
name = "markdown"
version = "3.6"
requires_python = ">=3.8"
summary = "Python implementation of John Gruber's Markdown."
groups = ["default"]
dependencies = [
"importlib-metadata>=4.4; python_version < \"3.10\"",
]
files = [
{file = "Markdown-3.6-py3-none-any.whl", hash = "sha256:48f276f4d8cfb8ce6527c8f79e2ee29708508bf4d40aa410fbc3b4ee832c850f"},
{file = "Markdown-3.6.tar.gz", hash = "sha256:ed4f41f6daecbeeb96e576ce414c41d2d876daa9a16cb35fa8ed8c2ddfad0224"},
]
[[package]]
name = "markdown-it-py"
version = "3.0.0"
requires_python = ">=3.8"
summary = "Python port of markdown-it. Markdown parsing, done right!"
groups = ["default"]
dependencies = [
"mdurl~=0.1",
]
files = [
{file = "markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb"},
{file = "markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1"},
]
[[package]]
name = "markupsafe"
version = "2.1.5"
requires_python = ">=3.7"
summary = "Safely add untrusted strings to HTML/XML markup."
groups = ["default"]
files = [
{file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"},
{file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"},
{file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"},
{file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"},
{file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"},
{file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"},
{file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"},
{file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"},
{file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"},
{file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"},
{file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"},
{file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"},
{file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"},
{file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"},
{file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"},
{file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"},
{file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"},
{file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"},
{file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"},
{file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"},
{file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"},
{file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"},
{file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"},
{file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"},
{file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"},
{file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"},
{file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"},
{file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"},
{file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"},
{file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"},
{file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"},
{file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"},
{file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"},
{file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"},
{file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"},
{file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"},
{file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"},
{file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"},
{file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"},
{file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"},
{file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"},
{file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"},
{file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"},
{file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"},
{file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"},
{file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"},
{file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"},
{file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"},
{file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"},
{file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"},
{file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"},
]
[[package]]
name = "mdurl"
version = "0.1.2"
requires_python = ">=3.7"
summary = "Markdown URL utilities"
groups = ["default"]
files = [
{file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"},
{file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"},
]
[[package]]
name = "mergedeep"
version = "1.3.4"
requires_python = ">=3.6"
summary = "A deep merge function for 🐍."
groups = ["default"]
files = [
{file = "mergedeep-1.3.4-py3-none-any.whl", hash = "sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307"},
{file = "mergedeep-1.3.4.tar.gz", hash = "sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8"},
]
[[package]]
name = "mkdocs"
version = "1.6.0"
requires_python = ">=3.8"
summary = "Project documentation with Markdown."
groups = ["default"]
dependencies = [
"click>=7.0",
"colorama>=0.4; platform_system == \"Windows\"",
"ghp-import>=1.0",
"importlib-metadata>=4.4; python_version < \"3.10\"",
"jinja2>=2.11.1",
"markdown>=3.3.6",
"markupsafe>=2.0.1",
"mergedeep>=1.3.4",
"mkdocs-get-deps>=0.2.0",
"packaging>=20.5",
"pathspec>=0.11.1",
"pyyaml-env-tag>=0.1",
"pyyaml>=5.1",
"watchdog>=2.0",
]
files = [
{file = "mkdocs-1.6.0-py3-none-any.whl", hash = "sha256:1eb5cb7676b7d89323e62b56235010216319217d4af5ddc543a91beb8d125ea7"},
{file = "mkdocs-1.6.0.tar.gz", hash = "sha256:a73f735824ef83a4f3bcb7a231dcab23f5a838f88b7efc54a0eef5fbdbc3c512"},
]
[[package]]
name = "mkdocs-get-deps"
version = "0.2.0"
requires_python = ">=3.8"
summary = "MkDocs extension that lists all dependencies according to a mkdocs.yml file"
groups = ["default"]
dependencies = [
"importlib-metadata>=4.3; python_version < \"3.10\"",
"mergedeep>=1.3.4",
"platformdirs>=2.2.0",
"pyyaml>=5.1",
]
files = [
{file = "mkdocs_get_deps-0.2.0-py3-none-any.whl", hash = "sha256:2bf11d0b133e77a0dd036abeeb06dec8775e46efa526dc70667d8863eefc6134"},
{file = "mkdocs_get_deps-0.2.0.tar.gz", hash = "sha256:162b3d129c7fad9b19abfdcb9c1458a651628e4b1dea628ac68790fb3061c60c"},
]
[[package]]
name = "mkdocs-material"
version = "9.5.22"
requires_python = ">=3.8"
summary = "Documentation that simply works"
groups = ["default"]
dependencies = [
"babel~=2.10",
"colorama~=0.4",
"jinja2~=3.0",
"markdown~=3.2",
"mkdocs-material-extensions~=1.3",
"mkdocs~=1.6",
"paginate~=0.5",
"pygments~=2.16",
"pymdown-extensions~=10.2",
"regex>=2022.4",
"requests~=2.26",
]
files = [
{file = "mkdocs_material-9.5.22-py3-none-any.whl", hash = "sha256:8c7a377d323567934e6cd46915e64dc209efceaec0dec1cf2202184f5649862c"},
{file = "mkdocs_material-9.5.22.tar.gz", hash = "sha256:22a853a456ae8c581c4628159574d6fc7c71b2c7569dc9c3a82cc70432219599"},
]
[[package]]
name = "mkdocs-material-extensions"
version = "1.3.1"
requires_python = ">=3.8"
summary = "Extension pack for Python Markdown and MkDocs Material."
groups = ["default"]
files = [
{file = "mkdocs_material_extensions-1.3.1-py3-none-any.whl", hash = "sha256:adff8b62700b25cb77b53358dad940f3ef973dd6db797907c49e3c2ef3ab4e31"},
{file = "mkdocs_material_extensions-1.3.1.tar.gz", hash = "sha256:10c9511cea88f568257f960358a467d12b970e1f7b2c0e5fb2bb48cab1928443"},
]
[[package]]
name = "neoteroi-mkdocs"
version = "1.0.5"
requires_python = ">=3.7"
summary = "Plugins for MkDocs and Python Markdown"
groups = ["default"]
dependencies = [
"click",
"essentials-openapi",
"httpx",
"jinja2",
"mkdocs",
"rich",
]
files = [
{file = "neoteroi_mkdocs-1.0.5-py3-none-any.whl", hash = "sha256:1f3b372dee79269157361733c0f45b3a89189077078e0e3224d829a144ef3579"},
{file = "neoteroi_mkdocs-1.0.5.tar.gz", hash = "sha256:29875ef444b08aec5619a384142e16f1b4e851465cab4e380fb2b8ae730fe046"},
]
[[package]]
name = "packaging"
version = "24.0"
requires_python = ">=3.7"
summary = "Core utilities for Python packages"
groups = ["default"]
files = [
{file = "packaging-24.0-py3-none-any.whl", hash = "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5"},
{file = "packaging-24.0.tar.gz", hash = "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9"},
]
[[package]]
name = "paginate"
version = "0.5.6"
summary = "Divides large result sets into pages for easier browsing"
groups = ["default"]
files = [
{file = "paginate-0.5.6.tar.gz", hash = "sha256:5e6007b6a9398177a7e1648d04fdd9f8c9766a1a945bceac82f1929e8c78af2d"},
]
[[package]]
name = "pathspec"
version = "0.12.1"
requires_python = ">=3.8"
summary = "Utility library for gitignore style pattern matching of file paths."
groups = ["default"]
files = [
{file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"},
{file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"},
]
[[package]]
name = "platformdirs"
version = "4.2.1"
requires_python = ">=3.8"
summary = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`."
groups = ["default"]
files = [
{file = "platformdirs-4.2.1-py3-none-any.whl", hash = "sha256:17d5a1161b3fd67b390023cb2d3b026bbd40abde6fdb052dfbd3a29c3ba22ee1"},
{file = "platformdirs-4.2.1.tar.gz", hash = "sha256:031cd18d4ec63ec53e82dceaac0417d218a6863f7745dfcc9efe7793b7039bdf"},
]
[[package]]
name = "pygments"
version = "2.18.0"
requires_python = ">=3.8"
summary = "Pygments is a syntax highlighting package written in Python."
groups = ["default"]
files = [
{file = "pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a"},
{file = "pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199"},
]
[[package]]
name = "pymdown-extensions"
version = "10.8.1"
requires_python = ">=3.8"
summary = "Extension pack for Python Markdown."
groups = ["default"]
dependencies = [
"markdown>=3.6",
"pyyaml",
]
files = [
{file = "pymdown_extensions-10.8.1-py3-none-any.whl", hash = "sha256:f938326115884f48c6059c67377c46cf631c733ef3629b6eed1349989d1b30cb"},
{file = "pymdown_extensions-10.8.1.tar.gz", hash = "sha256:3ab1db5c9e21728dabf75192d71471f8e50f216627e9a1fa9535ecb0231b9940"},
]
[[package]]
name = "python-dateutil"
version = "2.9.0.post0"
requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
summary = "Extensions to the standard Python datetime module"
groups = ["default"]
dependencies = [
"six>=1.5",
]
files = [
{file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"},
{file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"},
]
[[package]]
name = "pytz"
version = "2024.1"
summary = "World timezone definitions, modern and historical"
groups = ["default"]
marker = "python_version < \"3.9\""
files = [
{file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"},
{file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"},
]
[[package]]
name = "pyyaml"
version = "6.0.1"
requires_python = ">=3.6"
summary = "YAML parser and emitter for Python"
groups = ["default"]
files = [
{file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"},
{file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"},
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"},
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"},
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"},
{file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"},
{file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"},
{file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"},
{file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"},
{file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"},
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"},
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"},
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"},
{file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"},
{file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"},
{file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"},
{file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"},
{file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"},
{file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"},
{file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"},
{file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"},
{file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"},
{file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"},
{file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"},
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"},
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"},
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"},
{file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"},
{file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"},
{file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"},
{file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"},
{file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"},
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"},
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"},
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"},
{file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"},
{file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"},
{file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"},
{file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"},
]
[[package]]
name = "pyyaml-env-tag"
version = "0.1"
requires_python = ">=3.6"
summary = "A custom YAML tag for referencing environment variables in YAML files. "
groups = ["default"]
dependencies = [
"pyyaml",
]
files = [
{file = "pyyaml_env_tag-0.1-py3-none-any.whl", hash = "sha256:af31106dec8a4d68c60207c1886031cbf839b68aa7abccdb19868200532c2069"},
{file = "pyyaml_env_tag-0.1.tar.gz", hash = "sha256:70092675bda14fdec33b31ba77e7543de9ddc88f2e5b99160396572d11525bdb"},
]
[[package]]
name = "regex"
version = "2024.5.10"
requires_python = ">=3.8"
summary = "Alternative regular expression module, to replace re."
groups = ["default"]
files = [
{file = "regex-2024.5.10-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:eda3dd46df535da787ffb9036b5140f941ecb91701717df91c9daf64cabef953"},
{file = "regex-2024.5.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1d5bd666466c8f00a06886ce1397ba8b12371c1f1c6d1bef11013e9e0a1464a8"},
{file = "regex-2024.5.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:32e5f3b8e32918bfbdd12eca62e49ab3031125c454b507127ad6ecbd86e62fca"},
{file = "regex-2024.5.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:534efd2653ebc4f26fc0e47234e53bf0cb4715bb61f98c64d2774a278b58c846"},
{file = "regex-2024.5.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:193b7c6834a06f722f0ce1ba685efe80881de7c3de31415513862f601097648c"},
{file = "regex-2024.5.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:160ba087232c5c6e2a1e7ad08bd3a3f49b58c815be0504d8c8aacfb064491cd8"},
{file = "regex-2024.5.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:951be1eae7b47660412dc4938777a975ebc41936d64e28081bf2e584b47ec246"},
{file = "regex-2024.5.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d8a0f0ab5453e409586b11ebe91c672040bc804ca98d03a656825f7890cbdf88"},
{file = "regex-2024.5.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9e6d4d6ae1827b2f8c7200aaf7501c37cf3f3896c86a6aaf2566448397c823dd"},
{file = "regex-2024.5.10-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:161a206c8f3511e2f5fafc9142a2cc25d7fe9a1ec5ad9b4ad2496a7c33e1c5d2"},
{file = "regex-2024.5.10-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:44b3267cea873684af022822195298501568ed44d542f9a2d9bebc0212e99069"},
{file = "regex-2024.5.10-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:560278c9975694e1f0bc50da187abf2cdc1e4890739ea33df2bc4a85eeef143e"},
{file = "regex-2024.5.10-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:70364a097437dd0a90b31cd77f09f7387ad9ac60ef57590971f43b7fca3082a5"},
{file = "regex-2024.5.10-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42be5de7cc8c1edac55db92d82b68dc8e683b204d6f5414c5a51997a323d7081"},
{file = "regex-2024.5.10-cp310-cp310-win32.whl", hash = "sha256:9a8625849387b9d558d528e263ecc9c0fbde86cfa5c2f0eef43fff480ae24d71"},
{file = "regex-2024.5.10-cp310-cp310-win_amd64.whl", hash = "sha256:903350bf44d7e4116b4d5898b30b15755d61dcd3161e3413a49c7db76f0bee5a"},
{file = "regex-2024.5.10-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:bf9596cba92ce7b1fd32c7b07c6e3212c7eed0edc271757e48bfcd2b54646452"},
{file = "regex-2024.5.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:45cc13d398b6359a7708986386f72bd156ae781c3e83a68a6d4cee5af04b1ce9"},
{file = "regex-2024.5.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ad45f3bccfcb00868f2871dce02a755529838d2b86163ab8a246115e80cfb7d6"},
{file = "regex-2024.5.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33d19f0cde6838c81acffff25c7708e4adc7dd02896c9ec25c3939b1500a1778"},
{file = "regex-2024.5.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0a9f89d7db5ef6bdf53e5cc8e6199a493d0f1374b3171796b464a74ebe8e508a"},
{file = "regex-2024.5.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8c6c71cf92b09e5faa72ea2c68aa1f61c9ce11cb66fdc5069d712f4392ddfd00"},
{file = "regex-2024.5.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7467ad8b0eac0b28e52679e972b9b234b3de0ea5cee12eb50091d2b68145fe36"},
{file = "regex-2024.5.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bc0db93ad039fc2fe32ccd3dd0e0e70c4f3d6e37ae83f0a487e1aba939bd2fbd"},
{file = "regex-2024.5.10-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:fa9335674d7c819674467c7b46154196c51efbaf5f5715187fd366814ba3fa39"},
{file = "regex-2024.5.10-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7dda3091838206969c2b286f9832dff41e2da545b99d1cfaea9ebd8584d02708"},
{file = "regex-2024.5.10-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:504b5116e2bd1821efd815941edff7535e93372a098e156bb9dffde30264e798"},
{file = "regex-2024.5.10-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:91b53dea84415e8115506cc62e441a2b54537359c63d856d73cb1abe05af4c9a"},
{file = "regex-2024.5.10-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1a3903128f9e17a500618e80c68165c78c741ebb17dd1a0b44575f92c3c68b02"},
{file = "regex-2024.5.10-cp311-cp311-win32.whl", hash = "sha256:236cace6c1903effd647ed46ce6dd5d76d54985fc36dafc5256032886736c85d"},
{file = "regex-2024.5.10-cp311-cp311-win_amd64.whl", hash = "sha256:12446827f43c7881decf2c126762e11425de5eb93b3b0d8b581344c16db7047a"},
{file = "regex-2024.5.10-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:14905ed75c7a6edf423eb46c213ed3f4507c38115f1ed3c00f4ec9eafba50e58"},
{file = "regex-2024.5.10-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:4fad420b14ae1970a1f322e8ae84a1d9d89375eb71e1b504060ab2d1bfe68f3c"},
{file = "regex-2024.5.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c46a76a599fcbf95f98755275c5527304cc4f1bb69919434c1e15544d7052910"},
{file = "regex-2024.5.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0faecb6d5779753a6066a3c7a0471a8d29fe25d9981ca9e552d6d1b8f8b6a594"},
{file = "regex-2024.5.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aab65121229c2ecdf4a31b793d99a6a0501225bd39b616e653c87b219ed34a49"},
{file = "regex-2024.5.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:50e7e96a527488334379e05755b210b7da4a60fc5d6481938c1fa053e0c92184"},
{file = "regex-2024.5.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba034c8db4b264ef1601eb33cd23d87c5013b8fb48b8161debe2e5d3bd9156b0"},
{file = "regex-2024.5.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:031219782d97550c2098d9a68ce9e9eaefe67d2d81d8ff84c8354f9c009e720c"},
{file = "regex-2024.5.10-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:62b5f7910b639f3c1d122d408421317c351e213ca39c964ad4121f27916631c6"},
{file = "regex-2024.5.10-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:cd832bd9b6120d6074f39bdfbb3c80e416848b07ac72910f1c7f03131a6debc3"},
{file = "regex-2024.5.10-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:e91b1976358e17197157b405cab408a5f4e33310cda211c49fc6da7cffd0b2f0"},
{file = "regex-2024.5.10-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:571452362d552de508c37191b6abbbb660028b8b418e2d68c20779e0bc8eaaa8"},
{file = "regex-2024.5.10-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5253dcb0bfda7214523de58b002eb0090cb530d7c55993ce5f6d17faf953ece7"},
{file = "regex-2024.5.10-cp312-cp312-win32.whl", hash = "sha256:2f30a5ab8902f93930dc6f627c4dd5da2703333287081c85cace0fc6e21c25af"},
{file = "regex-2024.5.10-cp312-cp312-win_amd64.whl", hash = "sha256:3799e36d60a35162bb35b2246d8bb012192b7437dff807ef79c14e7352706306"},
{file = "regex-2024.5.10-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:bbdc5db2c98ac2bf1971ffa1410c87ca7a15800415f788971e8ba8520fc0fda9"},
{file = "regex-2024.5.10-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6ccdeef4584450b6f0bddd5135354908dacad95425fcb629fe36d13e48b60f32"},
{file = "regex-2024.5.10-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:29d839829209f3c53f004e1de8c3113efce6d98029f044fa5cfee666253ee7e6"},
{file = "regex-2024.5.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0709ba544cf50bd5cb843df4b8bb6701bae2b70a8e88da9add8386cbca5c1385"},
{file = "regex-2024.5.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:972b49f2fe1047b9249c958ec4fa1bdd2cf8ce305dc19d27546d5a38e57732d8"},
{file = "regex-2024.5.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9cdbb1998da94607d5eec02566b9586f0e70d6438abf1b690261aac0edda7ab6"},
{file = "regex-2024.5.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf7c8ee4861d9ef5b1120abb75846828c811f932d63311596ad25fa168053e00"},
{file = "regex-2024.5.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d35d4cc9270944e95f9c88af757b0c9fc43f396917e143a5756608462c5223b"},
{file = "regex-2024.5.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8722f72068b3e1156a4b2e1afde6810f1fc67155a9fa30a4b9d5b4bc46f18fb0"},
{file = "regex-2024.5.10-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:696639a73ca78a380acfaa0a1f6dd8220616a99074c05bba9ba8bb916914b224"},
{file = "regex-2024.5.10-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea057306ab469130167014b662643cfaed84651c792948891d003cf0039223a5"},
{file = "regex-2024.5.10-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:b43b78f9386d3d932a6ce5af4b45f393d2e93693ee18dc4800d30a8909df700e"},
{file = "regex-2024.5.10-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c43395a3b7cc9862801a65c6994678484f186ce13c929abab44fb8a9e473a55a"},
{file = "regex-2024.5.10-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0bc94873ba11e34837bffd7e5006703abeffc4514e2f482022f46ce05bd25e67"},
{file = "regex-2024.5.10-cp38-cp38-win32.whl", hash = "sha256:1118ba9def608250250f4b3e3f48c62f4562ba16ca58ede491b6e7554bfa09ff"},
{file = "regex-2024.5.10-cp38-cp38-win_amd64.whl", hash = "sha256:458d68d34fb74b906709735c927c029e62f7d06437a98af1b5b6258025223210"},
{file = "regex-2024.5.10-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:15e593386ec6331e0ab4ac0795b7593f02ab2f4b30a698beb89fbdc34f92386a"},
{file = "regex-2024.5.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ca23b41355ba95929e9505ee04e55495726aa2282003ed9b012d86f857d3e49b"},
{file = "regex-2024.5.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2c8982ee19ccecabbaeac1ba687bfef085a6352a8c64f821ce2f43e6d76a9298"},
{file = "regex-2024.5.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7117cb7d6ac7f2e985f3d18aa8a1728864097da1a677ffa69e970ca215baebf1"},
{file = "regex-2024.5.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b66421f8878a0c82fc0c272a43e2121c8d4c67cb37429b764f0d5ad70b82993b"},
{file = "regex-2024.5.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:224a9269f133564109ce668213ef3cb32bc72ccf040b0b51c72a50e569e9dc9e"},
{file = "regex-2024.5.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab98016541543692a37905871a5ffca59b16e08aacc3d7d10a27297b443f572d"},
{file = "regex-2024.5.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:51d27844763c273a122e08a3e86e7aefa54ee09fb672d96a645ece0454d8425e"},
{file = "regex-2024.5.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:853cc36e756ff673bf984e9044ccc8fad60b95a748915dddeab9488aea974c73"},
{file = "regex-2024.5.10-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e7eaf9df15423d07b6050fb91f86c66307171b95ea53e2d87a7993b6d02c7f7"},
{file = "regex-2024.5.10-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:169fd0acd7a259f58f417e492e93d0e15fc87592cd1e971c8c533ad5703b5830"},
{file = "regex-2024.5.10-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:334b79ce9c08f26b4659a53f42892793948a613c46f1b583e985fd5a6bf1c149"},
{file = "regex-2024.5.10-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:f03b1dbd4d9596dd84955bb40f7d885204d6aac0d56a919bb1e0ff2fb7e1735a"},
{file = "regex-2024.5.10-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cfa6d61a76c77610ba9274c1a90a453062bdf6887858afbe214d18ad41cf6bde"},
{file = "regex-2024.5.10-cp39-cp39-win32.whl", hash = "sha256:249fbcee0a277c32a3ce36d8e36d50c27c968fdf969e0fbe342658d4e010fbc8"},
{file = "regex-2024.5.10-cp39-cp39-win_amd64.whl", hash = "sha256:0ce56a923f4c01d7568811bfdffe156268c0a7aae8a94c902b92fe34c4bde785"},
{file = "regex-2024.5.10.tar.gz", hash = "sha256:304e7e2418146ae4d0ef0e9ffa28f881f7874b45b4994cc2279b21b6e7ae50c8"},
]
[[package]]
name = "requests"
version = "2.31.0"
requires_python = ">=3.7"
summary = "Python HTTP for Humans."
groups = ["default"]
dependencies = [
"certifi>=2017.4.17",
"charset-normalizer<4,>=2",
"idna<4,>=2.5",
"urllib3<3,>=1.21.1",
]
files = [
{file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"},
{file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"},
]
[[package]]
name = "rich"
version = "13.7.1"
requires_python = ">=3.7.0"
summary = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
groups = ["default"]
dependencies = [
"markdown-it-py>=2.2.0",
"pygments<3.0.0,>=2.13.0",
"typing-extensions<5.0,>=4.0.0; python_version < \"3.9\"",
]
files = [
{file = "rich-13.7.1-py3-none-any.whl", hash = "sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222"},
{file = "rich-13.7.1.tar.gz", hash = "sha256:9be308cb1fe2f1f57d67ce99e95af38a1e2bc71ad9813b0e247cf7ffbcc3a432"},
]
[[package]]
name = "six"
version = "1.16.0"
requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
summary = "Python 2 and 3 compatibility utilities"
groups = ["default"]
files = [
{file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
{file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
]
[[package]]
name = "sniffio"
version = "1.3.1"
requires_python = ">=3.7"
summary = "Sniff out which async library your code is running under"
groups = ["default"]
files = [
{file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"},
{file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"},
]
[[package]]
name = "typing-extensions"
version = "4.11.0"
requires_python = ">=3.8"
summary = "Backported and Experimental Type Hints for Python 3.8+"
groups = ["default"]
marker = "python_version < \"3.11\""
files = [
{file = "typing_extensions-4.11.0-py3-none-any.whl", hash = "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a"},
{file = "typing_extensions-4.11.0.tar.gz", hash = "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0"},
]
[[package]]
name = "urllib3"
version = "2.2.1"
requires_python = ">=3.8"
summary = "HTTP library with thread-safe connection pooling, file post, and more."
groups = ["default"]
files = [
{file = "urllib3-2.2.1-py3-none-any.whl", hash = "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d"},
{file = "urllib3-2.2.1.tar.gz", hash = "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"},
]
[[package]]
name = "watchdog"
version = "4.0.0"
requires_python = ">=3.8"
summary = "Filesystem events monitoring"
groups = ["default"]
files = [
{file = "watchdog-4.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:39cb34b1f1afbf23e9562501673e7146777efe95da24fab5707b88f7fb11649b"},
{file = "watchdog-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c522392acc5e962bcac3b22b9592493ffd06d1fc5d755954e6be9f4990de932b"},
{file = "watchdog-4.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6c47bdd680009b11c9ac382163e05ca43baf4127954c5f6d0250e7d772d2b80c"},
{file = "watchdog-4.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8350d4055505412a426b6ad8c521bc7d367d1637a762c70fdd93a3a0d595990b"},
{file = "watchdog-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c17d98799f32e3f55f181f19dd2021d762eb38fdd381b4a748b9f5a36738e935"},
{file = "watchdog-4.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4986db5e8880b0e6b7cd52ba36255d4793bf5cdc95bd6264806c233173b1ec0b"},
{file = "watchdog-4.0.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:11e12fafb13372e18ca1bbf12d50f593e7280646687463dd47730fd4f4d5d257"},
{file = "watchdog-4.0.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5369136a6474678e02426bd984466343924d1df8e2fd94a9b443cb7e3aa20d19"},
{file = "watchdog-4.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:76ad8484379695f3fe46228962017a7e1337e9acadafed67eb20aabb175df98b"},
{file = "watchdog-4.0.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:45cc09cc4c3b43fb10b59ef4d07318d9a3ecdbff03abd2e36e77b6dd9f9a5c85"},
{file = "watchdog-4.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:eed82cdf79cd7f0232e2fdc1ad05b06a5e102a43e331f7d041e5f0e0a34a51c4"},
{file = "watchdog-4.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ba30a896166f0fee83183cec913298151b73164160d965af2e93a20bbd2ab605"},
{file = "watchdog-4.0.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d18d7f18a47de6863cd480734613502904611730f8def45fc52a5d97503e5101"},
{file = "watchdog-4.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2895bf0518361a9728773083908801a376743bcc37dfa252b801af8fd281b1ca"},
{file = "watchdog-4.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:87e9df830022488e235dd601478c15ad73a0389628588ba0b028cb74eb72fed8"},
{file = "watchdog-4.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6e949a8a94186bced05b6508faa61b7adacc911115664ccb1923b9ad1f1ccf7b"},
{file = "watchdog-4.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6a4db54edea37d1058b08947c789a2354ee02972ed5d1e0dca9b0b820f4c7f92"},
{file = "watchdog-4.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d31481ccf4694a8416b681544c23bd271f5a123162ab603c7d7d2dd7dd901a07"},
{file = "watchdog-4.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:8fec441f5adcf81dd240a5fe78e3d83767999771630b5ddfc5867827a34fa3d3"},
{file = "watchdog-4.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:6a9c71a0b02985b4b0b6d14b875a6c86ddea2fdbebd0c9a720a806a8bbffc69f"},
{file = "watchdog-4.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:557ba04c816d23ce98a06e70af6abaa0485f6d94994ec78a42b05d1c03dcbd50"},
{file = "watchdog-4.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:d0f9bd1fd919134d459d8abf954f63886745f4660ef66480b9d753a7c9d40927"},
{file = "watchdog-4.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f9b2fdca47dc855516b2d66eef3c39f2672cbf7e7a42e7e67ad2cbfcd6ba107d"},
{file = "watchdog-4.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:73c7a935e62033bd5e8f0da33a4dcb763da2361921a69a5a95aaf6c93aa03a87"},
{file = "watchdog-4.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6a80d5cae8c265842c7419c560b9961561556c4361b297b4c431903f8c33b269"},
{file = "watchdog-4.0.0-py3-none-win32.whl", hash = "sha256:8f9a542c979df62098ae9c58b19e03ad3df1c9d8c6895d96c0d51da17b243b1c"},
{file = "watchdog-4.0.0-py3-none-win_amd64.whl", hash = "sha256:f970663fa4f7e80401a7b0cbeec00fa801bf0287d93d48368fc3e6fa32716245"},
{file = "watchdog-4.0.0-py3-none-win_ia64.whl", hash = "sha256:9a03e16e55465177d416699331b0f3564138f1807ecc5f2de9d55d8f188d08c7"},
{file = "watchdog-4.0.0.tar.gz", hash = "sha256:e3e7065cbdabe6183ab82199d7a4f6b3ba0a438c5a512a68559846ccb76a78ec"},
]
[[package]]
name = "zipp"
version = "3.18.1"
requires_python = ">=3.8"
summary = "Backport of pathlib-compatible object wrapper for zip files"
groups = ["default"]
marker = "python_version < \"3.10\""
files = [
{file = "zipp-3.18.1-py3-none-any.whl", hash = "sha256:206f5a15f2af3dbaee80769fb7dc6f249695e940acca08dfb2a4769fe61e538b"},
{file = "zipp-3.18.1.tar.gz", hash = "sha256:2884ed22e7d8961de1c9a05142eb69a247f120291bc0206a00a7642f09b5b715"},
]

17
src/pyproject.toml Normal file
View file

@ -0,0 +1,17 @@
[project]
name = "encampment_timeline"
version = "0.1.0"
description = "Default template for PDM package"
authors = [{ name="sneakers-the-rat" }]
dependencies = [
"mkdocs>=1.6.0",
"neoteroi-mkdocs>=1.0.5",
"mkdocs-material>=9.5.22",
]
requires-python = ">=3.8"
license = {text = "CC-BY-SA-4.0"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]

9
src/theme/main.html Normal file
View file

@ -0,0 +1,9 @@
<!doctype html>
<html>
<head>
{% for path in config.extra_css %}
<link rel="stylesheet" href="{{ path | url }}">
{% endfor %}
</head>
{{ page.content }}
</html>