<?xml version="1.0" encoding="UTF-8"?>
<rss  xmlns:atom="http://www.w3.org/2005/Atom" 
      xmlns:media="http://search.yahoo.com/mrss/" 
      xmlns:content="http://purl.org/rss/1.0/modules/content/" 
      xmlns:dc="http://purl.org/dc/elements/1.1/" 
      version="2.0">
<channel>
<title>Carwil Bjork-James</title>
<link>https://carwilb.github.io/</link>
<atom:link href="https://carwilb.github.io/index.xml" rel="self" type="application/rss+xml"/>
<description></description>
<generator>quarto-1.8.21</generator>
<lastBuildDate>Fri, 22 May 2026 05:00:00 GMT</lastBuildDate>
<item>
  <title>How I added a new property to Wikidata</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/posts/wikidata-new-property.html</link>
  <description><![CDATA[ 





<p>This post walks through how I added a new property to Wikidata: the codes assigned to Bolivian geographic features by the Instituto Nacional de Estadística (INE, National Statistical Institute). You can read more about just what unique identifiers like INE codes are good for, and how Wikidata has become a repository for them below.</p>
<section id="property-proposal-and-approval" class="level3">
<h3 class="anchored" data-anchor-id="property-proposal-and-approval">1. Property proposal and approval</h3>
<p>For a unique ID to be assigned to Wikidata items, it must be included as a statement on that item’s page and the property officially defined. Any one can add an place to Wikidata, where it get assigned a unique QID, but properties must be approved by the editing community through <a href="https://www.wikidata.org/wiki/Wikidata:Property_proposal">a proposal process</a>. Another user had started the INE code proposal in August 2025, but little had happened. I was able to help move the process along by supplying sample Wikidata statements. One user marked the proposal as ready a day later, and a Wikidata property creator with the <a href="https://www.wikidata.org/wiki/User:Tinker_Bell">username Tinker Bell activated</a> it the next morning.</p>
</section>
<section id="finding-entities-that-need-ine-codes" class="level3">
<h3 class="anchored" data-anchor-id="finding-entities-that-need-ine-codes">2. Finding entities that need INE codes</h3>
<p>INE codes are assigned to Bolivia’s 9 departments, 112 provinces, and 340 municipalities, sub-municipal cantons, and rural communities. These are listed <a href="https://es.wikipedia.org/wiki/Anexo:Municipios_de_Bolivia">on Spanish Wikipedia</a>. For now this page will walk through how I got the codes for the first three kinds of entities onto Wikidata.</p>
<p>INE codes are structured strings of digits, laid out like this.</p>
<ul>
<li><p>Departmento: <code>DD</code> (2 digits)</p></li>
<li><p>Province: <code>DDPP</code> (4 digits</p></li>
<li><p>Municipality: <code>DDPPMM</code> (6 digits)</p></li>
</ul>
<p>I had a complete list of INE municipalities and their codes: the left four columns of a Census table.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb1-1">ine_geog_2013 <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> readxl<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">read_excel</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"data/CLASIF_UB_GEOG_COMUNIDAD.xlsx"</span>)</span>
<span id="cb1-2">ine_geog_2013 <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> ine_geog_2013 <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb1-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">rename</span>(</span>
<span id="cb1-4">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">department =</span> DEPARTAMENTO,</span>
<span id="cb1-5">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">province =</span> PROVINCIA,</span>
<span id="cb1-6">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">municipality =</span> MUNICIPIO) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb1-7">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mutate</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">cod.prov =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(DEP, PRO),</span>
<span id="cb1-8">         <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">cod.mun =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(DEP, PRO, MUN),</span>
<span id="cb1-9">         <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">cod.com =</span> Codigo) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb1-10">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">rename</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">cod.dep =</span> DEP)</span>
<span id="cb1-11"></span>
<span id="cb1-12">ine_geog_provinces <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> ine_geog_2013 <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb1-13">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">select</span>(cod.prov, province, department) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb1-14">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">distinct</span>()</span>
<span id="cb1-15"></span>
<span id="cb1-16">ine_geog_municipalities <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> ine_geog_2013 <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb1-17">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">select</span>(cod.mun, municipality, province, department) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb1-18">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">distinct</span>()</span></code></pre></div></div>
<p>All I would need to do was to check if each of the entities involved were already on Wikidata and write QuickStatements to assign the property.</p>
<p>I did the data wrangling in R. In the process, I had to create new functions for working with Wikidata: retrieving Wikidata items into data tables, crafting QuickStatements to add to Wikidata, etc. Happily, because I did this, you won’t have to.</p>
<p>To find all Wikidata items, I used the function <code>get_wikidata_instances()</code>, <a href="https://gist.github.com/CarwilB/e92d277c8dbe0b8dda4804ca8514dabb">available here</a>.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb2-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># retrieve instances of "department of Bolivia" (Q250050)</span></span>
<span id="cb2-2"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#   with their QIDs and labels in English and Spanish</span></span>
<span id="cb2-3">departments_wd <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">get_wikidata_instances</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Q250050"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">languages =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"en"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"es"</span>))</span></code></pre></div></div>
<p>Matching these to their INE codes required one last use of string-based matching, and to do that I also simplified the labels to a common format along the way, making sure they each appeared as “&lt;name&gt; Department” in English and “Departamento de &lt;nombre&gt;” in Spanish.</p>
<p>For provinces and municipalities, names aren’t always enough (there are six pairs of municipalities that share the same names: El Puente, Entre Ríos, San Javier, San Pedro, San Ramón, and Santa Rosa).</p>
</section>
<section id="facilitating-string-matches-while-cleaning-up-wikidata-departments" class="level3">
<h3 class="anchored" data-anchor-id="facilitating-string-matches-while-cleaning-up-wikidata-departments">3. Facilitating string matches while cleaning up Wikidata: Departments</h3>
<p>As I worked, I kept making Wikidata a bit more uniform, for example by adding “Province” at the end of each English label for the province items.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb3-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># visual inspection shows that not all have "Province" in label_en, but</span></span>
<span id="cb3-2"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># it's just 6 that don't.</span></span>
<span id="cb3-3">provinces_without_suffix <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> provinces <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb3-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">!</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">str_detect</span>(label_en, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Province"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">str_detect</span>(label_en, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Cercado"</span>))</span>
<span id="cb3-5"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># next step is to relabel these, but create_quick_statements has</span></span>
<span id="cb3-6"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># broken logic for labels.</span></span>
<span id="cb3-7">provinces_without_suffix <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> provinces_without_suffix <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb3-8">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">add_quick_statement_column</span>(qid, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">property=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"L"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">value=</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">str_c</span>(.data<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>label_en, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" Province ("</span>, department, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">")"</span>), <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">lang=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"en"</span>)</span>
<span id="cb3-9"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">writeLines</span>(provinces_without_suffix<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>quick_statement)</span></code></pre></div></div>
<p>This involves functions that create QuickStatements that modify Wikidata. An online <a href="https://qs-dev.toolforge.org/">QuickStatements tool</a> lets Wikidata users upload these lists of text commands, preview the changes they will make and carry them out all at once.</p>
<p>My modification to province names were <a href="https://qs-dev.toolforge.org/batch/22311/">performed as QuickStatements here</a>. After several moves to clean up the provinces we had a new list.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb4-1">provinces <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">get_wikidata_instances</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Q1062593"</span>, <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"P131"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"P17"</span>), <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"located_in"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"country"</span>))</span>
<span id="cb4-2"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># get department names from the table we've already imported</span></span>
<span id="cb4-3">provinces <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> provinces <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb4-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">left_join</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">select</span>(departments, qid, department), <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">by=</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">join_by</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"located_in"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"qid"</span>)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb4-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">relocate</span>(department, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.after=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"located_in"</span>)</span>
<span id="cb4-6"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Note that if we recreate provinces_without_suffix, it now has four items,</span></span>
<span id="cb4-7"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># just the Cercado provinces, which now have their department in parentheses in</span></span>
<span id="cb4-8"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># the label.</span></span>
<span id="cb4-9">provinces <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> provinces <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb4-10">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mutate</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">province =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">str_extract</span>(label_en, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"^(.+)</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\\</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">s+Province"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">group =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>))</span>
<span id="cb4-11"></span>
<span id="cb4-12">provinces_ine <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> provinces <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">left_join</span>(ine_geog_provinces, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">by=</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"province"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"department"</span>))</span></code></pre></div></div>
<p>After cleaning up the province labels, I pulled a fresh copy of all Wikidata province items and joined them back to the INE province table. At that point the easy matches were done, but dozens of provinces still did not line up automatically. Some differences were minor spelling variants, some reflected accent marks, and others came from cases where Wikidata and the INE source preferred different versions of the same name. In a few places the province item on Wikidata was labeled with only part of the official name.</p>
<p>I started by re-importing the provinces and extracting a cleaner province name from the English label:</p>
<div class="cell">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb5-1">provinces <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">get_wikidata_instances</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Q1062593"</span>, <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"P131"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"P17"</span>),</span>
<span id="cb5-2">                                    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"located_in"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"country"</span>))</span>
<span id="cb5-3"></span>
<span id="cb5-4">provinces <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> provinces <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb5-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">left_join</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">select</span>(departments, qid, department), </span>
<span id="cb5-6">            <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">by =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">join_by</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"located_in"</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"qid"</span>)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb5-7">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">relocate</span>(department, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.after =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"located_in"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span> </span>
<span id="cb5-8">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mutate</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">province =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">str_extract</span>(label_en, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"\^(.+)</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\\</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">s+Province"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">group =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>))</span>
<span id="cb5-9"></span>
<span id="cb5-10">provinces_ine <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> provinces <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb5-11">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">left_join</span>(ine_geog_provinces, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">by =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"province"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"department"</span>))</span></code></pre></div></div>
</div>
<p>This made it possible to compare the province names coming from Wikidata with the names in the INE table. The remaining non-matches then became a manageable list for inspection. To handle those exceptions, I built a small manual match table. For some provinces this also meant adding English aliases on Wikidata, so that the item would carry a more recognizable or complete province name in addition to its main label.</p>
<p>Once those exceptions were resolved, I could join the province items to the INE list and generate a full set of QuickStatements assigning the new INE property to each province item, with citations to the data source.</p>
</section>
<section id="string-matches-and-wikidata-cleanup-municipalities" class="level3">
<h3 class="anchored" data-anchor-id="string-matches-and-wikidata-cleanup-municipalities">4. String matches and Wikidata cleanup: Municipalities</h3>
<p>Municipalities took much more work. In principle, municipalities should have been easier: there are only a few hundred, and the INE source gives a complete list. In practice, municipality items on Wikidata were much less standardized. Some were linked to provinces, others directly to departments, and some overlapped with separate city items of the same name. There were also many label differences between Wikidata and the INE table: missing accents, alternate spellings, abbreviated names, and cases where one source used a longer ceremonial or historical form while the other used the shorter everyday name.</p>
<p>I began by retrieving all Wikidata municipality items together with their administrative-location properties:</p>
<div class="cell">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb6-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Q1062710 = municipality of Bolivia</span></span>
<span id="cb6-2">municipalities_wd <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">get_wikidata_instances</span>( <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Q1062710"</span>, <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"P131"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"P17"</span>), </span>
<span id="cb6-3">                                             <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"located_in"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"country"</span>) )</span>
<span id="cb6-4"></span>
<span id="cb6-5"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># This function expands the located_in property so that each item gets </span></span>
<span id="cb6-6"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># detailed location information in a tabular form.</span></span>
<span id="cb6-7">municipalities_wd_exp <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">expand_located_in_pd</span>(municipalities_wd)</span></code></pre></div></div>
</div>
<p>The custom expansion function let me see which province and department each municipality as “located in” on Wikidata.</p>
<table class="caption-top table">
<colgroup>
<col style="width: 16%">
<col style="width: 16%">
<col style="width: 16%">
<col style="width: 16%">
<col style="width: 16%">
<col style="width: 16%">
</colgroup>
<thead>
<tr class="header">
<th style="text-align: left;">qid</th>
<th style="text-align: left;">label_en</th>
<th style="text-align: left;">loc_prov_qid</th>
<th style="text-align: left;">loc_prov_en</th>
<th style="text-align: left;">loc_dep_qid</th>
<th style="text-align: left;">loc_dep_en</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Q783480</td>
<td style="text-align: left;">San Lucas</td>
<td style="text-align: left;">Q1420337</td>
<td style="text-align: left;">Nor Cinti Province</td>
<td style="text-align: left;">Q235110</td>
<td style="text-align: left;">Chuquisaca Department</td>
</tr>
<tr class="even">
<td style="text-align: left;">Q916322</td>
<td style="text-align: left;">San Ignacio de Velasco Municipality</td>
<td style="text-align: left;">Q1215518</td>
<td style="text-align: left;">José Miguel de Velasco Province</td>
<td style="text-align: left;">Q235106</td>
<td style="text-align: left;">Santa Cruz Department</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Q920327</td>
<td style="text-align: left;">Yamparáez</td>
<td style="text-align: left;">Q1420314</td>
<td style="text-align: left;">Yamparáez Province</td>
<td style="text-align: left;">Q235110</td>
<td style="text-align: left;">Chuquisaca Department</td>
</tr>
<tr class="even">
<td style="text-align: left;">Q955703</td>
<td style="text-align: left;">Villa Alcalá</td>
<td style="text-align: left;">Q1420320</td>
<td style="text-align: left;">Tomina Province</td>
<td style="text-align: left;">Q235110</td>
<td style="text-align: left;">Chuquisaca Department</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Q993949</td>
<td style="text-align: left;">General Saavedra</td>
<td style="text-align: left;">Q1215579</td>
<td style="text-align: left;">Obispo Santistevan Province</td>
<td style="text-align: left;">Q235106</td>
<td style="text-align: left;">Santa Cruz Department</td>
</tr>
</tbody>
</table>
<p>To figure out where each municipality belonged, I used the province table I had already cleaned to recover department names whenever possible. A few items still lacked enough geographic context, so I assigned their departments manually.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb7-1">prov_to_dept <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> provinces <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb7-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">select</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">prov_qid =</span> qid, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">dep_from_prov =</span> department) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb7-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mutate</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">dep_from_prov =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">str_replace</span>(dep_from_prov, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Potosí"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Potosi"</span>))</span>
<span id="cb7-4"></span>
<span id="cb7-5">wd_clean <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> municipalities_wd_exp <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb7-6">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">left_join</span>(prov_to_dept, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">by =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"loc_prov_qid"</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"prov_qid"</span>)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb7-7">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mutate</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">dept_final =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">coalesce</span>(dep_direct, dep_from_prov))</span></code></pre></div></div>
<p>Matching then happened in several rounds. First I tried a direct join between the Spanish Wikidata label and the municipality name in the INE table, while also matching on department so that duplicate names in different parts of the country would not be confused.</p>
<p>For the items that remained unmatched, I created cleaned versions of the names by stripping prefixes like “Municipio de” and suffixes like “Municipality,” then tried the join again. That resolved many routine formatting differences.</p>
<p>The remaining municipalities needed explicit hand matching. Here I wrote out a table pairing specific Wikidata QIDs with INE municipal codes. This covered a wide range of cases: accent and spelling variation, word-order differences, abbreviations, municipalities whose Wikidata item used an older or alternative official name, and a few items whose labels were so incomplete that I had to identify them from related information such as their linked Wikipedia articles.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb8-1">match_manual <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">tribble</span>(</span>
<span id="cb8-2">  <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span>qid,         <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span>cod.mun,</span>
<span id="cb8-3">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Q685208"</span>,    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"080401"</span>,  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Santa Ana del Yacuma -&gt; Santa Ana de Yacuma</span></span>
<span id="cb8-4">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Q721682"</span>,    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"071501"</span>,  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Ascencion de Guarayos -&gt; Ascension de Guarayos</span></span>
<span id="cb8-5">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Q647771"</span>,    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"040503"</span>   <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Cruz De Machacamarca -&gt; Cruz de Machacamarca</span></span>
<span id="cb8-6">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># and so on, for a total of 24 manual matches</span></span>
<span id="cb8-7">)</span></code></pre></div></div>
<p>One further complication was duplication. Wikidata sometimes had both a municipality item and a city item that described nearly the same place and could easily be confused in matching. In those cases I excluded the city item and kept the municipality item, especially when the latter was clearly marked as a municipality.</p>
<p>With those matches in place, I joined the INE municipal codes back onto the municipality table and generated the QuickStatements to add the new property to each item. This is <a href="https://qs-dev.toolforge.org/batch/22392/">the resulting batch</a>.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb9-1">municipalities_matched <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> municipalities_wd_exp <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb9-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">left_join</span>(all_matches, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">by =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"qid"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb9-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">add_quick_statement_column</span>(</span>
<span id="cb9-4">    qid, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"P14142"</span>, cod.mun,</span>
<span id="cb9-5">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">reference_qid =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Q138354774"</span></span>
<span id="cb9-6">  )</span></code></pre></div></div>
<p>I also used the resulting code assignments to identify municipalities whose administrative parent on Wikidata was still a department rather than a province. Since the first four digits of a municipality’s INE code identify its province, I could derive the correct province and prepare two more batches of QuickStatements: first <a href="https://qs-dev.toolforge.org/batch/22399/">removing the department</a> as the “located in” value, then <a href="https://qs-dev.toolforge.org/batch/22400/">adding the proper province item</a> instead.</p>
<p>By the end of this process, adding a new property had turned into a broader cleanup of Bolivia’s territorial data on Wikidata. The property itself was only one part of the task. To make the identifiers genuinely useful, I also had to standardize labels, add aliases, resolve ambiguous names, eliminate mistaken overlaps between cities and municipalities, and improve administrative relationships. A well-formed set of Wikidata entries then allows for for mass addition of new data from nationwide sources.</p>
<p>Altogether this process took 637 automated QuickStatements to reorganize and assign codes to Bolivia’s first, second, and third-level administrative subdivisions. While I had to think through the coding, I didn’t have to type a single one of them in manually (though I think I did just to see how the process worked).</p>
<p><em>That’s the whole process. Read on for why any of this matters.</em></p>
</section>
<section id="unique-identifiers-the-key-to-data-interoperability" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="unique-identifiers-the-key-to-data-interoperability">Unique identifiers: the key to data interoperability</h2>
<p>Unique identifiers solve problems. In the course of building <a href="https://ultimateconsequences.github.io">Ultimate Consequneces</a>, an interactive database of lives lost in Bolivian political conflict, I’ve had to coordinate the data I’m generating from a number of other sources: Census tables, data on Indigenous identification, shapefiles that show the size, location, and outlines of municipalities, geographic datasets mapping every rural community in the country.</p>
<p>Essentially each of these forms of data are big data tables whose rows are places. And I need to make them work with my own data table of deaths, each row of which contains a set of place information, laid out across six variables like this:</p>
<table class="caption-top table">
<colgroup>
<col style="width: 16%">
<col style="width: 16%">
<col style="width: 16%">
<col style="width: 16%">
<col style="width: 16%">
<col style="width: 16%">
</colgroup>
<thead>
<tr class="header">
<th><strong>place</strong></th>
<th><strong>address</strong></th>
<th><strong>community</strong></th>
<th><strong>municipality</strong></th>
<th><strong>province</strong></th>
<th><strong>department</strong></th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Place</td>
<td>Address/ Intersection</td>
<td>Community/Neighborhood</td>
<td>Municipality</td>
<td>Province</td>
<td>Department</td>
</tr>
<tr class="even">
<td>Lugar</td>
<td>Dirección/Intersección</td>
<td>Comunidad/Barrio</td>
<td>Municipalidad</td>
<td>Provincia</td>
<td>Departamento</td>
</tr>
</tbody>
</table>
<p>Now if I want to create a municipal map like this one, I have to count the number of deaths in each municipality and also figure out which item on the map shares that name. But nowhere in the world is there a consistent unambiguous spelling for all places. And in Bolivia in particular names have shifted dramatically, as the country’s municipal map was radically decentralized, adding three hundred new municipalities between 1994 and 2010. Some municipalities have multiple names, but each data source either only lists one, or occasionally both or all three.</p>
<div class="page-columns page-full"><p> For a while I was writing custom functions for each pair of data sources, a process that gets tedious (and/or unreliable) fast. Fortunately, two sources introduced me to a simpler solution: unique identifiers in the form of INE codes, produced by the National Statistical Institute that runs the Bolivian Census. A table like this one can handle all the interchanges, with one column for each data source. And building the table gets easier ecah time, since I can cross-reference each new set of names against all that came before.</p><div class="no-row-height column-margin column-container"><span class="margin-aside">The <strong>two sources</strong> where I first encountered INE codes were <a href="https://es.wikipedia.org/wiki/Anexo:Municipios_de_Bolivia">this table of Bolivian municipalities</a> on Spanish Wikipedia and <a href="https://web.archive.org/web/20191121055443/https://datos.gob.bo/dataset/indicadores-de-poblacion-segun-departamento-y-municipio-censo-2012/resource/f2b69ec5-0101-4821-84bd-fd85375f8f68">this census population table</a>.</span></div></div>
<table class="caption-top table">
<colgroup>
<col style="width: 14%">
<col style="width: 14%">
<col style="width: 14%">
<col style="width: 14%">
<col style="width: 14%">
<col style="width: 14%">
<col style="width: 14%">
</colgroup>
<thead>
<tr class="header">
<th style="text-align: left;">id_muni</th>
<th style="text-align: left;">muni_gb2014</th>
<th style="text-align: left;">muni_anexo</th>
<th style="text-align: left;">muni_ine</th>
<th style="text-align: left;">muni_census</th>
<th style="text-align: left;">department</th>
<th style="text-align: right;">n_unique</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">010101</td>
<td style="text-align: left;">Sucre</td>
<td style="text-align: left;">Sucre</td>
<td style="text-align: left;">Sucre</td>
<td style="text-align: left;">Sucre</td>
<td style="text-align: left;">Chuquisaca</td>
<td style="text-align: right;">1</td>
</tr>
<tr class="even">
<td style="text-align: left;">010102</td>
<td style="text-align: left;">Yotala</td>
<td style="text-align: left;">Yotala</td>
<td style="text-align: left;">Yotala</td>
<td style="text-align: left;">Yotala</td>
<td style="text-align: left;">Chuquisaca</td>
<td style="text-align: right;">1</td>
</tr>
<tr class="odd">
<td style="text-align: left;">010103</td>
<td style="text-align: left;">Poroma</td>
<td style="text-align: left;">Poroma</td>
<td style="text-align: left;">Poroma</td>
<td style="text-align: left;">Poroma</td>
<td style="text-align: left;">Chuquisaca</td>
<td style="text-align: right;">1</td>
</tr>
<tr class="even">
<td style="text-align: left;">010201</td>
<td style="text-align: left;">Azurduy</td>
<td style="text-align: left;">Azurduy</td>
<td style="text-align: left;">Azurduy</td>
<td style="text-align: left;">Azurduy</td>
<td style="text-align: left;">Chuquisaca</td>
<td style="text-align: right;">1</td>
</tr>
</tbody>
</table>
<p>Now I can just use the lookup table to add an INE code to any dataset, with a command <code>add_id_for_municipality()</code> that I just throw into my workflow:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb10-1">locations<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>municipality_centroid <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> lookup<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>municipality <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb10-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">add_id_for_municipality</span>() <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%&gt;%</span></span>
<span id="cb10-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">left_join</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">select</span>(gadm_muni_centroids, cod.mun, lon, lat),</span>
<span id="cb10-4">            <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">by =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"id_muni"</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cod.mun"</span>))</span></code></pre></div></div>
</section>
<section id="wikidata-a-global-index-of-unique-identifiers" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="wikidata-a-global-index-of-unique-identifiers">Wikidata: A global index of unique identifiers</h2>
<p>Put most simply, Wikidata as an open knowledge graph that anyone can edit and approve. Where Wikipedia primarily hosts article, Wikidata is filled with structured data, something familiar to most people only through the infoboxes at the upper right of Wikipedia pages and the similar tables of properties served alongside Google searches (which have become much less common there recently, supplanted by paragraph-long AI summaries). A popular single-domain knowledge graph is the Internet Movie Database</p>

<div class="no-row-height column-margin column-container"><div class="">
<p><img src="https://carwilb.github.io/images/wikipedia/Wikidata-logo-en.svg.png" class="img-fluid" alt="The Wikidata logo, a stylized barcode in red, green, and blue over the word Wikidata"></p>
</div></div><p>Arguably what Wikidata is best use for is an index. Started as a way of aligning the various Wikipedia article with one another across all of the online encyclopedia editions, Wikidata has become a massive respository of entities and their properties, stored in a structured data format whose basic elements are items and their properties.</p>
<p>Each item is a single entity, typically a noun and prototypically one element in a large conceptual set, whether an administrative or a species or human being or a work of art. And such categories are merely the root values of long conceptual chains of categories. For example, New York City (assigned the sequential code <a href="https://wikidata.org/wiki/Q60">Q60</a>) is an instance of a city (<a href="https://wikidata.org/wiki/Q515">Q515</a>), which is a subclass of a human settlement (<a href="https://wikidata.org/wiki/Q486972">Q486972</a>), through several intermediate categories (city or town, urban settlement). Embedded in this chain of connections is a complex conceptual answer about what New York City is. And this is only one of three chains extending upwards from New York City’s <a href="https://wikidata.org/wiki/Q60">Q60</a> page, which also lead through “municipality in the United States” (<a href="https://wikidata.org/wiki/Q3327870">Q3327870</a>) to “administrative territorial entity of a single country” (<a href="https://wikidata.org/wiki/Q12076836">Q12076836</a>) ultimately to “type of region” (<a href="https://wikidata.org/wiki/Q137022846">Q137022846</a>).</p>
<p>These are kinds of descriptions that librarians, archivists, encyclopedia designers, and computer programmers might all love. Given a well-organized system, you can do a lot with such indices. And if nothing else, Wikidata has become a global repository for this kind of index. Once the meeting place just for Wikipedia entries, it now archives hundreds (perhaps thousands of such indices).</p>
<p>One might know a lot about New York City (my former home of seven years) and only encounter a few such indices for the city in the course of a year: its six area codes and a couple dozen ZIP codes, its three major airport AITA codes (none of which directly link to Q60 since they are all describe smaller entities within it). You might come across its top-level Internet domain .nyc, which is on Q60. But there you’ll also find scores of other index ID’s: codes used to identify the city in library catalogs, online encyclopedias, even as a sub-Reddit.</p>
<p>Where this really matters is in research applications, like genomics or data science, where knowing which precise entity is being named and measured across different sources is absolutely crucial. In any one source, we use unique identifier codes to tell things apart. Wikidata makes it possible to link those codes together and thereby to combine different forms of data without going line-by-line through the datasets to find matches. (Possible, but not easy, it must be said.)</p>


</section>

 ]]></description>
  <guid>https://carwilb.github.io/posts/wikidata-new-property.html</guid>
  <pubDate>Fri, 22 May 2026 05:00:00 GMT</pubDate>
</item>
<item>
  <title>Unreported Detention: ICE Facilities in FY 2026</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/posts/ddp-comparison-26/</link>
  <description><![CDATA[ 





<section id="overview" class="level2">
<h2 class="anchored" data-anchor-id="overview">Overview</h2>
<p>This page analyzes ICE detention during the first months of fiscal year 2026, comparing two data sources:</p>
<ol type="1">
<li><p><strong>ICE FY 2026 annual detention statistics</strong>, released February 12, 2026, with data through February 5, 2026. Published at the <a href="https://www.ice.gov/detain/detention-management">ICE Detention Management Division</a>, the spreadsheet covers 220 facilities.</p></li>
<li><p><strong>Deportation Data Project daily population data</strong>, government data obtained by FOIA and <a href="https://deportationdata.org/data/processed/ice.html">archived</a> by the <a href="https://deportationdata.org/">Deportation Data Project</a>. The dataset covers every ICE detention facility with reported daily counts from October 2022 through March 10, 2026.</p></li>
</ol>
<p>Significantly, both of these are government-generated datasets, provided more and less willingly (respectively) by Immigration and Customs Enforcement. Where doing comparisons below, we focus on the October 1, 2025 – February 12, 2026 period covered by the ICE FY 2026 spreadsheet. Where summarizing detention as a whole, and in drawing the sparkline graphs for each facility on the map, we go as far as the DDP allows.</p>
<p>As with <a href="../../posts/ddp-comparison/index.html">FY 2025</a>, the DDP data reveals a substantial unreported detention population — facilities where ICE holds people that do not appear in the published annual statistics. Over this period, the unreported population reached a peak of over 2,500 individuals on a single day. Medical facilities, which accounted for about 68 detainees per day in FY 2025, have been excluded from this dataset.</p>
<p>In FY 2026, it is Hold Rooms and other Staging facilities that account for the vast majority of the unreported population. For comparison, hold facilties in FY 2025 had an average daily population of about 1,163 detainees, with an average of 1,986 in the final 60 days.</p>
<p>This analysis is partial in that a small handful of “Unclassified” facilities may have ICE matches which are still being added manually, but you can see if Figure 4 that this is a negligible part of the total.</p>
</section>
<section id="aggregate-comparison" class="level2">
<h2 class="anchored" data-anchor-id="aggregate-comparison">Aggregate comparison</h2>
<p>The ICE FY 2026 spreadsheet covers <strong>October 1, 2025 through February 5, 2026</strong> — 128 days. To compare with the DDP data we compute average daily population (ADP) over that same window.</p>
<div class="cell">
<div id="tbl-aggregate" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-aggregate-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;1: Aggregate comparison: ICE FY26 annual stats vs.&nbsp;DDP daily average (Oct 1 2025 – Feb 5 2026)
</figcaption>
<div aria-describedby="tbl-aggregate-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">Source</th>
<th style="text-align: right;">Facilities</th>
<th style="text-align: right;">Total ADP</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">ICE FY26 annual stats</td>
<td style="text-align: right;">220</td>
<td style="text-align: right;">67139</td>
</tr>
<tr class="even">
<td style="text-align: left;">DDP daily average</td>
<td style="text-align: right;">563</td>
<td style="text-align: right;">69696</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<p>The DDP covers 563 facility codes with at least one detainee during this period, compared to 220 in the ICE spreadsheet. On average, 2,557 more detainees per day appear in the DDP data than in ICE’s published figures.</p>
<section id="daily-population-over-time" class="level3">
<h3 class="anchored" data-anchor-id="daily-population-over-time">Daily population over time</h3>
<div class="cell">
<div class="cell-output-display">
<div id="fig-daily-total" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-daily-total-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://carwilb.github.io/posts/ddp-comparison-26/index_files/figure-html/fig-daily-total-1.png" class="img-fluid figure-img" width="672">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-daily-total-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;1: Total ICE detained population per day (DDP data, Jan 2025 – Mar 2026)
</figcaption>
</figure>
</div>
</div>
</div>
</section>
</section>
<section id="facility-level-matching" class="level2">
<h2 class="anchored" data-anchor-id="facility-level-matching">Facility-level matching</h2>
<div class="cell">
<div class="cell-output-display">
<table class="caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">Category</th>
<th style="text-align: left;">Value</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">In both sources</td>
<td style="text-align: left;">216</td>
</tr>
<tr class="even">
<td style="text-align: left;">ICE only (no DDP match)</td>
<td style="text-align: left;">4</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Matched: ICE total ADP</td>
<td style="text-align: left;">67121</td>
</tr>
<tr class="even">
<td style="text-align: left;">Matched: DDP total ADP</td>
<td style="text-align: left;">67619</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Matched: aggregate difference</td>
<td style="text-align: left;">498 (0.74%)</td>
</tr>
</tbody>
</table>
</div>
</div>
<section id="facility-level-agreement" class="level3">
<h3 class="anchored" data-anchor-id="facility-level-agreement">Facility-level agreement</h3>
<div class="cell">
<div class="cell-output-display">
<div id="fig-scatter" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-scatter-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://carwilb.github.io/posts/ddp-comparison-26/index_files/figure-html/fig-scatter-1.png" class="img-fluid figure-img" width="672">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-scatter-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;2: FY26 ADP comparison by facility (log scale). Dashed line = perfect agreement.
</figcaption>
</figure>
</div>
</div>
</div>
<div class="cell">
<div id="tbl-agreement-bands" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl quarto-uncaptioned" id="tbl-agreement-bands-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;2
</figcaption>
<div aria-describedby="tbl-agreement-bands-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">Agreement band</th>
<th style="text-align: right;">Facilities</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Within 10%</td>
<td style="text-align: right;">153</td>
</tr>
<tr class="even">
<td style="text-align: left;">Within 25%</td>
<td style="text-align: right;">22</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Within 50%</td>
<td style="text-align: right;">24</td>
</tr>
<tr class="even">
<td style="text-align: left;">&gt;50% difference</td>
<td style="text-align: right;">17</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Public-facing report shows greater value</td>
<td style="text-align: right;">89</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<p>Among the 216 matched facilities with nonzero ADP in both sources, 153 agree within 10%. There are 89 facilities with a lower count in DDP than in the ICE spreadsheet.</p>
<div class="cell">
<div id="tbl-ice-only" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-ice-only-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;3: ICE FY26 facilities with no DDP match
</figcaption>
<div aria-describedby="tbl-ice-only-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: right;">ID</th>
<th style="text-align: left;">Facility</th>
<th style="text-align: right;">ICE ADP</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: right;">372</td>
<td style="text-align: left;">Victoria County Jail</td>
<td style="text-align: right;">14</td>
</tr>
<tr class="even">
<td style="text-align: right;">1212</td>
<td style="text-align: left;">Scott County Detention. Facility</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: right;">402</td>
<td style="text-align: left;">Lafayette Parish Correctional Center</td>
<td style="text-align: right;">1</td>
</tr>
<tr class="even">
<td style="text-align: right;">1211</td>
<td style="text-align: left;">Sarasota County Jail</td>
<td style="text-align: right;">1</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<p>4 ICE FY26 facilities have no matching DDP facility code.</p>
</section>
</section>
<section id="sec-unmatched" class="level2">
<h2 class="anchored" data-anchor-id="sec-unmatched">Unmatched facilities</h2>
<p><strong>345</strong> of 563 DDP facility codes do not appear in the ICE FY 2026 annual statistics. These are facilities where ICE holds detainees but which are excluded from the published spreadsheet.</p>
<section id="by-facility-type" class="level3">
<h3 class="anchored" data-anchor-id="by-facility-type">By facility type</h3>
<p>Facility types are drawn from the Vera Institute’s classification system. “Dedicated” facilities are purpose-built or contractually dedicated to ICE detention. “Non-Dedicated” are county jails and other facilities that also hold ICE detainees. “Hold/Staging” are short-term ERO processing rooms. “Federal” includes BOP prisons and USMS facilities.</p>
<div class="cell">
<div id="tbl-unmatched-types" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-unmatched-types-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;4: DDP facilities not in ICE FY26, by facility type and ADP class
</figcaption>
<div aria-describedby="tbl-unmatched-types-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">Facility type</th>
<th style="text-align: left;">Peak class</th>
<th style="text-align: right;">Facilities</th>
<th style="text-align: right;">Period ADP</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">152</td>
<td style="text-align: right;">1809</td>
</tr>
<tr class="even">
<td style="text-align: left;">Federal</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">32</td>
<td style="text-align: right;">182</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">37</td>
<td style="text-align: right;">48</td>
</tr>
<tr class="even">
<td style="text-align: left;">Unclassified</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">25</td>
<td style="text-align: right;">29</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Family/Youth</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">3</td>
<td style="text-align: right;">4</td>
</tr>
<tr class="even">
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">37</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Unclassified</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">24</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">Federal</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">16</td>
<td style="text-align: right;">1</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Dedicated</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">4</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="even">
<td style="text-align: left;">Dedicated</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">2</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Family/Youth</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="even">
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">12</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Other/Unknown</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">0</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<p>The 346 unmatched facilities account for an average daily population of <strong>2,079</strong> over the October 2025 – February 5, 2026 period. 95 facilities never had more than one detainee at a time, collectively contributing 6.9 ADP.</p>
</section>
<section id="daily-population-in-unmatched-facilities" class="level3">
<h3 class="anchored" data-anchor-id="daily-population-in-unmatched-facilities">Daily population in unmatched facilities</h3>
<div class="cell">
<div class="cell-output-display">
<div id="fig-daily-unmatched" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-daily-unmatched-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://carwilb.github.io/posts/ddp-comparison-26/index_files/figure-html/fig-daily-unmatched-1.png" class="img-fluid figure-img" width="672">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-daily-unmatched-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;3: Daily detained population in facilities not in ICE FY26 annual statistics
</figcaption>
</figure>
</div>
</div>
</div>
<div class="cell">
<div class="cell-output-display">
<div id="fig-monthly-by-type" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-monthly-by-type-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://carwilb.github.io/posts/ddp-comparison-26/index_files/figure-html/fig-monthly-by-type-1.png" class="img-fluid figure-img" width="672">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-monthly-by-type-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;4: Average daily population in unmatched facilities, by month and type
</figcaption>
</figure>
</div>
</div>
</div>
</section>
<section id="peak-population-by-facility" class="level3">
<h3 class="anchored" data-anchor-id="peak-population-by-facility">Peak population by facility</h3>
<div class="cell">
<div id="tbl-peak-top20" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-peak-top20-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;5: Top 20 unmatched facilities by peak detained population (Oct 2025 – Feb 5 2026)
</figcaption>
<div aria-describedby="tbl-peak-top20-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<colgroup>
<col style="width: 35%">
<col style="width: 14%">
<col style="width: 6%">
<col style="width: 13%">
<col style="width: 10%">
<col style="width: 11%">
<col style="width: 9%">
</colgroup>
<thead>
<tr class="header">
<th style="text-align: left;">Facility</th>
<th style="text-align: left;">City</th>
<th style="text-align: left;">State</th>
<th style="text-align: left;">Type</th>
<th style="text-align: right;">Peak pop.</th>
<th style="text-align: left;">Peak date</th>
<th style="text-align: right;">Mean ADP</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">AZ REM OP COORD CENTER (AROCC)</td>
<td style="text-align: left;">MESA</td>
<td style="text-align: left;">AZ</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">777</td>
<td style="text-align: left;">2026-01-28</td>
<td style="text-align: right;">150</td>
</tr>
<tr class="even">
<td style="text-align: left;">BISHOP HENRY WHIPPLE FED BLDG</td>
<td style="text-align: left;">Fort Snelling</td>
<td style="text-align: left;">MN</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">362</td>
<td style="text-align: left;">2026-01-09</td>
<td style="text-align: right;">65</td>
</tr>
<tr class="odd">
<td style="text-align: left;">BROADVIEW SERVICE STAGING</td>
<td style="text-align: left;">BROADVIEW</td>
<td style="text-align: left;">IL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">326</td>
<td style="text-align: left;">2025-11-01</td>
<td style="text-align: right;">78</td>
</tr>
<tr class="even">
<td style="text-align: left;">DALLAS F.O. HOLD</td>
<td style="text-align: left;">Dallas</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">213</td>
<td style="text-align: left;">2025-10-23</td>
<td style="text-align: right;">97</td>
</tr>
<tr class="odd">
<td style="text-align: left;">BALTIMORE HOLD ROOM</td>
<td style="text-align: left;">Baltimore</td>
<td style="text-align: left;">MD</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">209</td>
<td style="text-align: left;">2026-01-23</td>
<td style="text-align: right;">96</td>
</tr>
<tr class="even">
<td style="text-align: left;">LOS CUST CASE</td>
<td style="text-align: left;">Los Angeles</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">208</td>
<td style="text-align: left;">2025-12-18</td>
<td style="text-align: right;">89</td>
</tr>
<tr class="odd">
<td style="text-align: left;">BOSTON HOLDROOM</td>
<td style="text-align: left;">Burlington</td>
<td style="text-align: left;">MA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">164</td>
<td style="text-align: left;">2026-01-23</td>
<td style="text-align: right;">40</td>
</tr>
<tr class="even">
<td style="text-align: left;">MONTGOMERY HOLD RM</td>
<td style="text-align: left;">Conroe</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">162</td>
<td style="text-align: left;">2026-01-13</td>
<td style="text-align: right;">78</td>
</tr>
<tr class="odd">
<td style="text-align: left;">PHOENIX DIST OFFICE</td>
<td style="text-align: left;">Phoenix</td>
<td style="text-align: left;">AZ</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">155</td>
<td style="text-align: left;">2025-12-03</td>
<td style="text-align: right;">64</td>
</tr>
<tr class="even">
<td style="text-align: left;">CHARLOTTE HOLD ROOM</td>
<td style="text-align: left;">CHARLOTTE</td>
<td style="text-align: left;">NC</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">145</td>
<td style="text-align: left;">2025-11-17</td>
<td style="text-align: right;">30</td>
</tr>
<tr class="odd">
<td style="text-align: left;">INDIANAPOLIS HOLD ROOM</td>
<td style="text-align: left;">INDIANAPOLIS</td>
<td style="text-align: left;">IN</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">142</td>
<td style="text-align: left;">2025-10-29</td>
<td style="text-align: right;">43</td>
</tr>
<tr class="even">
<td style="text-align: left;">SAN ANTONIO DRO HOLD ROOM</td>
<td style="text-align: left;">San Antonio</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">139</td>
<td style="text-align: left;">2026-01-30</td>
<td style="text-align: right;">46</td>
</tr>
<tr class="odd">
<td style="text-align: left;">LAREDO DETENTION CENTER HOLD ROOM</td>
<td style="text-align: left;">LAREDO</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">134</td>
<td style="text-align: left;">2025-12-07</td>
<td style="text-align: right;">27</td>
</tr>
<tr class="even">
<td style="text-align: left;">ATLANTA DIST. HOLD RM</td>
<td style="text-align: left;">Atlanta</td>
<td style="text-align: left;">GA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">131</td>
<td style="text-align: left;">2025-10-03</td>
<td style="text-align: right;">86</td>
</tr>
<tr class="odd">
<td style="text-align: left;">RICHMOND SUB-OFFICE HOLD</td>
<td style="text-align: left;">RICHMOND</td>
<td style="text-align: left;">VA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">126</td>
<td style="text-align: left;">2025-10-22</td>
<td style="text-align: right;">31</td>
</tr>
<tr class="even">
<td style="text-align: left;">MIAMI (MIRAMAR) HOLD ROOM</td>
<td style="text-align: left;">Miramar</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">108</td>
<td style="text-align: left;">2025-11-21</td>
<td style="text-align: right;">55</td>
</tr>
<tr class="odd">
<td style="text-align: left;">ORLANDO HOLD ROOM</td>
<td style="text-align: left;">ORLANDO</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">100</td>
<td style="text-align: left;">2025-12-19</td>
<td style="text-align: right;">48</td>
</tr>
<tr class="even">
<td style="text-align: left;">KROME HOLD ROOM</td>
<td style="text-align: left;">MIAMI</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">94</td>
<td style="text-align: left;">2025-11-11</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">MARION COUNTY JAIL</td>
<td style="text-align: left;">Indianapolis</td>
<td style="text-align: left;">IN</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">89</td>
<td style="text-align: left;">2025-10-15</td>
<td style="text-align: right;">51</td>
</tr>
<tr class="even">
<td style="text-align: left;">TAMPA HOLD ROOM</td>
<td style="text-align: left;">TAMPA</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">87</td>
<td style="text-align: left;">2025-10-27</td>
<td style="text-align: right;">41</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<div class="cell">
<div class="cell-output-display">
<div id="fig-peak-dist" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-peak-dist-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://carwilb.github.io/posts/ddp-comparison-26/index_files/figure-html/fig-peak-dist-1.png" class="img-fluid figure-img" width="672">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-peak-dist-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;5: Distribution of peak population among unmatched facilities (log scale, peak &gt; 0)
</figcaption>
</figure>
</div>
</div>
</div>
</section>
</section>
<section id="map-of-unmatched-facilities" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="map-of-unmatched-facilities">Map of unmatched facilities</h2>
<div class="column-screen-inset-right">
<div class="cell">
<div id="fig-map" class="cell-output-display quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-map-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-09cb5804e8f8db5938f2" style="width:100%;height:650px;"></div>
<script type="application/json" data-for="htmlwidget-09cb5804e8f8db5938f2">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"fitBounds":[17.5,-125,49.5,-65,[]],"calls":[{"method":"addProviderTiles","args":["CartoDB.Positron",null,null,{"errorTileUrl":"","noWrap":false,"detectRetina":false}]},{"method":"addCircleMarkers","args":[[44.0115031,13.4760946,64.8326191,58.3626252,61.6022736,26.181502,38.7981291,33.7475641,32.2035715,33.452963,32.8420841,35.0896998,36.9886172,41.5677119,36.1587778,33.832026,47.4220704,29.9542788,44.5224027,31.7755649,40.7594706,30.2206278,40.5136142,38.4740109,34.4063469,35.6680961,36.1683772,34.4181788,39.7659889,39.3666155,26.285612,31.8093209,31.883642,43.7734167,47.935621,40.9242015,30.4391616,33.1771862,35.3158569,35.3187546,37.4953324,21.2999288,26.416723,26.2003819,40.7279128,57.7919421,38.0654485,32.8096576,32.8096576,26.0757281,25.7153106,33.7487689,33.0409748,27.8797263,44.9562397,39.5711833,33.7482944,15.1567839,39.630125,41.8263347,28.7476541,34.0265493,40.1488668,34.2678901,44.33216059999999,30.1967424,39.6394764,33.7531536,29.1481388,38.1700717,39.9865257],[-73.16364829999999,144.750006,-147.7589929,-134.4843768,-149.1096251,-98.11911499999999,-77.0646527,-84.3955253,-95.8558275,-112.025979,-97.13133500000001,-106.6513973,-86.48028640000001,-75.4086123,-86.781307,-112.168389,-122.3014465,-82.1085483,-87.9308858,-91.8368181,-73.1909642,-82.6435752,-107.5451612,-77.9967482,-103.2063005,-119.228991,-86.7793245,-85.7729963,-104.8615152,-104.8630422,-98.164573,-106.2552476,-106.440946,-88.44935199999999,-97.0576258,-98.3432364,-89.0547035,-99.7217295,-82.4560039,-82.467828,-76.8610678,-157.8638944,-98.12773799999999,-97.70569070000001,-74.10840379999999,-152.4048793,-84.54567059999999,-111.5320133,-111.5320133,-97.512372,-80.33601969999999,-117.8783938,-111.3752486,-81.8174851,-93.08540050000001,-119.8111143,-117.8744444,145.7028775,-75.3569385,-103.6609193,-81.2991837,-90.4462432,-111.6597178,-119.2105456,-72.754942,-84.3771057,-77.76183739999999,-118.0010421,-98.1576773,-75.3758308,-76.6609023],3,null,"Peak < 2",{"interactive":true,"className":"","stroke":false,"color":"#03F","weight":5,"opacity":0.5,"fill":true,"fillColor":["#A65628","#FF7F00","#A65628","#F781BF","#A65628","#A65628","#F781BF","#F781BF","#FF7F00","#A65628","#A65628","#E41A1C","#FF7F00","#F781BF","#F781BF","#F781BF","#F781BF","#A65628","#A65628","#A65628","#999999","#A65628","#FF7F00","#A65628","#A65628","#E41A1C","#A65628","#F781BF","#F781BF","#A65628","#A65628","#A65628","#FF7F00","#A65628","#377EB8","#FF7F00","#A65628","#F781BF","#A65628","#FF7F00","#A65628","#FF7F00","#A65628","#A65628","#A65628","#A65628","#F781BF","#E41A1C","#E41A1C","#FF7F00","#A65628","#A65628","#A65628","#A65628","#F781BF","#FF7F00","#A65628","#FF7F00","#F781BF","#F781BF","#A65628","#F781BF","#A65628","#F781BF","#A65628","#A65628","#A65628","#FF7F00","#A65628","#A65628","#A65628"],"fillOpacity":1},null,null,["<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ADDISON COUNTY JAIL<\/b><br>35 Court Street<br>Middlebury, VT<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2026-01-23)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,6.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,6.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">GUAM ERO HOLD ROOM<\/b><br>108 Herman Cortez Ave<br>Hag̴ṯa, GU<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 1<\/b> (2025-11-19)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,6.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,6.0 180.9,6.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">FAIRBANKS CORR CTR<\/b><br>1931 Eagan Street<br>Fairbanks, AK<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-21)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,6.0 73.9,6.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,6.0 151.1,6.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,6.0 193.2,6.0 194.2,59.0 195.3,59.0 196.3,6.0 197.3,6.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LEMON CREEK, JUNEAU,AK<\/b><br>2000 Lemon Creek Road<br>Juneau, AK<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,6.0 92.4,6.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,6.0 129.5,6.0 130.5,6.0 131.5,6.0 132.5,6.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,6.0 217.9,6.0 218.9,6.0 220.0,6.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,6.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,6.0 275.5,6.0 276.5,6.0 277.5,6.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MATSU PRETRIAL, PALMER AK<\/b><br>339 E. Dogwood<br>Palmer, AK<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-18)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,6.0 119.2,6.0 120.2,6.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,6.0 210.7,6.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ALAMO POLICE DEPT.<\/b><br>840 W Austin St<br>Alamo, TX<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2026-01-22)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,6.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,6.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ALEXANDRIA CITY JAIL<\/b><br>2003 Mill Road<br>Alexandria, VA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-10)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,6.0 14.3,6.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,6.0 43.1,6.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,6.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,6.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,6.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,6.0 139.7,6.0 140.8,6.0 141.8,6.0 142.8,6.0 143.9,6.0 144.9,59.0 145.9,6.0 146.9,6.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,6.0 153.1,6.0 154.1,59.0 155.2,6.0 156.2,6.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,6.0 168.5,6.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,6.0 181.9,6.0 182.9,59.0 184.0,59.0 185.0,6.0 186.0,6.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,6.0 211.7,6.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,6.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,6.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,6.0 287.8,6.0 288.9,59.0 289.9,6.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ATLANTA PRETRIAL DETN CTR<\/b><br>254 Peachtree Street Southwest<br>Atlanta, GA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2026-01-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,6.0 75.0,6.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,6.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,6.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ATHENS, TX HOLD ROOM<\/b><br>109 W CORSICANA STREET<br>ATHENS, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-06)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 30<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,57.2 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,34.3 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,57.2 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,6.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ARIZONA STATE PRISON - YUMA<\/b><br>, AZ<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2026-01-20)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,6.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,32.5 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,32.5 244.6,59.0 245.7,32.5 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,32.5 268.3,32.5 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,32.5 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BEDFORD CITY JAIL<\/b><br>2121 L Don Dodson Drive<br>Bedford, TX<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,32.5 5.0,32.5 6.1,32.5 7.1,32.5 8.1,32.5 9.1,32.5 10.2,32.5 11.2,32.5 12.2,32.5 13.3,32.5 14.3,32.5 15.3,32.5 16.3,32.5 17.4,32.5 18.4,32.5 19.4,32.5 20.5,32.5 21.5,32.5 22.5,32.5 23.5,32.5 24.6,32.5 25.6,32.5 26.6,32.5 27.7,32.5 28.7,32.5 29.7,32.5 30.7,32.5 31.8,32.5 32.8,32.5 33.8,32.5 34.9,32.5 35.9,32.5 36.9,32.5 37.9,32.5 39.0,32.5 40.0,32.5 41.0,32.5 42.0,32.5 43.1,32.5 44.1,32.5 45.1,32.5 46.2,32.5 47.2,32.5 48.2,32.5 49.2,32.5 50.3,32.5 51.3,32.5 52.3,32.5 53.4,32.5 54.4,32.5 55.4,32.5 56.4,32.5 57.5,32.5 58.5,32.5 59.5,32.5 60.6,32.5 61.6,32.5 62.6,32.5 63.6,32.5 64.7,32.5 65.7,32.5 66.7,32.5 67.8,32.5 68.8,32.5 69.8,32.5 70.8,32.5 71.9,32.5 72.9,32.5 73.9,32.5 75.0,32.5 76.0,32.5 77.0,32.5 78.0,32.5 79.1,32.5 80.1,32.5 81.1,32.5 82.2,6.0 83.2,32.5 84.2,32.5 85.2,32.5 86.3,32.5 87.3,32.5 88.3,32.5 89.4,32.5 90.4,32.5 91.4,32.5 92.4,32.5 93.5,32.5 94.5,32.5 95.5,32.5 96.6,32.5 97.6,32.5 98.6,32.5 99.6,32.5 100.7,32.5 101.7,32.5 102.7,32.5 103.8,32.5 104.8,32.5 105.8,32.5 106.8,32.5 107.9,32.5 108.9,32.5 109.9,32.5 111.0,32.5 112.0,32.5 113.0,32.5 114.0,32.5 115.1,32.5 116.1,32.5 117.1,32.5 118.1,32.5 119.2,32.5 120.2,32.5 121.2,32.5 122.3,32.5 123.3,32.5 124.3,32.5 125.3,32.5 126.4,32.5 127.4,32.5 128.4,32.5 129.5,32.5 130.5,32.5 131.5,32.5 132.5,32.5 133.6,32.5 134.6,32.5 135.6,32.5 136.7,32.5 137.7,32.5 138.7,32.5 139.7,32.5 140.8,32.5 141.8,32.5 142.8,32.5 143.9,32.5 144.9,32.5 145.9,32.5 146.9,32.5 148.0,32.5 149.0,32.5 150.0,32.5 151.1,32.5 152.1,32.5 153.1,32.5 154.1,32.5 155.2,32.5 156.2,32.5 157.2,32.5 158.3,32.5 159.3,32.5 160.3,32.5 161.3,32.5 162.4,32.5 163.4,32.5 164.4,32.5 165.5,32.5 166.5,32.5 167.5,32.5 168.5,32.5 169.6,32.5 170.6,32.5 171.6,32.5 172.7,32.5 173.7,32.5 174.7,32.5 175.7,32.5 176.8,32.5 177.8,32.5 178.8,32.5 179.9,32.5 180.9,32.5 181.9,32.5 182.9,32.5 184.0,32.5 185.0,32.5 186.0,32.5 187.0,32.5 188.1,32.5 189.1,32.5 190.1,32.5 191.2,32.5 192.2,32.5 193.2,32.5 194.2,32.5 195.3,32.5 196.3,32.5 197.3,32.5 198.4,32.5 199.4,32.5 200.4,32.5 201.4,32.5 202.5,32.5 203.5,32.5 204.5,32.5 205.6,32.5 206.6,32.5 207.6,32.5 208.6,32.5 209.7,32.5 210.7,32.5 211.7,32.5 212.8,32.5 213.8,32.5 214.8,32.5 215.8,32.5 216.9,32.5 217.9,32.5 218.9,32.5 220.0,32.5 221.0,32.5 222.0,32.5 223.0,32.5 224.1,32.5 225.1,32.5 226.1,32.5 227.2,32.5 228.2,32.5 229.2,32.5 230.2,32.5 231.3,32.5 232.3,32.5 233.3,32.5 234.4,32.5 235.4,32.5 236.4,32.5 237.4,32.5 238.5,32.5 239.5,32.5 240.5,32.5 241.6,32.5 242.6,32.5 243.6,32.5 244.6,32.5 245.7,32.5 246.7,32.5 247.7,32.5 248.8,32.5 249.8,32.5 250.8,32.5 251.8,32.5 252.9,32.5 253.9,32.5 254.9,32.5 256.0,32.5 257.0,32.5 258.0,32.5 259.0,32.5 260.1,32.5 261.1,32.5 262.1,6.0 263.1,32.5 264.2,32.5 265.2,32.5 266.2,32.5 267.3,32.5 268.3,32.5 269.3,32.5 270.3,32.5 271.4,32.5 272.4,32.5 273.4,32.5 274.5,32.5 275.5,32.5 276.5,32.5 277.5,32.5 278.6,32.5 279.6,32.5 280.6,32.5 281.7,32.5 282.7,32.5 283.7,32.5 284.7,32.5 285.8,32.5 286.8,32.5 287.8,32.5 288.9,32.5 289.9,32.5 290.9,32.5 291.9,32.5 293.0,32.5 294.0,32.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BERNALILLO COUNTY DET CTR<\/b><br>415 Roma N.W.<br>Albuquerque, NM<br><span style=\"color:#666;\">Type: Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-28)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,6.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BOWLING GREEN HOLD ROOM<\/b><br>1013 Morgantown Rd<br>Bowling Green, KY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-22)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,6.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">USP CANAAN<\/b><br>3057 Easton Turnpike<br>Waymart, PA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2026-01-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,6.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,6.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,6.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">NASHVILLE COMM. CORR.<\/b><br>701 Broadway Street<br>Nashville, TN<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-07)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,6.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,32.5 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,32.5 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,32.5 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PHOENIX FED.CORR.INST.<\/b><br>37910 N 45th Ave Dept 1700<br>Phoenix, AZ<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-11-30)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 4<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,45.8 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,45.8 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,45.8 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,45.8 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,6.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SEATAC FED.DET.CENTER<\/b><br>2425 S.200th Street<br>Seatac, WA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,6.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,6.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,6.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BRADFORD COUNTY JAIL<\/b><br>945 N Temple Ave<br>Starke, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-31)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,6.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,6.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BROWN COUNTY JAIL<\/b><br>3030 Curry Lane<br>Green Bay, WI<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-11-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 13<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,42.7 5.0,34.5 6.1,34.5 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,10.1 13.3,10.1 14.3,10.1 15.3,6.0 16.3,54.9 17.4,50.8 18.4,54.9 19.4,54.9 20.5,26.4 21.5,30.5 22.5,34.5 23.5,34.5 24.6,34.5 25.6,34.5 26.6,26.4 27.7,46.8 28.7,26.4 29.7,26.4 30.7,34.5 31.8,34.5 32.8,34.5 33.8,34.5 34.9,30.5 35.9,54.9 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,54.9 44.1,50.8 45.1,50.8 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,54.9 51.3,50.8 52.3,50.8 53.4,50.8 54.4,50.8 55.4,46.8 56.4,46.8 57.5,42.7 58.5,54.9 59.5,54.9 60.6,59.0 61.6,59.0 62.6,59.0 63.6,50.8 64.7,50.8 65.7,50.8 66.7,50.8 67.8,50.8 68.8,50.8 69.8,50.8 70.8,50.8 71.9,50.8 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,54.9 91.4,54.9 92.4,54.9 93.5,54.9 94.5,54.9 95.5,54.9 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,50.8 121.2,50.8 122.3,50.8 123.3,50.8 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,54.9 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,54.9 188.1,54.9 189.1,54.9 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,54.9 226.1,54.9 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,54.9 241.6,54.9 242.6,54.9 243.6,54.9 244.6,54.9 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,54.9 273.4,50.8 274.5,50.8 275.5,54.9 276.5,54.9 277.5,59.0 278.6,50.8 279.6,50.8 280.6,54.9 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,54.9 289.9,54.9 290.9,59.0 291.9,59.0 293.0,50.8 294.0,42.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CATAHOULA CORRECTIONAL CENTER<\/b><br>499 Old Columbia Road<br>Harrisonburg, LA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-23)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,6.0 153.1,6.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,6.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,6.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,6.0 186.0,6.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,6.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,6.0 294.0,6.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">COURTHOUSE USM CNTL ISLIP<\/b><br>100 Federal Plaza<br>Central Islip, NY<br><span style=\"color:#666;\">Type: Other/Unknown<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-20)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,6.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,6.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,6.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,6.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,6.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,6.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,6.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">COLUMBIA COUNTY JAIL<\/b><br>389 NW Quinten St<br>Lake City, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2026-01-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,6.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CRAIG HOLDROOM<\/b><br>466 TUCKER STREET<br>CRAIG, CO<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-15)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 4<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,45.8 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,45.8 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,32.5 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,45.8 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,45.8 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,32.5 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,45.8 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,19.2 121.2,6.0 122.3,45.8 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,45.8 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,45.8 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,45.8 272.4,59.0 273.4,59.0 274.5,45.8 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CULPEPER CO. ADULT DET. CENTER<\/b><br>131 W. Cameron St.<br>Culpeper, VA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-11-28)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,6.0 62.6,6.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,6.0 190.1,6.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,6.0 229.2,6.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CURRY COUNTY DET FAC<\/b><br>801 Mitchell Street<br>Clovis, NM<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-11-26)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,6.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CENTRAL VALLEY ANNEX<\/b><br>254 Taylor Avenue<br>Mcfarland, CA<br><span style=\"color:#666;\">Type: Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2026-01-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,6.0 17.4,6.0 18.4,6.0 19.4,6.0 20.5,6.0 21.5,6.0 22.5,6.0 23.5,6.0 24.6,6.0 25.6,6.0 26.6,6.0 27.7,6.0 28.7,6.0 29.7,6.0 30.7,6.0 31.8,6.0 32.8,6.0 33.8,6.0 34.9,6.0 35.9,6.0 36.9,6.0 37.9,6.0 39.0,6.0 40.0,6.0 41.0,6.0 42.0,6.0 43.1,6.0 44.1,6.0 45.1,6.0 46.2,6.0 47.2,6.0 48.2,6.0 49.2,6.0 50.3,6.0 51.3,6.0 52.3,6.0 53.4,6.0 54.4,6.0 55.4,6.0 56.4,6.0 57.5,6.0 58.5,6.0 59.5,6.0 60.6,6.0 61.6,6.0 62.6,6.0 63.6,6.0 64.7,6.0 65.7,6.0 66.7,6.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,6.0 109.9,6.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,6.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">DAVIDSON CO. SHERIFF DEPT<\/b><br>448 2nd Avenue North<br>Nashville, TN<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-02)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,6.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,6.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">DEKALB COUNTY DETENTION CENTER<\/b><br>2801 Jordan Road<br>Fort Payne, AL<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-11)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,6.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,6.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">DENVER COUNTY JAIL<\/b><br>10500 East Smith Road<br>Denver, CO<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2026-01-24)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,6.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,6.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">DOUGLAS COUNTY DETENTION CENTER<\/b><br>355 South Wilcox<br>Castle Rock, CO<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-07)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,6.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,6.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,6.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,6.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,6.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,6.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">EDINBURG POLICE DEPT.<\/b><br>1702 S. Closner Blvd.<br>Edinburg, TX<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-25)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,6.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,6.0 194.2,6.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">EL PASO COUNTY JAIL (TX)<\/b><br>12501 Montana Ave<br>El Paso, TX<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-28)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,32.5 12.2,6.0 13.3,59.0 14.3,59.0 15.3,32.5 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,32.5 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,32.5 47.2,59.0 48.2,59.0 49.2,6.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,32.5 58.5,32.5 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,6.0 71.9,59.0 72.9,32.5 73.9,32.5 75.0,32.5 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,6.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,32.5 124.3,32.5 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,32.5 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,32.5 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,32.5 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,32.5 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">EL PASO SOFT SIDED FACILITY<\/b><br>, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1,603<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,34.7 5.0,27.6 6.1,24.9 7.1,22.1 8.1,26.8 9.1,32.6 10.2,33.5 11.2,32.6 12.2,28.2 13.3,31.6 14.3,33.5 15.3,30.8 16.3,33.9 17.4,27.6 18.4,25.1 19.4,22.6 20.5,25.1 21.5,24.1 22.5,26.0 23.5,25.9 24.6,23.9 25.6,23.1 26.6,22.6 27.7,31.3 28.7,29.3 29.7,26.5 30.7,29.6 31.8,23.7 32.8,23.8 33.8,21.9 34.9,23.0 35.9,27.6 36.9,29.3 37.9,31.7 39.0,35.7 40.0,34.0 41.0,33.8 42.0,36.4 43.1,34.3 44.1,34.5 45.1,36.3 46.2,37.2 47.2,34.5 48.2,34.8 49.2,35.2 50.3,35.0 51.3,35.0 52.3,39.5 53.4,41.2 54.4,40.2 55.4,41.7 56.4,42.5 57.5,43.4 58.5,45.0 59.5,50.0 60.6,49.1 61.6,48.6 62.6,46.5 63.6,49.7 64.7,51.6 65.7,50.5 66.7,49.6 67.8,48.3 68.8,48.6 69.8,47.3 70.8,43.1 71.9,40.9 72.9,40.3 73.9,31.7 75.0,23.6 76.0,15.8 77.0,9.1 78.0,6.0 79.1,9.5 80.1,7.6 81.1,14.4 82.2,21.5 83.2,32.0 84.2,38.6 85.2,39.9 86.3,34.8 87.3,32.5 88.3,24.8 89.4,17.3 90.4,24.0 91.4,34.3 92.4,43.7 93.5,47.5 94.5,57.8 95.5,58.9 96.6,58.9 97.6,58.9 98.6,58.8 99.6,58.9 100.7,58.9 101.7,58.9 102.7,58.9 103.8,58.9 104.8,58.9 105.8,58.9 106.8,58.9 107.9,58.9 108.9,58.9 109.9,58.9 111.0,58.9 112.0,58.9 113.0,58.9 114.0,58.9 115.1,58.9 116.1,58.9 117.1,58.9 118.1,58.9 119.2,58.9 120.2,58.9 121.2,58.9 122.3,58.9 123.3,58.8 124.3,59.0 125.3,59.0 126.4,59.0 127.4,58.9 128.4,58.8 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">FOND DU LAC COUNTY SHERIFF/JAIL<\/b><br>63 Western Ave<br>Fond Du Lac, WI<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-11-04)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,6.0 23.5,6.0 24.6,59.0 25.6,6.0 26.6,6.0 27.7,6.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,6.0 165.5,6.0 166.5,6.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,6.0 286.8,6.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">GRAND FORKS CO. JUVENILE<\/b><br>1701 North Washington St<br>Grand Forks, ND<br><span style=\"color:#666;\">Type: Family/Youth<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,6.0 64.7,6.0 65.7,6.0 66.7,6.0 67.8,6.0 68.8,6.0 69.8,6.0 70.8,6.0 71.9,6.0 72.9,6.0 73.9,6.0 75.0,6.0 76.0,6.0 77.0,6.0 78.0,6.0 79.1,6.0 80.1,6.0 81.1,6.0 82.2,6.0 83.2,6.0 84.2,6.0 85.2,6.0 86.3,6.0 87.3,6.0 88.3,6.0 89.4,6.0 90.4,6.0 91.4,6.0 92.4,6.0 93.5,6.0 94.5,6.0 95.5,6.0 96.6,6.0 97.6,6.0 98.6,6.0 99.6,6.0 100.7,6.0 101.7,6.0 102.7,6.0 103.8,6.0 104.8,6.0 105.8,6.0 106.8,6.0 107.9,6.0 108.9,6.0 109.9,6.0 111.0,6.0 112.0,6.0 113.0,6.0 114.0,6.0 115.1,6.0 116.1,6.0 117.1,6.0 118.1,6.0 119.2,6.0 120.2,6.0 121.2,6.0 122.3,6.0 123.3,6.0 124.3,6.0 125.3,6.0 126.4,6.0 127.4,6.0 128.4,6.0 129.5,6.0 130.5,6.0 131.5,6.0 132.5,6.0 133.6,6.0 134.6,6.0 135.6,6.0 136.7,6.0 137.7,6.0 138.7,6.0 139.7,6.0 140.8,6.0 141.8,6.0 142.8,6.0 143.9,6.0 144.9,6.0 145.9,6.0 146.9,6.0 148.0,6.0 149.0,6.0 150.0,6.0 151.1,6.0 152.1,6.0 153.1,6.0 154.1,6.0 155.2,6.0 156.2,6.0 157.2,6.0 158.3,6.0 159.3,6.0 160.3,6.0 161.3,6.0 162.4,6.0 163.4,6.0 164.4,6.0 165.5,6.0 166.5,6.0 167.5,6.0 168.5,6.0 169.6,6.0 170.6,6.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">GRAND ISLAND HOLD ROOM<\/b><br>220 N. WALNUT STREET<br>GRAND ISLAND, NE<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,6.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,6.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,6.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HARRISON DETENTION CENTER<\/b><br>10451 Larkin Smith Drive<br>Gulfport, MS<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2026-01-13)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,6.0 94.5,6.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,6.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ROLLING PLAINS DETENTION CENTER<\/b><br>118 County Road 206<br>Haskell, TX<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,6.0 5.0,6.0 6.1,6.0 7.1,6.0 8.1,6.0 9.1,6.0 10.2,6.0 11.2,6.0 12.2,6.0 13.3,6.0 14.3,6.0 15.3,6.0 16.3,6.0 17.4,6.0 18.4,6.0 19.4,6.0 20.5,6.0 21.5,6.0 22.5,6.0 23.5,6.0 24.6,6.0 25.6,6.0 26.6,6.0 27.7,6.0 28.7,6.0 29.7,6.0 30.7,6.0 31.8,6.0 32.8,6.0 33.8,6.0 34.9,6.0 35.9,6.0 36.9,6.0 37.9,6.0 39.0,6.0 40.0,6.0 41.0,6.0 42.0,6.0 43.1,6.0 44.1,6.0 45.1,6.0 46.2,6.0 47.2,6.0 48.2,6.0 49.2,6.0 50.3,6.0 51.3,6.0 52.3,6.0 53.4,6.0 54.4,6.0 55.4,6.0 56.4,6.0 57.5,6.0 58.5,6.0 59.5,6.0 60.6,6.0 61.6,6.0 62.6,6.0 63.6,6.0 64.7,6.0 65.7,6.0 66.7,6.0 67.8,6.0 68.8,6.0 69.8,6.0 70.8,6.0 71.9,6.0 72.9,6.0 73.9,6.0 75.0,6.0 76.0,6.0 77.0,6.0 78.0,6.0 79.1,6.0 80.1,6.0 81.1,6.0 82.2,6.0 83.2,6.0 84.2,6.0 85.2,6.0 86.3,6.0 87.3,6.0 88.3,6.0 89.4,6.0 90.4,6.0 91.4,6.0 92.4,6.0 93.5,6.0 94.5,6.0 95.5,6.0 96.6,6.0 97.6,6.0 98.6,6.0 99.6,6.0 100.7,6.0 101.7,6.0 102.7,6.0 103.8,6.0 104.8,6.0 105.8,6.0 106.8,6.0 107.9,6.0 108.9,6.0 109.9,6.0 111.0,6.0 112.0,6.0 113.0,6.0 114.0,6.0 115.1,6.0 116.1,6.0 117.1,6.0 118.1,6.0 119.2,6.0 120.2,6.0 121.2,6.0 122.3,6.0 123.3,6.0 124.3,6.0 125.3,6.0 126.4,6.0 127.4,6.0 128.4,6.0 129.5,6.0 130.5,6.0 131.5,6.0 132.5,6.0 133.6,6.0 134.6,6.0 135.6,6.0 136.7,6.0 137.7,6.0 138.7,6.0 139.7,6.0 140.8,6.0 141.8,6.0 142.8,6.0 143.9,6.0 144.9,6.0 145.9,6.0 146.9,6.0 148.0,6.0 149.0,6.0 150.0,6.0 151.1,6.0 152.1,6.0 153.1,6.0 154.1,6.0 155.2,6.0 156.2,6.0 157.2,6.0 158.3,6.0 159.3,6.0 160.3,6.0 161.3,6.0 162.4,6.0 163.4,6.0 164.4,6.0 165.5,6.0 166.5,6.0 167.5,6.0 168.5,6.0 169.6,6.0 170.6,6.0 171.6,6.0 172.7,6.0 173.7,6.0 174.7,6.0 175.7,6.0 176.8,6.0 177.8,6.0 178.8,6.0 179.9,6.0 180.9,6.0 181.9,6.0 182.9,6.0 184.0,6.0 185.0,6.0 186.0,6.0 187.0,6.0 188.1,6.0 189.1,6.0 190.1,6.0 191.2,6.0 192.2,6.0 193.2,6.0 194.2,6.0 195.3,6.0 196.3,6.0 197.3,6.0 198.4,6.0 199.4,6.0 200.4,6.0 201.4,6.0 202.5,6.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HENDERSON COUNTY DET. FAC.<\/b><br>375 1st Avenue East<br>Hendersonville, NC<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,6.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,32.5 15.3,59.0 16.3,59.0 17.4,6.0 18.4,6.0 19.4,6.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,32.5 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,32.5 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,32.5 114.0,32.5 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,32.5 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HENDERSONVILLE HOLD ROOM<\/b><br>518 6TH AVE W<br>HENDERSONVILLE, NC<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-22)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 3<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,41.3 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,41.3 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,6.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,41.3 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,6.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HENRICO COUNTY JAIL<\/b><br>17320 New Kent Hwy<br>Barhamsville, VA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-08)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,6.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,6.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,6.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ERO HONOLULU SUB-OFFICE HOLD ROOM<\/b><br>595 ALA MOANA BLVD<br>HONOLULU, HI<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 1<\/b> (2025-11-05)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,6.0 28.7,6.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,6.0 50.3,6.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,6.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,6.0 166.5,6.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,6.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,6.0 201.4,6.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HIDALGO COUNTY SHERIFF'S JAIL<\/b><br>3100 South Hwy 281<br>Edinburg, TX<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-11)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,6.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HARLINGEN POLICE DEPT.<\/b><br>1018 Fair Park<br>Harlingen, TX<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-25)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,6.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HUDSON COUNTY JAIL<\/b><br>30-35 Hackensack Ave.<br>Kearny, NJ<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-24)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,6.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,6.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">KODIAK CITY JAIL<\/b><br>217 Lower Mill Bay Road<br>Kodiak, AK<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2026-01-10)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,6.0 10.2,6.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,6.0 234.4,6.0 235.4,6.0 236.4,6.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LEXINGTON PROCESSING @ FAYETTE CO<\/b><br>600 Old Frankford Cr<br>Lexington, KY<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-21)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,32.5 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,32.5 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,32.5 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,32.5 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,32.5 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,32.5 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,6.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,32.5 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,32.5 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LA PALMA CORR CTR APSO<\/b><br>5501 North La Palma Road<br>Eloy, AZ<br><span style=\"color:#666;\">Type: Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-27)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,6.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,6.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,6.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,6.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,6.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,6.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LA PALMA CORRECTIONAL CENTER<\/b><br>5501 North La Palma Road<br>Eloy, AZ<br><span style=\"color:#666;\">Type: Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-23)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,6.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,6.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LOS FRESNOS HOLD ROOM<\/b><br>213 Orive Blvd<br>LOS FRESNOS, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 1<\/b> (2025-11-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,6.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,6.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,6.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">METRO DADE JAIL<\/b><br>5680 Southwest 87th Avenue<br>Miami, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2026-01-06)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 25<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,31.4 8.1,31.4 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,42.0 23.5,42.0 24.6,59.0 25.6,59.0 26.6,39.9 27.7,6.0 28.7,8.1 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,46.3 34.9,46.3 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,56.9 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,56.9 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ORANGE COUNT INTAKE RELEASE FAC.<\/b><br>550 North Flower Street<br>Santa Ana, CA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,6.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PINAL COUNTY JAIL<\/b><br>971 N. Jason Lopez Circle<br>Florence, AZ<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-11-30)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,6.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,6.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,6.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">POLK COUNTY JAIL<\/b><br>2390 Bob Phillips Road<br>Bartow, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-23)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 22<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,6.0 121.2,6.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,56.6 153.1,56.6 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">RAMSEY ADC ANNEX, SPM<\/b><br>425 Grove Street<br>St. Paul, MN<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-08)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,6.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">RENO HOLD ROOM<\/b><br>911 E Parr Blvd<br>RENO, NV<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-02)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,6.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,32.5 34.9,32.5 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,32.5 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,32.5 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,32.5 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,32.5 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,32.5 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,32.5 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,32.5 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,32.5 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,32.5 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SANTA ANA CITY JAIL<\/b><br>62 Civic Center Plaza<br>Santa Ana, CA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-25)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,6.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,6.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SAIPAIN HOLD<\/b><br>Susupe, Saipan 96950, CNMI<br>SAIPAN, MP<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-27)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,6.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,6.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,6.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,6.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,6.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SALEM COUNTY CORRECTIONAL FACILITY<\/b><br>125 Cemetery Road<br>Woodstown, NJ<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-11)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,6.0 140.8,6.0 141.8,6.0 142.8,6.0 143.9,6.0 144.9,6.0 145.9,6.0 146.9,6.0 148.0,6.0 149.0,6.0 150.0,6.0 151.1,6.0 152.1,6.0 153.1,6.0 154.1,6.0 155.2,6.0 156.2,6.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SCOTTS BLUFF CO JAIL<\/b><br>1725 10th St<br>Gering, NE<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-11-17)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,6.0 42.0,6.0 43.1,6.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,6.0 71.9,6.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,6.0 108.9,6.0 109.9,6.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,6.0 178.8,6.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,6.0 236.4,6.0 237.4,6.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,6.0 279.6,6.0 280.6,6.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SEMINOLE COUNTY JAIL<\/b><br>211 Eslinger Way<br>Sanford, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 6<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,32.5 5.0,23.7 6.1,32.5 7.1,23.7 8.1,50.2 9.1,50.2 10.2,50.2 11.2,50.2 12.2,50.2 13.3,50.2 14.3,41.3 15.3,41.3 16.3,41.3 17.4,50.2 18.4,50.2 19.4,50.2 20.5,41.3 21.5,41.3 22.5,41.3 23.5,23.7 24.6,23.7 25.6,23.7 26.6,41.3 27.7,41.3 28.7,32.5 29.7,41.3 30.7,32.5 31.8,41.3 32.8,41.3 33.8,41.3 34.9,23.7 35.9,23.7 36.9,32.5 37.9,50.2 39.0,50.2 40.0,50.2 41.0,50.2 42.0,50.2 43.1,41.3 44.1,32.5 45.1,14.8 46.2,32.5 47.2,50.2 48.2,41.3 49.2,32.5 50.3,6.0 51.3,14.8 52.3,50.2 53.4,50.2 54.4,50.2 55.4,50.2 56.4,32.5 57.5,23.7 58.5,23.7 59.5,50.2 60.6,50.2 61.6,50.2 62.6,50.2 63.6,50.2 64.7,50.2 65.7,50.2 66.7,41.3 67.8,41.3 68.8,41.3 69.8,50.2 70.8,50.2 71.9,50.2 72.9,41.3 73.9,41.3 75.0,41.3 76.0,32.5 77.0,14.8 78.0,41.3 79.1,41.3 80.1,50.2 81.1,50.2 82.2,41.3 83.2,41.3 84.2,50.2 85.2,41.3 86.3,41.3 87.3,32.5 88.3,41.3 89.4,41.3 90.4,50.2 91.4,50.2 92.4,41.3 93.5,32.5 94.5,41.3 95.5,23.7 96.6,32.5 97.6,32.5 98.6,50.2 99.6,50.2 100.7,41.3 101.7,41.3 102.7,41.3 103.8,32.5 104.8,23.7 105.8,14.8 106.8,41.3 107.9,41.3 108.9,41.3 109.9,14.8 111.0,14.8 112.0,50.2 113.0,50.2 114.0,50.2 115.1,50.2 116.1,50.2 117.1,50.2 118.1,50.2 119.2,50.2 120.2,50.2 121.2,50.2 122.3,50.2 123.3,50.2 124.3,50.2 125.3,50.2 126.4,50.2 127.4,50.2 128.4,50.2 129.5,50.2 130.5,50.2 131.5,50.2 132.5,50.2 133.6,50.2 134.6,50.2 135.6,50.2 136.7,50.2 137.7,50.2 138.7,50.2 139.7,50.2 140.8,50.2 141.8,50.2 142.8,50.2 143.9,50.2 144.9,50.2 145.9,50.2 146.9,50.2 148.0,50.2 149.0,50.2 150.0,50.2 151.1,50.2 152.1,50.2 153.1,50.2 154.1,50.2 155.2,50.2 156.2,50.2 157.2,50.2 158.3,50.2 159.3,50.2 160.3,50.2 161.3,50.2 162.4,50.2 163.4,50.2 164.4,50.2 165.5,50.2 166.5,50.2 167.5,50.2 168.5,50.2 169.6,50.2 170.6,50.2 171.6,50.2 172.7,50.2 173.7,50.2 174.7,50.2 175.7,50.2 176.8,50.2 177.8,50.2 178.8,50.2 179.9,50.2 180.9,50.2 181.9,50.2 182.9,50.2 184.0,50.2 185.0,50.2 186.0,50.2 187.0,50.2 188.1,50.2 189.1,50.2 190.1,50.2 191.2,50.2 192.2,50.2 193.2,50.2 194.2,50.2 195.3,50.2 196.3,50.2 197.3,50.2 198.4,50.2 199.4,50.2 200.4,50.2 201.4,50.2 202.5,50.2 203.5,50.2 204.5,50.2 205.6,50.2 206.6,50.2 207.6,50.2 208.6,50.2 209.7,50.2 210.7,50.2 211.7,50.2 212.8,50.2 213.8,50.2 214.8,50.2 215.8,50.2 216.9,50.2 217.9,50.2 218.9,50.2 220.0,50.2 221.0,50.2 222.0,50.2 223.0,50.2 224.1,50.2 225.1,50.2 226.1,50.2 227.2,50.2 228.2,50.2 229.2,50.2 230.2,50.2 231.3,50.2 232.3,50.2 233.3,50.2 234.4,50.2 235.4,50.2 236.4,50.2 237.4,50.2 238.5,50.2 239.5,50.2 240.5,50.2 241.6,50.2 242.6,50.2 243.6,50.2 244.6,50.2 245.7,50.2 246.7,50.2 247.7,50.2 248.8,50.2 249.8,50.2 250.8,50.2 251.8,50.2 252.9,50.2 253.9,50.2 254.9,50.2 256.0,50.2 257.0,50.2 258.0,50.2 259.0,50.2 260.1,50.2 261.1,50.2 262.1,50.2 263.1,50.2 264.2,50.2 265.2,50.2 266.2,50.2 267.3,50.2 268.3,50.2 269.3,50.2 270.3,50.2 271.4,50.2 272.4,50.2 273.4,50.2 274.5,50.2 275.5,50.2 276.5,50.2 277.5,50.2 278.6,50.2 279.6,50.2 280.6,50.2 281.7,50.2 282.7,50.2 283.7,50.2 284.7,50.2 285.8,50.2 286.8,50.2 287.8,50.2 288.9,50.2 289.9,50.2 290.9,50.2 291.9,50.2 293.0,50.2 294.0,50.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">TALLAHATCHIE CO CORR FACILITY<\/b><br>415 U.s. Highway 49 North<br>Tutwiler, MS<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-19)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,6.0 108.9,6.0 109.9,6.0 111.0,6.0 112.0,6.0 113.0,6.0 114.0,6.0 115.1,6.0 116.1,6.0 117.1,6.0 118.1,6.0 119.2,6.0 120.2,6.0 121.2,6.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,6.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,6.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,6.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,6.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">UTAH COUNTY JAIL<\/b><br>3075 North Main Street<br>Spanish Fork, UT<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-11)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,6.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">VENTURA COUNTY JAIL<\/b><br>800 South Victoria Avenue<br>Ventura, CA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-10)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,6.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">VT. DEPT. OF CORRECTIONS<\/b><br>103 South Main Street<br>Waterbury, VT<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-21)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,6.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">WAKULLA COUNTY JAIL<\/b><br>15 Oak Street<br>Crawfordville, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-28)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,6.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,6.0 158.3,6.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">WASHINGTON CO. DETENTION<\/b><br>500 Western Maryland Parkway<br>Hagerstown, MD<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-11-14)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,6.0 45.1,6.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,6.0 118.1,6.0 119.2,6.0 120.2,6.0 121.2,6.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,6.0 175.7,6.0 176.8,6.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">WESTMINSTER CUSTODY<\/b><br>8200 WESTMINSTER BOULEVARD<br>WESTMINSTER, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-30)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,32.5 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,32.5 32.8,32.5 33.8,32.5 34.9,32.5 35.9,32.5 36.9,32.5 37.9,6.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,32.5 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,32.5 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,32.5 160.3,32.5 161.3,32.5 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">WILSON COUNTY JAIL<\/b><br>800 10th St Unit 4<br>Floresville, TX<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-12)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 8<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,39.1 18.4,39.1 19.4,6.0 20.5,25.9 21.5,25.9 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,52.4 204.5,52.4 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">WORCESTER CO. JAIL<\/b><br>5022 Joyner Road<br>Snow Hill, MD<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-12-12)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,6.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">YORK COUNTY JAIL, PA<\/b><br>3400 Concord Road<br>York, PA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 1<\/b> (2025-10-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 1<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,6.0 5.0,6.0 6.1,6.0 7.1,6.0 8.1,6.0 9.1,6.0 10.2,6.0 11.2,6.0 12.2,6.0 13.3,6.0 14.3,6.0 15.3,6.0 16.3,6.0 17.4,6.0 18.4,6.0 19.4,6.0 20.5,6.0 21.5,6.0 22.5,6.0 23.5,6.0 24.6,6.0 25.6,6.0 26.6,6.0 27.7,6.0 28.7,6.0 29.7,6.0 30.7,6.0 31.8,6.0 32.8,6.0 33.8,6.0 34.9,6.0 35.9,6.0 36.9,6.0 37.9,6.0 39.0,6.0 40.0,6.0 41.0,6.0 42.0,6.0 43.1,6.0 44.1,6.0 45.1,6.0 46.2,6.0 47.2,6.0 48.2,6.0 49.2,6.0 50.3,6.0 51.3,6.0 52.3,6.0 53.4,6.0 54.4,6.0 55.4,6.0 56.4,6.0 57.5,6.0 58.5,6.0 59.5,6.0 60.6,6.0 61.6,6.0 62.6,6.0 63.6,6.0 64.7,6.0 65.7,6.0 66.7,6.0 67.8,6.0 68.8,6.0 69.8,6.0 70.8,6.0 71.9,6.0 72.9,6.0 73.9,6.0 75.0,6.0 76.0,6.0 77.0,6.0 78.0,6.0 79.1,6.0 80.1,6.0 81.1,6.0 82.2,6.0 83.2,6.0 84.2,6.0 85.2,6.0 86.3,6.0 87.3,6.0 88.3,6.0 89.4,6.0 90.4,6.0 91.4,6.0 92.4,6.0 93.5,6.0 94.5,6.0 95.5,6.0 96.6,6.0 97.6,6.0 98.6,6.0 99.6,6.0 100.7,6.0 101.7,6.0 102.7,6.0 103.8,6.0 104.8,6.0 105.8,6.0 106.8,6.0 107.9,6.0 108.9,6.0 109.9,6.0 111.0,6.0 112.0,6.0 113.0,6.0 114.0,6.0 115.1,6.0 116.1,6.0 117.1,6.0 118.1,6.0 119.2,6.0 120.2,6.0 121.2,6.0 122.3,6.0 123.3,6.0 124.3,6.0 125.3,6.0 126.4,6.0 127.4,6.0 128.4,6.0 129.5,6.0 130.5,6.0 131.5,6.0 132.5,6.0 133.6,6.0 134.6,6.0 135.6,6.0 136.7,6.0 137.7,6.0 138.7,6.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>"],null,["ADDISON COUNTY JAIL (VT: peak 1)","GUAM ERO HOLD ROOM (GU: peak 1)","FAIRBANKS CORR CTR (AK: peak 1)","LEMON CREEK, JUNEAU,AK (AK: peak 1)","MATSU PRETRIAL, PALMER AK (AK: peak 1)","ALAMO POLICE DEPT. (TX: peak 1)","ALEXANDRIA CITY JAIL (VA: peak 1)","ATLANTA PRETRIAL DETN CTR (GA: peak 1)","ATHENS, TX HOLD ROOM (TX: peak 1)","ARIZONA STATE PRISON - YUMA (AZ: peak 1)","BEDFORD CITY JAIL (TX: peak 1)","BERNALILLO COUNTY DET CTR (NM: peak 1)","BOWLING GREEN HOLD ROOM (KY: peak 1)","USP CANAAN (PA: peak 1)","NASHVILLE COMM. CORR. (TN: peak 1)","PHOENIX FED.CORR.INST. (AZ: peak 1)","SEATAC FED.DET.CENTER (WA: peak 1)","BRADFORD COUNTY JAIL (FL: peak 1)","BROWN COUNTY JAIL (WI: peak 1)","CATAHOULA CORRECTIONAL CENTER (LA: peak 1)","COURTHOUSE USM CNTL ISLIP (NY: peak 1)","COLUMBIA COUNTY JAIL (FL: peak 1)","CRAIG HOLDROOM (CO: peak 1)","CULPEPER CO. ADULT DET. CENTER (VA: peak 1)","CURRY COUNTY DET FAC (NM: peak 1)","CENTRAL VALLEY ANNEX (CA: peak 1)","DAVIDSON CO. SHERIFF DEPT (TN: peak 1)","DEKALB COUNTY DETENTION CENTER (AL: peak 1)","DENVER COUNTY JAIL (CO: peak 1)","DOUGLAS COUNTY DETENTION CENTER (CO: peak 1)","EDINBURG POLICE DEPT. (TX: peak 1)","EL PASO COUNTY JAIL (TX) (TX: peak 1)","EL PASO SOFT SIDED FACILITY (TX: peak 1)","FOND DU LAC COUNTY SHERIFF/JAIL (WI: peak 1)","GRAND FORKS CO. JUVENILE (ND: peak 1)","GRAND ISLAND HOLD ROOM (NE: peak 1)","HARRISON DETENTION CENTER (MS: peak 1)","ROLLING PLAINS DETENTION CENTER (TX: peak 1)","HENDERSON COUNTY DET. FAC. (NC: peak 1)","HENDERSONVILLE HOLD ROOM (NC: peak 1)","HENRICO COUNTY JAIL (VA: peak 1)","ERO HONOLULU SUB-OFFICE HOLD ROOM (HI: peak 1)","HIDALGO COUNTY SHERIFF'S JAIL (TX: peak 1)","HARLINGEN POLICE DEPT. (TX: peak 1)","HUDSON COUNTY JAIL (NJ: peak 1)","KODIAK CITY JAIL (AK: peak 1)","LEXINGTON PROCESSING @ FAYETTE CO (KY: peak 1)","LA PALMA CORR CTR APSO (AZ: peak 1)","LA PALMA CORRECTIONAL CENTER (AZ: peak 1)","LOS FRESNOS HOLD ROOM (TX: peak 1)","METRO DADE JAIL (FL: peak 1)","ORANGE COUNT INTAKE RELEASE FAC. (CA: peak 1)","PINAL COUNTY JAIL (AZ: peak 1)","POLK COUNTY JAIL (FL: peak 1)","RAMSEY ADC ANNEX, SPM (MN: peak 1)","RENO HOLD ROOM (NV: peak 1)","SANTA ANA CITY JAIL (CA: peak 1)","SAIPAIN HOLD (MP: peak 1)","SALEM COUNTY CORRECTIONAL FACILITY (NJ: peak 1)","SCOTTS BLUFF CO JAIL (NE: peak 1)","SEMINOLE COUNTY JAIL (FL: peak 1)","TALLAHATCHIE CO CORR FACILITY (MS: peak 1)","UTAH COUNTY JAIL (UT: peak 1)","VENTURA COUNTY JAIL (CA: peak 1)","VT. DEPT. OF CORRECTIONS (VT: peak 1)","WAKULLA COUNTY JAIL (FL: peak 1)","WASHINGTON CO. DETENTION (MD: peak 1)","WESTMINSTER CUSTODY (CA: peak 1)","WILSON COUNTY JAIL (TX: peak 1)","WORCESTER CO. JAIL (MD: peak 1)","YORK COUNTY JAIL, PA (PA: peak 1)"],{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addCircleMarkers","args":[[37.4127044,35.0522552,40.1917752,18.4962828,61.3030727,36.0683261,42.96505790000001,37.4893878,35.115385,33.749609,30.2693858,39.2879833,31.056511,33.4792816,39.76134709999999,35.3736714,43.5942506,42.4825992,38.2131205,42.3675834,28.4481354,27.2482081,41.8680102,32.2248668,42.8911691,41.7351513,44.2774703,42.8911691,18.3403438,32.8460024,33.3515168,41.87539049999999,32.8463863,45.0068737,36.7176219,41.1368016,35.179783,39.2382289,40.7594706,41.5049609,39.9624569,35.2226924,43.0201451,35.1059466,34.0088782,35.1892029,41.9745858,27.7795664,38.8332903,42.8523725,43.6513147,38.2271835,32.8238894,39.6015038,42.3310002,29.3927093,33.057249,41.5856411,37.2371432,39.1536338,31.80421399999999,34.015507,44.0524622,38.0654485,36.10463,48.82974489999999,29.452478,34.280156,26.548482,40.08207549999999,36.7326978,34.7404942,39.0871873,47.924267,42.97265429999999,34.9393051,39.5582742,34.2384105,41.7613805,38.4271142,46.5937137,26.7604172,26.1776479,29.9375017,43.5147311,32.8266637,39.7659792,33.4183833,32.2902501,30.2566701,31.549304,28.884651,29.3116119,35.9232411,25.75434,25.7581461,41.4225808,32.3473177,33.5841136,29.4651997,34.053793,39.0749941,38.2531573,34.7211076,27.5292214,33.5852981,36.1641801,27.6366807,42.9984836,29.1943814,28.719324,26.2639943,31.5574572,42.3255106,35.1563308,25.9827432,31.994141,43.0471532,31.994141,39.93274359999999,30.695111,24.576552,42.9531454,30.3360804,30.6109717,40.7322545,41.5157485,40.7304926,29.9857549,36.87616999999999,39.1998421,36.2251232,39.19883129999999,40.7152635,30.8310871,41.2205835,35.4236398,31.85131,41.2820726,28.4281216,28.2959861,26.6709505,31.3981762,39.9538838,33.4708461,40.4248324,41.3885184,42.05559290000001,43.5788489,45.51504569999999,32.42078539,41.7357562,40.1488668,38.4265663,29.6682055,38.7519901,38.4068098,37.5429144,35.7897748,40.5749834,26.1569011,46.27814770000001,41.509035,37.2923927,35.115385,38.44932,44.1007278,33.3980667,33.7484501,38.57800230000001,31.4215029,18.4078569,38.4105074,27.3362409,27.3362409,34.1006917,41.5240367,47.4907997,43.5499676,37.7962167,37.1197342,18.437531,40.7062912,40.6970507,34.918106,29.517042,37.2518247,44.8941668,47.66582,44.8014691,29.9931553,28.8973835,29.9402982,37.9512028,38.6243789,27.4533225,27.1628237,43.0468521,30.4719963,27.959392,42.5625826,33.1546792,32.1356653,36.139538,33.4208569,42.6858559,26.158648,29.2124857,34.2063593,36.7528158,40.7282753,32.5136216,36.0334327,38.9114848,31.5532338,46.6183336,38.0477924,41.2239063,39.4373784,37.2461454,39.3024474,46.6183336,39.9849944,32.6565319],[-79.14515209999999,-106.6270349,-75.915868,-67.1355075,-149.57897,-79.40356709999999,-73.78822269999999,-105.8597721,-101.8680283,-84.39734609999999,-97.73903919999999,-76.616563,-97.46442,-86.7899669,-104.8490165,-119.0112192,-116.2875233,-71.20881349999999,-84.24984950000001,-71.0520267,-80.7815428,-98.1249164,-87.8659385,-101.5140425,-78.8769453,-111.8361612,-105.5124533,-78.8769453,-64.9265683,-80.01401620000001,-104.5043043,-87.6309402,-80.0199001,-73.4558729,-76.25162329999999,-104.8198764,-107.907649,-84.380236,-73.1909642,-81.69177239999999,-83.0021146,-80.83722440000001,-78.2023932,-85.29861769999999,-81.0401775,-111.6414322,-91.6691514,-97.54361230000001,-104.8172348,-106.3242133,-70.28180789999999,-78.116604,-96.8720089,-104.8449885,-83.05871789999999,-100.8988898,-80.221052,-93.62360080000001,-107.874248,-75.4882617,-106.2910235,-86.01235659999999,-123.0885813,-84.54567059999999,-94.178449,-122.5553748,-81.2560651,-85.1414741,-81.8109453,-104.9849103,-119.7856018,-97.2220938,-108.5858668,-97.0353236,-85.67052609999999,-82.24697139999999,-107.3582581,-83.81264209999999,-72.6734969,-78.8495901,-111.9724396,-81.43660779999999,-97.714091,-95.40658999999999,-112.0339375,-115.5793027,-86.15315729999999,-111.8375752,-90.05970979999999,-81.5900041,-97.081435,-97.91529800000001,-100.4178839,-84.07938129999999,-80.48913,-80.35093879999999,-75.6483277,-106.7626739,-101.8450548,-82.6408105,-118.2397435,-77.5446307,-85.76081689999999,-92.2249691,-99.447934,-101.8436702,-115.1435135,-82.53996289999999,-71.46629639999999,-82.1748855,-100.459986,-98.1982091,-97.13360040000001,-122.8772236,-89.88122030000001,-80.33946019999999,-102.0750416,-87.9080261,-102.0750416,-74.9576161,-88.041554,-81.75143799999999,-74.3726886,-95.4425066,-81.63114589999999,-73.553505,-74.1110231,-74.17423119999999,-90.2854711,-76.22287609999999,-78.14507759999999,-86.7865862,-78.1438831,-74.00375459999999,-92.65038920000001,-112.0191482,-97.59751919999999,-92.28482,-95.8987599,-81.3331197,-81.3516291,-80.0924474,-103.5214509,-75.15313019999999,-112.0731981,-79.96081099999999,-75.0724974,-104.9522605,-70.3604263,-122.67631,-97.19690233999999,-71.4411413,-111.6597178,-105.1156314,-81.6627436,-77.4799665,-77.42241709999999,-77.43404769999999,-78.77960730000001,-122.3626062,-97.35055610000001,-119.2763319,-90.58090900000001,-80.06114029999999,-101.8680283,-78.8709058,-103.2667352,-104.5248121,-117.8749858,-121.4999684,-100.4638024,-66.1074296,-75.571609,-82.52978929999999,-82.52978929999999,-117.2972977,-90.5794301,-122.2914497,-96.7233919,-122.401521,-113.5534693,-66.00470300000001,-111.9461895,-111.9157703,-120.444791,-98.4366327,-93.1678639,-93.1948264,-117.4181833,-73.0734028,-90.5020311,-99.1187908,-81.3387994,-121.2900671,-90.2003828,-80.40997569999999,-80.221999,-76.1516563,-84.35514119999999,-82.37207239999999,-114.4338469,-94.97105120000001,-110.9248046,-95.86430900000001,-94.0431833,-96.6825699,-98.2702257,-99.78100379999999,-119.0772538,-76.06142989999999,-74.00556619999999,-93.74924059999999,-94.1772012,-77.45867679999999,-97.1334651,-120.5593593,-84.75783799999999,-77.0718055,-77.96108959999999,-80.1760426,-78.6470052,-120.5593593,-76.7579657,-114.6117867],[3.517548293853426,5.031153594430064,3.873880427734766,6.415406260076995,3.292842409680663,8.165667020627096,4.637816932036074,3.292842409680663,6.165327370186521,10.38481895626389,7.677246508110837,12.5137666987556,3.873880427734766,6.034024192291445,4.024766226031234,6.354330433636489,8.772632346295335,11.34683015413715,5.207986073303222,3.292842409680663,4.163520037601186,8.655872936712592,15.05794645977216,3.706984117089074,4.024766226031234,4.413968234178148,4.2926689364504,4.637816932036074,3.706984117089074,3.873880427734766,4.742080704795927,5.292495463220137,8.849316867169863,4.52869596247557,3.706984117089074,4.938308226949113,4.413968234178148,3.292842409680663,6.475590324994129,3.292842409680663,3.517548293853426,10.80623199454298,3.292842409680663,5.031153594430064,4.2926689364504,4.413968234178148,4.742080704795927,4.2926689364504,4.413968234178148,3.292842409680663,7.992904058836322,3.292842409680663,12.61110937962117,5.53282411460313,4.52869596247557,4.842083368014219,4.637816932036074,3.292842409680663,3.517548293853426,4.2926689364504,3.517548293853426,4.024766226031234,4.163520037601186,4.52869596247557,3.292842409680663,4.024766226031234,4.52869596247557,5.454744972558607,6.53492058544537,4.024766226031234,5.609065327650372,5.207986073303222,3.706984117089074,3.873880427734766,4.842083368014219,4.024766226031234,3.706984117089074,3.517548293853426,4.637816932036074,4.413968234178148,3.706984117089074,3.292842409680663,8.616474062206287,8.811087381013603,4.024766226031234,7.859814387671583,10.71770394466745,22,5.374688203990527,7.814738354277019,4.637816932036074,3.292842409680663,3.292842409680663,6.165327370186521,5.207986073303222,9.147481210762869,3.292842409680663,3.292842409680663,5.207986073303222,3.292842409680663,12.4892858233241,3.706984117089074,4.024766226031234,5.120952351267222,10.4769487151972,5.292495463220137,5.120952351267222,3.517548293853426,4.024766226031234,3.292842409680663,3.517548293853426,7.139854797643107,4.2926689364504,3.706984117089074,7.191145526680927,9.64021034856593,4.742080704795927,5.292495463220137,4.842083368014219,5.454744972558607,5.683592598128118,4.637816932036074,5.374688203990527,11.29145462383856,3.706984117089074,6.165327370186521,4.52869596247557,4.842083368014219,5.683592598128118,5.031153594430064,4.024766226031234,6.593432379856315,3.292842409680663,8.456360525070128,7.191145526680927,4.413968234178148,8.374723216744091,3.292842409680663,8.291975043529346,9.362857053801665,4.024766226031234,4.413968234178148,5.031153594430064,6.22933685512632,11.09489715804261,5.292495463220137,4.413968234178148,5.120952351267222,3.517548293853426,7.341892355219106,7.992904058836322,4.413968234178148,4.413968234178148,4.163520037601186,3.517548293853426,3.292842409680663,3.873880427734766,10.22889291502549,5.53282411460313,3.873880427734766,4.637816932036074,3.706984117089074,3.873880427734766,3.873880427734766,4.163520037601186,4.163520037601186,3.873880427734766,4.637816932036074,8.122956263695517,4.52869596247557,4.742080704795927,4.024766226031234,4.742080704795927,4.2926689364504,4.2926689364504,7.292148516759609,4.2926689364504,7.241904702534445,4.163520037601186,7.139854797643107,3.292842409680663,4.2926689364504,8.079930285395776,4.163520037601186,6.415406260076995,10.62823569479677,7.53615042246758,15.74430608636244,5.897941691748281,3.517548293853426,3.292842409680663,7.488266912271851,5.683592598128118,6.292321989989873,6.874796623658037,4.637816932036074,7.035609517382447,5.683592598128118,7.241904702534445,8.887324727514045,4.2926689364504,3.517548293853426,7.139854797643107,7.341892355219106,4.52869596247557,3.706984117089074,3.873880427734766,3.292842409680663,6.819923018524038,3.292842409680663,5.207986073303222,3.873880427734766,5.53282411460313,8.165667020627096,5.756516569151542,3.873880427734766,3.706984117089074,3.873880427734766,7.53615042246758,4.842083368014219,5.374688203990527,4.413968234178148,4.938308226949113,4.413968234178148],null,"Peak ≥ 2",{"interactive":true,"className":"","stroke":true,"color":"black","weight":1,"opacity":0.5,"fill":true,"fillColor":["#A65628","#FF7F00","#377EB8","#FF7F00","#F781BF","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#E41A1C","#FF7F00","#FF7F00","#FF7F00","#A65628","#E41A1C","#A65628","#F781BF","#FF7F00","#FF7F00","#FF7F00","#F781BF","#A65628","#F781BF","#FF7F00","#F781BF","#A65628","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#F781BF","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#F781BF","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#F781BF","#FF7F00","#FF7F00","#FF7F00","#444444","#FF7F00","#FF7F00","#F781BF","#FF7F00","#FF7F00","#A65628","#F781BF","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#F781BF","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#F781BF","#377EB8","#A65628","#FF7F00","#FF7F00","#FF7F00","#F781BF","#FF7F00","#FF7F00","#A65628","#FF7F00","#F781BF","#FF7F00","#FF7F00","#FF7F00","#F781BF","#FF7F00","#A65628","#FF7F00","#F781BF","#A65628","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#F781BF","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#A65628","#FF7F00","#A65628","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#377EB8","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#FF7F00","#A65628","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#F781BF","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#F781BF","#F781BF","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#F781BF","#F781BF","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#A65628","#FF7F00","#F781BF","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#F781BF","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#A65628","#FF7F00","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#F781BF","#FF7F00","#FF7F00","#FF7F00","#F781BF","#F781BF","#A65628","#FF7F00","#A65628","#FF7F00","#FF7F00","#F781BF","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#F781BF","#F781BF","#A65628","#FF7F00","#FF7F00","#FF7F00"],"fillOpacity":0.7},null,null,["<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SW VIRGINIA REG JAIL AUTH-ABG FAC<\/b><br>510 Ninth Street<br>Lynchburg, VA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 3<\/b> (2026-01-05)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 47<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,57.9 7.1,57.9 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,57.9 59.5,57.9 60.6,59.0 61.6,59.0 62.6,57.9 63.6,57.9 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,57.9 73.9,57.9 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,57.9 97.6,25.2 98.6,6.0 99.6,6.0 100.7,6.0 101.7,15.0 102.7,15.0 103.8,15.0 104.8,36.4 105.8,36.4 106.8,36.4 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,57.9 122.3,57.9 123.3,59.0 124.3,59.0 125.3,57.9 126.4,56.7 127.4,57.9 128.4,57.9 129.5,59.0 130.5,59.0 131.5,56.7 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,57.9 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,57.9 152.1,57.9 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,56.7 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,56.7 196.3,56.7 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,57.9 202.5,56.7 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,57.9 221.0,57.9 222.0,59.0 223.0,59.0 224.1,59.0 225.1,57.9 226.1,59.0 227.2,59.0 228.2,55.6 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,57.9 236.4,57.9 237.4,56.7 238.5,56.7 239.5,59.0 240.5,59.0 241.6,59.0 242.6,57.9 243.6,56.7 244.6,57.9 245.7,57.9 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,57.9 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,56.7 274.5,56.7 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,57.9 283.7,57.9 284.7,59.0 285.8,59.0 286.8,59.0 287.8,57.9 288.9,57.9 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ALBUQUERQUE HOLD ROOM<\/b><br>1720 RANDOLPH ROAD<br>ALBUQUERQUE, NM<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 15<\/b> (2025-10-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 15<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,48.4 6.1,51.9 7.1,37.8 8.1,34.3 9.1,51.9 10.2,59.0 11.2,55.5 12.2,48.4 13.3,59.0 14.3,27.2 15.3,59.0 16.3,44.9 17.4,55.5 18.4,55.5 19.4,51.9 20.5,55.5 21.5,51.9 22.5,55.5 23.5,48.4 24.6,55.5 25.6,59.0 26.6,51.9 27.7,30.7 28.7,20.1 29.7,41.3 30.7,55.5 31.8,59.0 32.8,59.0 33.8,55.5 34.9,59.0 35.9,44.9 36.9,41.3 37.9,48.4 39.0,59.0 40.0,55.5 41.0,51.9 42.0,48.4 43.1,55.5 44.1,41.3 45.1,55.5 46.2,55.5 47.2,51.9 48.2,37.8 49.2,44.9 50.3,59.0 51.3,48.4 52.3,51.9 53.4,59.0 54.4,59.0 55.4,59.0 56.4,51.9 57.5,44.9 58.5,41.3 59.5,48.4 60.6,48.4 61.6,51.9 62.6,48.4 63.6,59.0 64.7,55.5 65.7,41.3 66.7,44.9 67.8,34.3 68.8,34.3 69.8,30.7 70.8,44.9 71.9,55.5 72.9,59.0 73.9,41.3 75.0,59.0 76.0,59.0 77.0,48.4 78.0,55.5 79.1,55.5 80.1,44.9 81.1,48.4 82.2,55.5 83.2,55.5 84.2,48.4 85.2,59.0 86.3,55.5 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,51.9 92.4,59.0 93.5,55.5 94.5,59.0 95.5,51.9 96.6,55.5 97.6,55.5 98.6,59.0 99.6,55.5 100.7,51.9 101.7,48.4 102.7,51.9 103.8,55.5 104.8,59.0 105.8,48.4 106.8,59.0 107.9,59.0 108.9,59.0 109.9,55.5 111.0,51.9 112.0,51.9 113.0,41.3 114.0,51.9 115.1,55.5 116.1,51.9 117.1,55.5 118.1,44.9 119.2,48.4 120.2,34.3 121.2,41.3 122.3,51.9 123.3,37.8 124.3,13.1 125.3,37.8 126.4,37.8 127.4,27.2 128.4,59.0 129.5,55.5 130.5,55.5 131.5,59.0 132.5,59.0 133.6,59.0 134.6,55.5 135.6,37.8 136.7,48.4 137.7,6.0 138.7,9.5 139.7,55.5 140.8,55.5 141.8,55.5 142.8,48.4 143.9,55.5 144.9,55.5 145.9,55.5 146.9,55.5 148.0,55.5 149.0,51.9 150.0,44.9 151.1,37.8 152.1,55.5 153.1,51.9 154.1,51.9 155.2,59.0 156.2,55.5 157.2,51.9 158.3,55.5 159.3,59.0 160.3,48.4 161.3,44.9 162.4,55.5 163.4,44.9 164.4,30.7 165.5,27.2 166.5,37.8 167.5,51.9 168.5,55.5 169.6,59.0 170.6,55.5 171.6,55.5 172.7,48.4 173.7,41.3 174.7,59.0 175.7,55.5 176.8,59.0 177.8,59.0 178.8,37.8 179.9,55.5 180.9,51.9 181.9,55.5 182.9,48.4 184.0,48.4 185.0,37.8 186.0,48.4 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,55.5 194.2,55.5 195.3,55.5 196.3,44.9 197.3,41.3 198.4,59.0 199.4,51.9 200.4,44.9 201.4,34.3 202.5,41.3 203.5,59.0 204.5,55.5 205.6,55.5 206.6,34.3 207.6,16.6 208.6,41.3 209.7,16.6 210.7,51.9 211.7,59.0 212.8,55.5 213.8,55.5 214.8,59.0 215.8,59.0 216.9,59.0 217.9,55.5 218.9,59.0 220.0,59.0 221.0,59.0 222.0,55.5 223.0,51.9 224.1,51.9 225.1,59.0 226.1,55.5 227.2,44.9 228.2,55.5 229.2,55.5 230.2,48.4 231.3,59.0 232.3,59.0 233.3,59.0 234.4,55.5 235.4,55.5 236.4,51.9 237.4,44.9 238.5,48.4 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,55.5 245.7,44.9 246.7,55.5 247.7,59.0 248.8,59.0 249.8,59.0 250.8,55.5 251.8,51.9 252.9,48.4 253.9,55.5 254.9,59.0 256.0,55.5 257.0,48.4 258.0,55.5 259.0,59.0 260.1,55.5 261.1,55.5 262.1,59.0 263.1,55.5 264.2,55.5 265.2,55.5 266.2,51.9 267.3,51.9 268.3,48.4 269.3,59.0 270.3,59.0 271.4,55.5 272.4,55.5 273.4,59.0 274.5,51.9 275.5,30.7 276.5,51.9 277.5,37.8 278.6,55.5 279.6,51.9 280.6,41.3 281.7,55.5 282.7,55.5 283.7,59.0 284.7,59.0 285.8,37.8 286.8,55.5 287.8,51.9 288.9,55.5 289.9,59.0 290.9,59.0 291.9,59.0 293.0,55.5 294.0,51.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ABRAXAS ACADEMY<\/b><br>1000 Academy Drive<br>Morgantown, PA<br><span style=\"color:#666;\">Type: Family/Youth<\/span><br><b>Peak during FY26: 5<\/b> (2026-02-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 5<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,48.4 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,16.6 251.8,16.6 252.9,16.6 253.9,16.6 254.9,16.6 256.0,6.0 257.0,6.0 258.0,6.0 259.0,6.0 260.1,6.0 261.1,6.0 262.1,6.0 263.1,6.0 264.2,6.0 265.2,6.0 266.2,6.0 267.3,6.0 268.3,6.0 269.3,6.0 270.3,6.0 271.4,6.0 272.4,6.0 273.4,6.0 274.5,6.0 275.5,6.0 276.5,6.0 277.5,6.0 278.6,6.0 279.6,6.0 280.6,6.0 281.7,6.0 282.7,6.0 283.7,6.0 284.7,6.0 285.8,6.0 286.8,6.0 287.8,6.0 288.9,6.0 289.9,6.0 290.9,16.6 291.9,16.6 293.0,16.6 294.0,16.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">AGUADILLA SPC<\/b><br>Maleza Baja, Aguadilla, Puerto Rico, Aguadilla 00604\rPuerto Rico<br>AGUADILLA, PR<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 34<\/b> (2026-01-21)&nbsp;&nbsp;<br><b>Mean:<\/b> 4/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 38<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,57.6 5.0,56.2 6.1,57.6 7.1,57.6 8.1,59.0 9.1,57.6 10.2,57.6 11.2,26.9 12.2,19.9 13.3,19.9 14.3,35.3 15.3,36.7 16.3,56.2 17.4,56.2 18.4,43.7 19.4,46.4 20.5,46.4 21.5,47.8 22.5,43.7 23.5,42.3 24.6,28.3 25.6,24.1 26.6,15.8 27.7,14.4 28.7,6.0 29.7,35.3 30.7,36.7 31.8,38.1 32.8,38.1 33.8,38.1 34.9,46.4 35.9,46.4 36.9,49.2 37.9,52.0 39.0,52.0 40.0,50.6 41.0,45.1 42.0,45.1 43.1,45.1 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,57.6 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,22.7 113.0,22.7 114.0,29.7 115.1,49.2 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,57.6 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,42.3 129.5,45.1 130.5,59.0 131.5,59.0 132.5,59.0 133.6,56.2 134.6,56.2 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,43.7 145.9,43.7 146.9,32.5 148.0,32.5 149.0,32.5 150.0,43.7 151.1,57.6 152.1,52.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,35.3 157.2,35.3 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,54.8 163.4,54.8 164.4,59.0 165.5,57.6 166.5,57.6 167.5,59.0 168.5,59.0 169.6,45.1 170.6,45.1 171.6,45.1 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,50.6 177.8,50.6 178.8,50.6 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,57.6 196.3,32.5 197.3,32.5 198.4,32.5 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,45.1 239.5,36.7 240.5,32.5 241.6,32.5 242.6,14.4 243.6,32.5 244.6,11.6 245.7,18.6 246.7,25.5 247.7,25.5 248.8,26.9 249.8,26.9 250.8,36.7 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,56.2 275.5,56.2 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,54.8 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,57.6 289.9,57.6 290.9,59.0 291.9,59.0 293.0,53.4 294.0,52.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HIGHLAND MTN COR CTR<\/b><br>9101 Hesterberg Road<br>Eagle River, AK<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 2<\/b> (2025-11-28)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,32.5 7.1,32.5 8.1,32.5 9.1,32.5 10.2,32.5 11.2,32.5 12.2,32.5 13.3,32.5 14.3,32.5 15.3,32.5 16.3,32.5 17.4,32.5 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,6.0 43.1,6.0 44.1,6.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,32.5 52.3,32.5 53.4,32.5 54.4,32.5 55.4,32.5 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,32.5 75.0,32.5 76.0,32.5 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,32.5 85.2,32.5 86.3,32.5 87.3,32.5 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,6.0 101.7,6.0 102.7,6.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,32.5 108.9,32.5 109.9,32.5 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,32.5 117.1,32.5 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,32.5 136.7,32.5 137.7,32.5 138.7,32.5 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,6.0 190.1,6.0 191.2,6.0 192.2,6.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ALAMANCE CO. DET. FACILITY<\/b><br>109 South Maple Street<br>Graham, NC<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 69<\/b> (2025-11-12)&nbsp;&nbsp;<br><b>Mean:<\/b> 14/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 79<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,46.9 5.0,39.5 6.1,31.5 7.1,14.1 8.1,30.8 9.1,12.0 10.2,34.2 11.2,48.9 12.2,37.5 13.3,31.5 14.3,10.7 15.3,28.1 16.3,6.0 17.4,30.2 18.4,33.5 19.4,16.7 20.5,29.5 21.5,24.1 22.5,35.5 23.5,31.5 24.6,44.2 25.6,41.6 26.6,33.5 27.7,34.8 28.7,32.2 29.7,32.2 30.7,24.8 31.8,32.8 32.8,42.2 33.8,40.9 34.9,33.5 35.9,18.7 36.9,26.8 37.9,25.5 39.0,36.2 40.0,36.9 41.0,28.8 42.0,36.9 43.1,17.4 44.1,30.8 45.1,21.4 46.2,32.2 47.2,36.2 48.2,28.1 49.2,28.8 50.3,25.5 51.3,20.8 52.3,23.4 53.4,29.5 54.4,35.5 55.4,30.2 56.4,31.5 57.5,18.7 58.5,30.2 59.5,27.5 60.6,32.8 61.6,36.2 62.6,29.5 63.6,30.2 64.7,19.4 65.7,33.5 66.7,27.5 67.8,32.2 68.8,41.6 69.8,28.1 70.8,33.5 71.9,18.7 72.9,34.2 73.9,22.1 75.0,39.5 76.0,46.3 77.0,38.9 78.0,36.9 79.1,31.5 80.1,38.9 81.1,33.5 82.2,30.8 83.2,42.9 84.2,33.5 85.2,30.2 86.3,32.2 87.3,34.2 88.3,16.7 89.4,28.8 90.4,38.9 91.4,32.8 92.4,34.2 93.5,28.8 94.5,30.2 95.5,20.8 96.6,30.2 97.6,36.2 98.6,36.2 99.6,34.8 100.7,26.1 101.7,31.5 102.7,17.4 103.8,32.8 104.8,45.6 105.8,34.8 106.8,32.2 107.9,22.1 108.9,24.8 109.9,20.1 111.0,26.1 112.0,51.6 113.0,38.2 114.0,37.5 115.1,32.8 116.1,36.2 117.1,21.4 118.1,40.9 119.2,51.6 120.2,43.6 121.2,40.9 122.3,26.1 123.3,34.2 124.3,12.0 125.3,32.8 126.4,40.2 127.4,35.5 128.4,36.2 129.5,18.7 130.5,32.2 131.5,17.4 132.5,35.5 133.6,53.0 134.6,43.6 135.6,32.8 136.7,24.1 137.7,35.5 138.7,26.1 139.7,40.2 140.8,50.9 141.8,45.6 142.8,43.6 143.9,36.9 144.9,36.2 145.9,21.4 146.9,37.5 148.0,54.3 149.0,46.9 150.0,45.6 151.1,36.9 152.1,34.2 153.1,34.8 154.1,40.2 155.2,35.5 156.2,32.8 157.2,30.2 158.3,23.4 159.3,26.8 160.3,22.8 161.3,30.2 162.4,46.9 163.4,33.5 164.4,22.8 165.5,28.1 166.5,35.5 167.5,20.8 168.5,34.8 169.6,41.6 170.6,25.5 171.6,35.5 172.7,12.7 173.7,16.7 174.7,17.4 175.7,43.6 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ALBANY HOLDROOM<\/b><br> 11 Old Stonebreak Road<br>Malta, NY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 11<\/b> (2025-10-27)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 16<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,49.1 6.1,42.4 7.1,45.8 8.1,39.1 9.1,55.7 10.2,55.7 11.2,52.4 12.2,55.7 13.3,52.4 14.3,45.8 15.3,55.7 16.3,55.7 17.4,52.4 18.4,59.0 19.4,55.7 20.5,59.0 21.5,49.1 22.5,59.0 23.5,52.4 24.6,59.0 25.6,59.0 26.6,19.2 27.7,55.7 28.7,45.8 29.7,59.0 30.7,39.1 31.8,55.7 32.8,59.0 33.8,39.1 34.9,52.4 35.9,59.0 36.9,55.7 37.9,59.0 39.0,59.0 40.0,59.0 41.0,39.1 42.0,52.4 43.1,52.4 44.1,59.0 45.1,55.7 46.2,59.0 47.2,59.0 48.2,42.4 49.2,6.0 50.3,59.0 51.3,55.7 52.3,39.1 53.4,59.0 54.4,59.0 55.4,59.0 56.4,55.7 57.5,59.0 58.5,52.4 59.5,59.0 60.6,55.7 61.6,59.0 62.6,39.1 63.6,55.7 64.7,59.0 65.7,49.1 66.7,55.7 67.8,59.0 68.8,59.0 69.8,49.1 70.8,55.7 71.9,55.7 72.9,49.1 73.9,59.0 75.0,55.7 76.0,55.7 77.0,29.2 78.0,52.4 79.1,49.1 80.1,55.7 81.1,59.0 82.2,59.0 83.2,59.0 84.2,49.1 85.2,52.4 86.3,49.1 87.3,12.6 88.3,59.0 89.4,52.4 90.4,59.0 91.4,45.8 92.4,45.8 93.5,59.0 94.5,32.5 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,32.5 100.7,52.4 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,52.4 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,52.4 114.0,59.0 115.1,59.0 116.1,59.0 117.1,55.7 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,52.4 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,55.7 139.7,59.0 140.8,59.0 141.8,49.1 142.8,59.0 143.9,52.4 144.9,59.0 145.9,49.1 146.9,59.0 148.0,59.0 149.0,49.1 150.0,59.0 151.1,55.7 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,22.6 157.2,59.0 158.3,59.0 159.3,55.7 160.3,55.7 161.3,59.0 162.4,59.0 163.4,55.7 164.4,49.1 165.5,42.4 166.5,42.4 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,52.4 173.7,59.0 174.7,55.7 175.7,55.7 176.8,59.0 177.8,45.8 178.8,52.4 179.9,45.8 180.9,49.1 181.9,45.8 182.9,59.0 184.0,59.0 185.0,55.7 186.0,59.0 187.0,55.7 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,42.4 193.2,52.4 194.2,52.4 195.3,59.0 196.3,45.8 197.3,59.0 198.4,59.0 199.4,59.0 200.4,39.1 201.4,59.0 202.5,55.7 203.5,55.7 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,49.1 216.9,59.0 217.9,52.4 218.9,59.0 220.0,59.0 221.0,52.4 222.0,55.7 223.0,59.0 224.1,55.7 225.1,55.7 226.1,59.0 227.2,59.0 228.2,52.4 229.2,49.1 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,42.4 236.4,59.0 237.4,52.4 238.5,49.1 239.5,59.0 240.5,59.0 241.6,59.0 242.6,52.4 243.6,59.0 244.6,59.0 245.7,59.0 246.7,55.7 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,45.8 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,55.7 258.0,55.7 259.0,42.4 260.1,22.6 261.1,55.7 262.1,59.0 263.1,55.7 264.2,59.0 265.2,59.0 266.2,52.4 267.3,59.0 268.3,55.7 269.3,59.0 270.3,59.0 271.4,55.7 272.4,59.0 273.4,52.4 274.5,55.7 275.5,59.0 276.5,59.0 277.5,49.1 278.6,55.7 279.6,59.0 280.6,59.0 281.7,59.0 282.7,45.8 283.7,59.0 284.7,59.0 285.8,55.7 286.8,55.7 287.8,55.7 288.9,55.7 289.9,45.8 290.9,59.0 291.9,59.0 293.0,52.4 294.0,55.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ALAMOSA HOLDROOM<\/b><br>1921 STATE STREET<br>ALAMOSA, CO<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 2<\/b> (2026-01-18)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 7<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,43.9 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,43.9 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,51.4 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,36.3 34.9,43.9 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,51.4 43.1,59.0 44.1,59.0 45.1,51.4 46.2,51.4 47.2,59.0 48.2,51.4 49.2,59.0 50.3,51.4 51.3,51.4 52.3,43.9 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,43.9 70.8,59.0 71.9,51.4 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,51.4 81.1,59.0 82.2,59.0 83.2,43.9 84.2,43.9 85.2,6.0 86.3,43.9 87.3,59.0 88.3,43.9 89.4,59.0 90.4,59.0 91.4,43.9 92.4,51.4 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,51.4 102.7,59.0 103.8,59.0 104.8,59.0 105.8,51.4 106.8,59.0 107.9,51.4 108.9,51.4 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,43.9 115.1,59.0 116.1,51.4 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,51.4 122.3,51.4 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,51.4 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,51.4 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,51.4 193.2,51.4 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,51.4 204.5,59.0 205.6,59.0 206.6,51.4 207.6,51.4 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,51.4 221.0,59.0 222.0,51.4 223.0,51.4 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,51.4 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,51.4 241.6,43.9 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">AMARILLO HOLD ROOM<\/b><br>9100 S Georgia St<br>Amarillo, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 30<\/b> (2025-11-11)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 30<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,57.2 6.1,51.9 7.1,50.2 8.1,57.2 9.1,48.4 10.2,57.2 11.2,59.0 12.2,51.9 13.3,32.5 14.3,55.5 15.3,50.2 16.3,57.2 17.4,53.7 18.4,59.0 19.4,59.0 20.5,44.9 21.5,53.7 22.5,57.2 23.5,59.0 24.6,46.6 25.6,59.0 26.6,57.2 27.7,50.2 28.7,50.2 29.7,48.4 30.7,51.9 31.8,55.5 32.8,59.0 33.8,53.7 34.9,51.9 35.9,50.2 36.9,57.2 37.9,53.7 39.0,59.0 40.0,59.0 41.0,59.0 42.0,51.9 43.1,59.0 44.1,50.2 45.1,48.4 46.2,59.0 47.2,59.0 48.2,55.5 49.2,50.2 50.3,46.6 51.3,55.5 52.3,59.0 53.4,57.2 54.4,59.0 55.4,59.0 56.4,51.9 57.5,51.9 58.5,50.2 59.5,57.2 60.6,59.0 61.6,55.5 62.6,59.0 63.6,46.6 64.7,51.9 65.7,51.9 66.7,57.2 67.8,55.5 68.8,59.0 69.8,59.0 70.8,53.7 71.9,53.7 72.9,50.2 73.9,51.9 75.0,59.0 76.0,59.0 77.0,57.2 78.0,46.6 79.1,53.7 80.1,48.4 81.1,50.2 82.2,55.5 83.2,59.0 84.2,51.9 85.2,50.2 86.3,59.0 87.3,44.9 88.3,51.9 89.4,55.5 90.4,59.0 91.4,59.0 92.4,51.9 93.5,41.3 94.5,44.9 95.5,53.7 96.6,53.7 97.6,59.0 98.6,55.5 99.6,57.2 100.7,29.0 101.7,44.9 102.7,53.7 103.8,57.2 104.8,59.0 105.8,51.9 106.8,50.2 107.9,59.0 108.9,44.9 109.9,51.9 111.0,55.5 112.0,59.0 113.0,55.5 114.0,55.5 115.1,59.0 116.1,50.2 117.1,57.2 118.1,51.9 119.2,59.0 120.2,53.7 121.2,41.3 122.3,59.0 123.3,43.1 124.3,48.4 125.3,57.2 126.4,57.2 127.4,53.7 128.4,53.7 129.5,50.2 130.5,59.0 131.5,50.2 132.5,59.0 133.6,59.0 134.6,57.2 135.6,53.7 136.7,55.5 137.7,55.5 138.7,53.7 139.7,57.2 140.8,59.0 141.8,55.5 142.8,59.0 143.9,53.7 144.9,57.2 145.9,53.7 146.9,48.4 148.0,55.5 149.0,53.7 150.0,48.4 151.1,53.7 152.1,50.2 153.1,48.4 154.1,57.2 155.2,59.0 156.2,59.0 157.2,53.7 158.3,55.5 159.3,53.7 160.3,53.7 161.3,59.0 162.4,57.2 163.4,55.5 164.4,51.9 165.5,53.7 166.5,57.2 167.5,51.9 168.5,55.5 169.6,59.0 170.6,53.7 171.6,6.0 172.7,44.9 173.7,57.2 174.7,51.9 175.7,55.5 176.8,59.0 177.8,53.7 178.8,55.5 179.9,50.2 180.9,46.6 181.9,21.9 182.9,53.7 184.0,57.2 185.0,55.5 186.0,55.5 187.0,53.7 188.1,59.0 189.1,55.5 190.1,53.7 191.2,59.0 192.2,57.2 193.2,55.5 194.2,46.6 195.3,59.0 196.3,48.4 197.3,43.1 198.4,50.2 199.4,48.4 200.4,53.7 201.4,51.9 202.5,50.2 203.5,55.5 204.5,59.0 205.6,57.2 206.6,53.7 207.6,51.9 208.6,59.0 209.7,48.4 210.7,51.9 211.7,50.2 212.8,59.0 213.8,39.6 214.8,53.7 215.8,51.9 216.9,59.0 217.9,50.2 218.9,55.5 220.0,59.0 221.0,51.9 222.0,50.2 223.0,51.9 224.1,48.4 225.1,51.9 226.1,59.0 227.2,59.0 228.2,48.4 229.2,46.6 230.2,51.9 231.3,57.2 232.3,53.7 233.3,53.7 234.4,59.0 235.4,48.4 236.4,48.4 237.4,55.5 238.5,57.2 239.5,51.9 240.5,46.6 241.6,59.0 242.6,46.6 243.6,55.5 244.6,55.5 245.7,41.3 246.7,57.2 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,46.6 252.9,57.2 253.9,53.7 254.9,59.0 256.0,59.0 257.0,44.9 258.0,46.6 259.0,48.4 260.1,55.5 261.1,50.2 262.1,51.9 263.1,55.5 264.2,48.4 265.2,50.2 266.2,48.4 267.3,50.2 268.3,50.2 269.3,50.2 270.3,59.0 271.4,50.2 272.4,53.7 273.4,50.2 274.5,43.1 275.5,41.3 276.5,53.7 277.5,59.0 278.6,46.6 279.6,34.3 280.6,48.4 281.7,39.6 282.7,48.4 283.7,55.5 284.7,59.0 285.8,53.7 286.8,51.9 287.8,55.5 288.9,43.1 289.9,48.4 290.9,55.5 291.9,59.0 293.0,51.9 294.0,51.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ATLANTA DIST. HOLD RM<\/b><br>180 Ted Turner Dr. SW, Suite 522<br>Atlanta, GA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 131<\/b> (2025-10-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 86/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 168<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,54.0 5.0,40.1 6.1,31.2 7.1,20.8 8.1,24.0 9.1,31.9 10.2,27.1 11.2,41.3 12.2,24.3 13.3,21.1 14.3,19.2 15.3,18.0 16.3,14.8 17.4,54.0 18.4,52.1 19.4,35.7 20.5,33.1 21.5,15.5 22.5,18.3 23.5,24.0 24.6,29.7 25.6,35.7 26.6,21.8 27.7,19.2 28.7,6.0 29.7,13.9 30.7,27.5 31.8,53.6 32.8,48.0 33.8,40.1 34.9,35.0 35.9,22.1 36.9,18.6 37.9,28.4 39.0,24.0 40.0,30.9 41.0,36.0 42.0,27.8 43.1,21.8 44.1,26.2 45.1,26.2 46.2,22.1 47.2,32.8 48.2,19.6 49.2,24.9 50.3,31.9 51.3,26.5 52.3,16.7 53.4,30.6 54.4,26.5 55.4,28.1 56.4,26.8 57.5,27.5 58.5,31.2 59.5,23.0 60.6,30.0 61.6,34.1 62.6,30.3 63.6,33.8 64.7,29.0 65.7,22.7 66.7,24.0 67.8,34.1 68.8,35.7 69.8,24.0 70.8,30.9 71.9,34.1 72.9,23.4 73.9,24.3 75.0,30.0 76.0,27.8 77.0,28.1 78.0,30.0 79.1,25.6 80.1,24.6 81.1,29.7 82.2,33.8 83.2,40.4 84.2,31.2 85.2,27.8 86.3,26.5 87.3,38.5 88.3,35.3 89.4,42.3 90.4,42.0 91.4,36.9 92.4,34.7 93.5,36.6 94.5,31.9 95.5,30.9 96.6,36.6 97.6,37.2 98.6,33.4 99.6,30.9 100.7,27.5 101.7,32.5 102.7,34.7 103.8,43.5 104.8,48.3 105.8,32.2 106.8,43.5 107.9,33.8 108.9,25.9 109.9,25.6 111.0,35.7 112.0,37.5 113.0,30.9 114.0,40.7 115.1,38.5 116.1,34.4 117.1,37.2 118.1,42.0 119.2,35.3 120.2,27.8 121.2,25.9 122.3,25.9 123.3,35.0 124.3,23.0 125.3,34.4 126.4,38.8 127.4,23.4 128.4,27.5 129.5,25.2 130.5,27.1 131.5,17.7 132.5,30.3 133.6,30.9 134.6,23.7 135.6,26.5 136.7,22.4 137.7,28.4 138.7,20.5 139.7,25.6 140.8,30.0 141.8,34.4 142.8,30.0 143.9,23.4 144.9,27.5 145.9,34.4 146.9,38.2 148.0,34.4 149.0,23.4 150.0,31.2 151.1,26.5 152.1,25.2 153.1,30.0 154.1,31.9 155.2,33.1 156.2,37.2 157.2,38.2 158.3,30.6 159.3,28.4 160.3,22.1 161.3,33.4 162.4,36.6 163.4,29.0 164.4,24.0 165.5,32.5 166.5,27.5 167.5,26.2 168.5,35.0 169.6,23.4 170.6,32.5 171.6,38.5 172.7,29.0 173.7,33.1 174.7,29.7 175.7,31.9 176.8,36.3 177.8,24.3 178.8,23.0 179.9,28.1 180.9,32.2 181.9,24.3 182.9,24.9 184.0,44.5 185.0,27.5 186.0,32.2 187.0,24.9 188.1,38.2 189.1,35.7 190.1,38.8 191.2,36.0 192.2,26.5 193.2,24.6 194.2,32.5 195.3,22.1 196.3,35.7 197.3,34.7 198.4,36.9 199.4,21.5 200.4,32.2 201.4,30.6 202.5,19.9 203.5,25.9 204.5,22.7 205.6,34.4 206.6,21.1 207.6,30.0 208.6,30.3 209.7,33.8 210.7,26.8 211.7,36.3 212.8,41.6 213.8,51.4 214.8,40.4 215.8,32.8 216.9,52.4 217.9,42.6 218.9,45.4 220.0,41.6 221.0,20.8 222.0,25.9 223.0,40.1 224.1,41.6 225.1,25.9 226.1,32.8 227.2,30.6 228.2,19.2 229.2,25.9 230.2,37.9 231.3,25.9 232.3,22.4 233.3,31.2 234.4,36.9 235.4,33.4 236.4,24.9 237.4,28.1 238.5,32.8 239.5,30.6 240.5,35.3 241.6,33.8 242.6,33.4 243.6,32.5 244.6,29.3 245.7,34.1 246.7,33.8 247.7,46.4 248.8,58.7 249.8,52.7 250.8,44.2 251.8,39.1 252.9,34.1 253.9,28.1 254.9,47.6 256.0,53.3 257.0,30.9 258.0,37.2 259.0,32.8 260.1,36.0 261.1,39.1 262.1,44.2 263.1,36.6 264.2,43.2 265.2,38.2 266.2,28.7 267.3,37.5 268.3,32.5 269.3,40.7 270.3,40.4 271.4,39.4 272.4,24.0 273.4,27.1 274.5,35.7 275.5,34.7 276.5,39.1 277.5,33.4 278.6,30.0 279.6,26.5 280.6,32.8 281.7,29.0 282.7,25.2 283.7,38.8 284.7,33.8 285.8,33.4 286.8,31.9 287.8,24.6 288.9,29.3 289.9,27.5 290.9,33.8 291.9,31.6 293.0,16.7 294.0,26.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">AUSTIN DRO HOLD ROOM<\/b><br>300 EAST 8TH STREET<br>AUSTIN, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 58<\/b> (2025-11-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 22/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 58<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,42.6 5.0,34.3 6.1,34.3 7.1,41.6 8.1,30.7 9.1,29.8 10.2,41.6 11.2,37.1 12.2,48.0 13.3,42.6 14.3,39.8 15.3,38.9 16.3,20.6 17.4,55.3 18.4,42.6 19.4,43.5 20.5,44.4 21.5,42.6 22.5,33.4 23.5,45.3 24.6,47.1 25.6,51.7 26.6,48.9 27.7,41.6 28.7,34.3 29.7,34.3 30.7,40.7 31.8,45.3 32.8,42.6 33.8,43.5 34.9,38.0 35.9,27.0 36.9,27.9 37.9,57.2 39.0,36.2 40.0,55.3 41.0,48.0 42.0,46.2 43.1,46.2 44.1,28.8 45.1,40.7 46.2,45.3 47.2,52.6 48.2,46.2 49.2,47.1 50.3,39.8 51.3,44.4 52.3,39.8 53.4,41.6 54.4,40.7 55.4,44.4 56.4,42.6 57.5,34.3 58.5,32.5 59.5,35.2 60.6,42.6 61.6,47.1 62.6,48.9 63.6,35.2 64.7,33.4 65.7,40.7 66.7,26.1 67.8,42.6 68.8,51.7 69.8,39.8 70.8,44.4 71.9,38.9 72.9,41.6 73.9,34.3 75.0,53.5 76.0,41.6 77.0,37.1 78.0,34.3 79.1,29.8 80.1,32.5 81.1,38.9 82.2,39.8 83.2,45.3 84.2,42.6 85.2,37.1 86.3,29.8 87.3,29.8 88.3,36.2 89.4,44.4 90.4,54.4 91.4,42.6 92.4,39.8 93.5,38.9 94.5,36.2 95.5,37.1 96.6,45.3 97.6,50.8 98.6,51.7 99.6,39.8 100.7,40.7 101.7,41.6 102.7,42.6 103.8,54.4 104.8,54.4 105.8,45.3 106.8,34.3 107.9,38.0 108.9,35.2 109.9,27.0 111.0,30.7 112.0,44.4 113.0,36.2 114.0,27.9 115.1,16.1 116.1,20.6 117.1,23.4 118.1,43.5 119.2,48.0 120.2,37.1 121.2,31.6 122.3,27.0 123.3,14.2 124.3,41.6 125.3,42.6 126.4,35.2 127.4,32.5 128.4,47.1 129.5,31.6 130.5,41.6 131.5,40.7 132.5,38.9 133.6,42.6 134.6,51.7 135.6,43.5 136.7,41.6 137.7,36.2 138.7,45.3 139.7,42.6 140.8,48.9 141.8,48.9 142.8,47.1 143.9,35.2 144.9,43.5 145.9,25.2 146.9,58.1 148.0,50.8 149.0,51.7 150.0,37.1 151.1,25.2 152.1,37.1 153.1,45.3 154.1,41.6 155.2,56.3 156.2,52.6 157.2,39.8 158.3,37.1 159.3,43.5 160.3,47.1 161.3,34.3 162.4,29.8 163.4,52.6 164.4,43.5 165.5,37.1 166.5,38.0 167.5,44.4 168.5,48.9 169.6,37.1 170.6,46.2 171.6,32.5 172.7,38.0 173.7,28.8 174.7,27.9 175.7,45.3 176.8,6.0 177.8,11.5 178.8,33.4 179.9,52.6 180.9,35.2 181.9,36.2 182.9,44.4 184.0,45.3 185.0,48.9 186.0,47.1 187.0,29.8 188.1,59.0 189.1,42.6 190.1,50.8 191.2,55.3 192.2,47.1 193.2,30.7 194.2,41.6 195.3,35.2 196.3,29.8 197.3,37.1 198.4,55.3 199.4,35.2 200.4,40.7 201.4,44.4 202.5,28.8 203.5,11.5 204.5,34.3 205.6,56.3 206.6,48.9 207.6,45.3 208.6,44.4 209.7,31.6 210.7,41.6 211.7,49.9 212.8,55.3 213.8,40.7 214.8,37.1 215.8,34.3 216.9,44.4 217.9,34.3 218.9,35.2 220.0,50.8 221.0,26.1 222.0,27.9 223.0,37.1 224.1,37.1 225.1,41.6 226.1,49.9 227.2,49.9 228.2,35.2 229.2,20.6 230.2,17.0 231.3,17.0 232.3,39.8 233.3,37.1 234.4,48.0 235.4,21.5 236.4,20.6 237.4,18.8 238.5,6.0 239.5,27.9 240.5,27.9 241.6,48.0 242.6,31.6 243.6,37.1 244.6,34.3 245.7,30.7 246.7,39.8 247.7,36.2 248.8,53.5 249.8,52.6 250.8,44.4 251.8,40.7 252.9,30.7 253.9,40.7 254.9,29.8 256.0,32.5 257.0,34.3 258.0,27.0 259.0,21.5 260.1,26.1 261.1,37.1 262.1,48.9 263.1,55.3 264.2,48.0 265.2,47.1 266.2,36.2 267.3,36.2 268.3,40.7 269.3,42.6 270.3,52.6 271.4,40.7 272.4,38.0 273.4,34.3 274.5,36.2 275.5,36.2 276.5,37.1 277.5,48.9 278.6,46.2 279.6,46.2 280.6,45.3 281.7,48.0 282.7,22.4 283.7,44.4 284.7,53.5 285.8,43.5 286.8,39.8 287.8,37.1 288.9,40.7 289.9,40.7 290.9,42.6 291.9,52.6 293.0,44.4 294.0,36.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BALTIMORE HOLD ROOM<\/b><br>31 Hopkins Plaza, 6th Floor<br>Baltimore, MD<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 209<\/b> (2026-01-23)&nbsp;&nbsp;<br><b>Mean:<\/b> 96/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 209<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,45.3 5.0,44.8 6.1,39.7 7.1,33.1 8.1,29.3 9.1,45.6 10.2,42.3 11.2,36.4 12.2,39.5 13.3,37.2 14.3,31.9 15.3,32.4 16.3,28.6 17.4,38.2 18.4,38.5 19.4,42.3 20.5,38.2 21.5,42.5 22.5,43.0 23.5,47.1 24.6,45.3 25.6,48.1 26.6,51.1 27.7,47.6 28.7,43.8 29.7,40.5 30.7,44.8 31.8,39.5 32.8,47.3 33.8,45.3 34.9,40.7 35.9,45.8 36.9,46.3 37.9,46.6 39.0,48.3 40.0,51.9 41.0,47.8 42.0,48.9 43.1,42.0 44.1,44.0 45.1,43.5 46.2,45.1 47.2,44.3 48.2,41.2 49.2,45.3 50.3,47.8 51.3,47.1 52.3,46.6 53.4,48.9 54.4,52.4 55.4,50.1 56.4,48.6 57.5,48.3 58.5,42.5 59.5,46.3 60.6,43.8 61.6,47.3 62.6,44.5 63.6,41.0 64.7,43.8 65.7,44.8 66.7,42.0 67.8,42.5 68.8,50.4 69.8,49.9 70.8,40.0 71.9,31.1 72.9,32.9 73.9,41.2 75.0,44.8 76.0,44.3 77.0,52.2 78.0,50.6 79.1,56.0 80.1,56.7 81.1,53.9 82.2,54.7 83.2,54.7 84.2,57.7 85.2,56.2 86.3,53.9 87.3,52.4 88.3,53.2 89.4,54.2 90.4,53.9 91.4,52.9 92.4,51.9 93.5,49.6 94.5,51.6 95.5,50.6 96.6,53.7 97.6,54.7 98.6,51.1 99.6,48.1 100.7,45.3 101.7,47.1 102.7,50.1 103.8,45.6 104.8,45.1 105.8,45.8 106.8,41.0 107.9,44.5 108.9,41.2 109.9,42.5 111.0,44.8 112.0,47.6 113.0,49.1 114.0,46.6 115.1,47.6 116.1,44.5 117.1,46.6 118.1,49.1 119.2,46.3 120.2,46.8 121.2,41.5 122.3,42.5 123.3,36.9 124.3,38.7 125.3,40.5 126.4,42.8 127.4,47.3 128.4,43.3 129.5,46.6 130.5,48.6 131.5,47.1 132.5,47.3 133.6,43.8 134.6,46.1 135.6,43.8 136.7,45.8 137.7,42.5 138.7,45.3 139.7,50.4 140.8,48.3 141.8,52.2 142.8,50.4 143.9,48.3 144.9,45.3 145.9,50.9 146.9,48.3 148.0,47.6 149.0,50.9 150.0,47.1 151.1,44.5 152.1,42.0 153.1,46.6 154.1,39.5 155.2,35.9 156.2,39.2 157.2,45.3 158.3,47.3 159.3,42.8 160.3,44.5 161.3,39.7 162.4,35.7 163.4,43.0 164.4,44.0 165.5,38.7 166.5,34.1 167.5,37.2 168.5,33.6 169.6,34.7 170.6,43.8 171.6,39.0 172.7,37.7 173.7,33.4 174.7,44.0 175.7,38.7 176.8,37.7 177.8,42.5 178.8,46.8 179.9,47.6 180.9,42.3 181.9,42.8 182.9,35.4 184.0,35.2 185.0,44.0 186.0,38.2 187.0,32.1 188.1,36.7 189.1,43.3 190.1,39.0 191.2,39.0 192.2,34.7 193.2,32.6 194.2,26.5 195.3,28.3 196.3,40.7 197.3,37.7 198.4,32.9 199.4,31.4 200.4,35.9 201.4,32.4 202.5,26.0 203.5,27.6 204.5,29.3 205.6,25.8 206.6,24.8 207.6,33.1 208.6,28.1 209.7,32.1 210.7,32.6 211.7,31.4 212.8,31.4 213.8,35.4 214.8,30.6 215.8,39.0 216.9,38.0 217.9,32.1 218.9,32.6 220.0,34.9 221.0,45.3 222.0,45.1 223.0,42.5 224.1,40.7 225.1,41.2 226.1,35.7 227.2,41.2 228.2,38.5 229.2,33.4 230.2,26.8 231.3,34.4 232.3,28.6 233.3,25.3 234.4,23.5 235.4,22.7 236.4,25.3 237.4,17.9 238.5,17.9 239.5,9.6 240.5,14.4 241.6,10.6 242.6,14.4 243.6,22.7 244.6,20.7 245.7,12.6 246.7,6.0 247.7,22.0 248.8,24.8 249.8,24.8 250.8,24.8 251.8,24.0 252.9,24.3 253.9,10.1 254.9,15.9 256.0,15.1 257.0,14.1 258.0,11.1 259.0,7.8 260.1,12.6 261.1,18.9 262.1,28.8 263.1,31.1 264.2,44.5 265.2,35.2 266.2,24.8 267.3,18.7 268.3,15.9 269.3,11.1 270.3,23.0 271.4,15.1 272.4,9.3 273.4,28.3 274.5,21.7 275.5,21.5 276.5,20.2 277.5,25.8 278.6,25.3 279.6,16.1 280.6,21.5 281.7,16.7 282.7,17.2 283.7,11.3 284.7,21.7 285.8,13.4 286.8,7.3 287.8,21.7 288.9,23.8 289.9,28.1 290.9,28.3 291.9,31.4 293.0,58.5 294.0,58.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BELL COUNTY JAIL<\/b><br>111 W. Central<br>Belton, TX<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 5<\/b> (2025-10-31)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 6<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,14.8 10.2,14.8 11.2,50.2 12.2,50.2 13.3,41.3 14.3,41.3 15.3,59.0 16.3,59.0 17.4,50.2 18.4,50.2 19.4,50.2 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,50.2 35.9,50.2 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,50.2 42.0,41.3 43.1,41.3 44.1,50.2 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,50.2 50.3,50.2 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,50.2 60.6,50.2 61.6,41.3 62.6,41.3 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,50.2 71.9,41.3 72.9,50.2 73.9,50.2 75.0,50.2 76.0,50.2 77.0,50.2 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,14.8 88.3,14.8 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,50.2 107.9,41.3 108.9,50.2 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,50.2 116.1,50.2 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,14.8 128.4,14.8 129.5,59.0 130.5,50.2 131.5,41.3 132.5,50.2 133.6,50.2 134.6,41.3 135.6,50.2 136.7,50.2 137.7,50.2 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,50.2 145.9,50.2 146.9,59.0 148.0,32.5 149.0,32.5 150.0,41.3 151.1,41.3 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,23.7 160.3,14.8 161.3,32.5 162.4,32.5 163.4,23.7 164.4,32.5 165.5,32.5 166.5,23.7 167.5,32.5 168.5,50.2 169.6,50.2 170.6,32.5 171.6,41.3 172.7,41.3 173.7,59.0 174.7,59.0 175.7,59.0 176.8,50.2 177.8,50.2 178.8,59.0 179.9,59.0 180.9,59.0 181.9,50.2 182.9,59.0 184.0,59.0 185.0,50.2 186.0,50.2 187.0,59.0 188.1,50.2 189.1,50.2 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,50.2 199.4,50.2 200.4,59.0 201.4,59.0 202.5,59.0 203.5,41.3 204.5,41.3 205.6,41.3 206.6,32.5 207.6,50.2 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,50.2 216.9,59.0 217.9,59.0 218.9,50.2 220.0,50.2 221.0,50.2 222.0,59.0 223.0,41.3 224.1,41.3 225.1,41.3 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,50.2 232.3,50.2 233.3,50.2 234.4,50.2 235.4,50.2 236.4,59.0 237.4,50.2 238.5,50.2 239.5,59.0 240.5,50.2 241.6,50.2 242.6,41.3 243.6,50.2 244.6,59.0 245.7,50.2 246.7,50.2 247.7,59.0 248.8,59.0 249.8,50.2 250.8,41.3 251.8,41.3 252.9,23.7 253.9,14.8 254.9,50.2 256.0,32.5 257.0,32.5 258.0,41.3 259.0,41.3 260.1,50.2 261.1,41.3 262.1,6.0 263.1,6.0 264.2,6.0 265.2,32.5 266.2,32.5 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,6.0 272.4,6.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,41.3 278.6,23.7 279.6,41.3 280.6,32.5 281.7,32.5 282.7,59.0 283.7,59.0 284.7,59.0 285.8,50.2 286.8,50.2 287.8,50.2 288.9,50.2 289.9,50.2 290.9,50.2 291.9,50.2 293.0,50.2 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BIRMINGHAM HOLD ROOM<\/b><br>1833 29th Ave S<br>HOMEWOOD, AL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 28<\/b> (2025-10-29)&nbsp;&nbsp;<br><b>Mean:<\/b> 6/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 28<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,53.3 28.7,59.0 29.7,42.0 30.7,53.3 31.8,55.2 32.8,53.3 33.8,51.4 34.9,51.4 35.9,53.3 36.9,57.1 37.9,51.4 39.0,51.4 40.0,51.4 41.0,53.3 42.0,47.6 43.1,49.5 44.1,53.3 45.1,53.3 46.2,57.1 47.2,57.1 48.2,57.1 49.2,49.5 50.3,53.3 51.3,53.3 52.3,45.8 53.4,55.2 54.4,53.3 55.4,47.6 56.4,36.3 57.5,32.5 58.5,43.9 59.5,47.6 60.6,57.1 61.6,55.2 62.6,42.0 63.6,55.2 64.7,51.4 65.7,43.9 66.7,51.4 67.8,55.2 68.8,57.1 69.8,53.3 70.8,47.6 71.9,49.5 72.9,53.3 73.9,53.3 75.0,57.1 76.0,57.1 77.0,45.8 78.0,53.3 79.1,45.8 80.1,49.5 81.1,49.5 82.2,59.0 83.2,59.0 84.2,51.4 85.2,53.3 86.3,47.6 87.3,53.3 88.3,51.4 89.4,57.1 90.4,57.1 91.4,51.4 92.4,43.9 93.5,49.5 94.5,53.3 95.5,45.8 96.6,55.2 97.6,57.1 98.6,55.2 99.6,45.8 100.7,55.2 101.7,42.0 102.7,45.8 103.8,55.2 104.8,55.2 105.8,51.4 106.8,30.6 107.9,24.9 108.9,40.1 109.9,49.5 111.0,55.2 112.0,53.3 113.0,57.1 114.0,53.3 115.1,49.5 116.1,49.5 117.1,43.9 118.1,51.4 119.2,55.2 120.2,40.1 121.2,43.9 122.3,49.5 123.3,36.3 124.3,49.5 125.3,51.4 126.4,55.2 127.4,51.4 128.4,43.9 129.5,47.6 130.5,51.4 131.5,45.8 132.5,59.0 133.6,55.2 134.6,53.3 135.6,43.9 136.7,45.8 137.7,55.2 138.7,45.8 139.7,57.1 140.8,55.2 141.8,53.3 142.8,51.4 143.9,57.1 144.9,45.8 145.9,45.8 146.9,55.2 148.0,59.0 149.0,51.4 150.0,45.8 151.1,40.1 152.1,42.0 153.1,38.2 154.1,55.2 155.2,43.9 156.2,36.3 157.2,21.1 158.3,6.0 159.3,42.0 160.3,43.9 161.3,59.0 162.4,47.6 163.4,51.4 164.4,51.4 165.5,30.6 166.5,34.4 167.5,32.5 168.5,55.2 169.6,45.8 170.6,34.4 171.6,42.0 172.7,47.6 173.7,53.3 174.7,17.4 175.7,59.0 176.8,36.3 177.8,38.2 178.8,38.2 179.9,34.4 180.9,55.2 181.9,47.6 182.9,49.5 184.0,55.2 185.0,57.1 186.0,59.0 187.0,49.5 188.1,57.1 189.1,47.6 190.1,55.2 191.2,53.3 192.2,45.8 193.2,47.6 194.2,47.6 195.3,51.4 196.3,43.9 197.3,55.2 198.4,55.2 199.4,51.4 200.4,40.1 201.4,49.5 202.5,42.0 203.5,55.2 204.5,55.2 205.6,51.4 206.6,53.3 207.6,47.6 208.6,49.5 209.7,53.3 210.7,34.4 211.7,53.3 212.8,51.4 213.8,51.4 214.8,40.1 215.8,45.8 216.9,51.4 217.9,59.0 218.9,53.3 220.0,59.0 221.0,49.5 222.0,43.9 223.0,53.3 224.1,59.0 225.1,53.3 226.1,51.4 227.2,55.2 228.2,57.1 229.2,47.6 230.2,49.5 231.3,53.3 232.3,47.6 233.3,47.6 234.4,47.6 235.4,49.5 236.4,42.0 237.4,38.2 238.5,40.1 239.5,49.5 240.5,51.4 241.6,51.4 242.6,57.1 243.6,47.6 244.6,45.8 245.7,43.9 246.7,36.3 247.7,38.2 248.8,47.6 249.8,45.8 250.8,40.1 251.8,42.0 252.9,53.3 253.9,47.6 254.9,53.3 256.0,49.5 257.0,51.4 258.0,36.3 259.0,43.9 260.1,40.1 261.1,47.6 262.1,53.3 263.1,51.4 264.2,49.5 265.2,51.4 266.2,42.0 267.3,32.5 268.3,49.5 269.3,49.5 270.3,45.8 271.4,49.5 272.4,45.8 273.4,36.3 274.5,28.7 275.5,47.6 276.5,55.2 277.5,53.3 278.6,51.4 279.6,36.3 280.6,43.9 281.7,42.0 282.7,49.5 283.7,55.2 284.7,53.3 285.8,55.2 286.8,28.7 287.8,38.2 288.9,42.0 289.9,53.3 290.9,49.5 291.9,53.3 293.0,42.0 294.0,40.1\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BI INCORORATED, GEO GROUP COMPANY<\/b><br>3130 North Oakland Street<br>Aurora, CO<br><span style=\"color:#666;\">Type: Dedicated<\/span><br><b>Peak during FY26: 6<\/b> (2025-12-12)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 6<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,23.7 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,32.5 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,50.2 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,41.3 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,50.2 128.4,50.2 129.5,23.7 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,41.3 152.1,59.0 153.1,50.2 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,50.2 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,50.2 196.3,59.0 197.3,50.2 198.4,50.2 199.4,59.0 200.4,59.0 201.4,50.2 202.5,59.0 203.5,6.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,50.2 208.6,50.2 209.7,41.3 210.7,50.2 211.7,59.0 212.8,50.2 213.8,50.2 214.8,59.0 215.8,50.2 216.9,59.0 217.9,23.7 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,50.2 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,50.2 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,41.3 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,50.2 263.1,50.2 264.2,50.2 265.2,59.0 266.2,59.0 267.3,50.2 268.3,59.0 269.3,50.2 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,50.2 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BAKERFIELD HOLD<\/b><br>800 TRUXTUN<br>BAKERSFIELD, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 33<\/b> (2025-10-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 12/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 57<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,56.2 6.1,43.2 7.1,49.7 8.1,43.2 9.1,24.6 10.2,56.2 11.2,59.0 12.2,55.3 13.3,42.3 14.3,52.5 15.3,51.6 16.3,42.3 17.4,50.6 18.4,54.4 19.4,53.4 20.5,26.5 21.5,55.3 22.5,42.3 23.5,49.7 24.6,59.0 25.6,59.0 26.6,52.5 27.7,34.8 28.7,49.7 29.7,54.4 30.7,57.1 31.8,59.0 32.8,42.3 33.8,42.3 34.9,46.9 35.9,52.5 36.9,40.4 37.9,58.1 39.0,58.1 40.0,58.1 41.0,48.8 42.0,49.7 43.1,50.6 44.1,55.3 45.1,56.2 46.2,46.9 47.2,59.0 48.2,54.4 49.2,44.1 50.3,51.6 51.3,48.8 52.3,55.3 53.4,59.0 54.4,59.0 55.4,55.3 56.4,50.6 57.5,48.8 58.5,49.7 59.5,56.2 60.6,53.4 61.6,58.1 62.6,52.5 63.6,46.9 64.7,55.3 65.7,47.8 66.7,49.7 67.8,55.3 68.8,59.0 69.8,59.0 70.8,51.6 71.9,43.2 72.9,45.1 73.9,34.8 75.0,43.2 76.0,59.0 77.0,56.2 78.0,49.7 79.1,54.4 80.1,49.7 81.1,44.1 82.2,44.1 83.2,55.3 84.2,49.7 85.2,40.4 86.3,53.4 87.3,44.1 88.3,57.1 89.4,46.9 90.4,59.0 91.4,55.3 92.4,43.2 93.5,50.6 94.5,44.1 95.5,47.8 96.6,47.8 97.6,59.0 98.6,58.1 99.6,53.4 100.7,52.5 101.7,37.6 102.7,42.3 103.8,51.6 104.8,58.1 105.8,55.3 106.8,46.0 107.9,50.6 108.9,46.9 109.9,41.3 111.0,52.5 112.0,59.0 113.0,54.4 114.0,46.0 115.1,48.8 116.1,47.8 117.1,46.0 118.1,47.8 119.2,59.0 120.2,51.6 121.2,39.5 122.3,53.4 123.3,42.3 124.3,47.8 125.3,49.7 126.4,59.0 127.4,55.3 128.4,43.2 129.5,52.5 130.5,36.7 131.5,44.1 132.5,52.5 133.6,59.0 134.6,52.5 135.6,49.7 136.7,35.8 137.7,43.2 138.7,54.4 139.7,48.8 140.8,59.0 141.8,57.1 142.8,48.8 143.9,42.3 144.9,28.3 145.9,46.0 146.9,35.8 148.0,59.0 149.0,41.3 150.0,45.1 151.1,49.7 152.1,42.3 153.1,44.1 154.1,58.1 155.2,59.0 156.2,53.4 157.2,47.8 158.3,42.3 159.3,46.9 160.3,54.4 161.3,35.8 162.4,58.1 163.4,47.8 164.4,46.9 165.5,42.3 166.5,46.9 167.5,47.8 168.5,45.1 169.6,56.2 170.6,51.6 171.6,59.0 172.7,50.6 173.7,40.4 174.7,45.1 175.7,41.3 176.8,55.3 177.8,46.0 178.8,45.1 179.9,45.1 180.9,28.3 181.9,54.4 182.9,46.9 184.0,56.2 185.0,47.8 186.0,47.8 187.0,46.9 188.1,59.0 189.1,52.5 190.1,51.6 191.2,54.4 192.2,50.6 193.2,42.3 194.2,47.8 195.3,47.8 196.3,44.1 197.3,46.9 198.4,53.4 199.4,46.9 200.4,44.1 201.4,43.2 202.5,41.3 203.5,52.5 204.5,54.4 205.6,56.2 206.6,53.4 207.6,44.1 208.6,53.4 209.7,37.6 210.7,44.1 211.7,52.5 212.8,57.1 213.8,46.9 214.8,35.8 215.8,53.4 216.9,59.0 217.9,52.5 218.9,54.4 220.0,57.1 221.0,46.9 222.0,49.7 223.0,46.9 224.1,51.6 225.1,51.6 226.1,52.5 227.2,59.0 228.2,48.8 229.2,49.7 230.2,47.8 231.3,45.1 232.3,29.2 233.3,46.0 234.4,57.1 235.4,44.1 236.4,46.0 237.4,44.1 238.5,38.5 239.5,46.9 240.5,50.6 241.6,58.1 242.6,53.4 243.6,47.8 244.6,46.0 245.7,39.5 246.7,37.6 247.7,52.5 248.8,58.1 249.8,46.9 250.8,49.7 251.8,40.4 252.9,32.0 253.9,34.8 254.9,49.7 256.0,59.0 257.0,49.7 258.0,39.5 259.0,40.4 260.1,40.4 261.1,33.9 262.1,48.8 263.1,59.0 264.2,54.4 265.2,46.9 266.2,53.4 267.3,45.1 268.3,42.3 269.3,59.0 270.3,59.0 271.4,19.9 272.4,6.0 273.4,38.5 274.5,46.9 275.5,28.3 276.5,11.6 277.5,54.4 278.6,48.8 279.6,52.5 280.6,31.1 281.7,29.2 282.7,45.1 283.7,54.4 284.7,55.3 285.8,44.1 286.8,21.8 287.8,36.7 288.9,30.2 289.9,28.3 290.9,42.3 291.9,56.2 293.0,47.8 294.0,29.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BOISE HOLD ROOM<\/b><br>1185 S. VINNELL WAY<br>BOISE, ID<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 84<\/b> (2025-10-20)&nbsp;&nbsp;<br><b>Mean:<\/b> 4/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 84<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,58.4 5.0,57.1 6.1,57.1 7.1,54.0 8.1,59.0 9.1,58.4 10.2,58.4 11.2,57.7 12.2,58.4 13.3,58.4 14.3,57.1 15.3,57.1 16.3,57.7 17.4,57.1 18.4,59.0 19.4,59.0 20.5,59.0 21.5,55.8 22.5,57.1 23.5,58.4 24.6,59.0 25.6,59.0 26.6,59.0 27.7,58.4 28.7,58.4 29.7,59.0 30.7,59.0 31.8,58.4 32.8,59.0 33.8,59.0 34.9,56.5 35.9,56.5 36.9,59.0 37.9,58.4 39.0,59.0 40.0,59.0 41.0,58.4 42.0,58.4 43.1,57.7 44.1,57.1 45.1,58.4 46.2,58.4 47.2,59.0 48.2,58.4 49.2,59.0 50.3,55.2 51.3,59.0 52.3,57.1 53.4,57.1 54.4,59.0 55.4,58.4 56.4,59.0 57.5,56.5 58.5,59.0 59.5,59.0 60.6,58.4 61.6,59.0 62.6,58.4 63.6,58.4 64.7,59.0 65.7,57.1 66.7,59.0 67.8,58.4 68.8,59.0 69.8,58.4 70.8,58.4 71.9,57.7 72.9,58.4 73.9,58.4 75.0,58.4 76.0,59.0 77.0,59.0 78.0,59.0 79.1,57.7 80.1,57.7 81.1,59.0 82.2,58.4 83.2,59.0 84.2,58.4 85.2,58.4 86.3,59.0 87.3,58.4 88.3,58.4 89.4,57.1 90.4,58.4 91.4,59.0 92.4,59.0 93.5,59.0 94.5,57.7 95.5,58.4 96.6,58.4 97.6,58.4 98.6,57.7 99.6,59.0 100.7,57.7 101.7,58.4 102.7,58.4 103.8,57.7 104.8,59.0 105.8,59.0 106.8,58.4 107.9,57.1 108.9,58.4 109.9,57.7 111.0,57.1 112.0,58.4 113.0,59.0 114.0,57.7 115.1,57.7 116.1,57.7 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,58.4 123.3,57.7 124.3,59.0 125.3,58.4 126.4,59.0 127.4,59.0 128.4,59.0 129.5,56.5 130.5,57.7 131.5,57.7 132.5,58.4 133.6,59.0 134.6,59.0 135.6,57.7 136.7,57.1 137.7,58.4 138.7,57.1 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,58.4 144.9,57.7 145.9,57.1 146.9,56.5 148.0,13.6 149.0,6.0 150.0,16.1 151.1,39.4 152.1,57.1 153.1,58.4 154.1,59.0 155.2,58.4 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,58.4 161.3,59.0 162.4,59.0 163.4,58.4 164.4,57.7 165.5,55.8 166.5,59.0 167.5,58.4 168.5,59.0 169.6,59.0 170.6,59.0 171.6,57.1 172.7,57.7 173.7,59.0 174.7,57.1 175.7,59.0 176.8,59.0 177.8,57.1 178.8,57.1 179.9,57.7 180.9,58.4 181.9,58.4 182.9,59.0 184.0,59.0 185.0,59.0 186.0,57.7 187.0,57.7 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,51.4 193.2,54.0 194.2,49.5 195.3,48.9 196.3,55.8 197.3,57.7 198.4,59.0 199.4,59.0 200.4,57.7 201.4,58.4 202.5,59.0 203.5,58.4 204.5,57.7 205.6,59.0 206.6,58.4 207.6,57.7 208.6,57.1 209.7,57.7 210.7,57.7 211.7,59.0 212.8,59.0 213.8,57.7 214.8,56.5 215.8,57.7 216.9,59.0 217.9,59.0 218.9,58.4 220.0,59.0 221.0,57.7 222.0,58.4 223.0,57.1 224.1,57.7 225.1,59.0 226.1,57.7 227.2,59.0 228.2,59.0 229.2,56.5 230.2,56.5 231.3,56.5 232.3,57.7 233.3,58.4 234.4,59.0 235.4,59.0 236.4,56.5 237.4,57.7 238.5,57.7 239.5,56.5 240.5,59.0 241.6,58.4 242.6,58.4 243.6,58.4 244.6,58.4 245.7,57.7 246.7,59.0 247.7,58.4 248.8,59.0 249.8,57.7 250.8,57.1 251.8,57.7 252.9,57.7 253.9,58.4 254.9,59.0 256.0,59.0 257.0,59.0 258.0,57.7 259.0,57.7 260.1,57.7 261.1,57.7 262.1,58.4 263.1,59.0 264.2,58.4 265.2,57.7 266.2,57.1 267.3,55.8 268.3,55.8 269.3,59.0 270.3,59.0 271.4,59.0 272.4,57.7 273.4,57.1 274.5,58.4 275.5,57.1 276.5,59.0 277.5,59.0 278.6,57.7 279.6,58.4 280.6,58.4 281.7,58.4 282.7,57.1 283.7,58.4 284.7,58.4 285.8,58.4 286.8,58.4 287.8,55.2 288.9,56.5 289.9,54.0 290.9,59.0 291.9,59.0 293.0,56.5 294.0,55.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BOSTON HOLDROOM<\/b><br>1000 District Avenue<br>Burlington, MA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 164<\/b> (2026-01-23)&nbsp;&nbsp;<br><b>Mean:<\/b> 40/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 164<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,14.4 5.0,23.1 6.1,15.7 7.1,17.3 8.1,29.3 9.1,48.7 10.2,52.2 11.2,54.5 12.2,52.5 13.3,47.7 14.3,50.3 15.3,52.5 16.3,51.6 17.4,53.8 18.4,53.2 19.4,49.3 20.5,50.0 21.5,49.6 22.5,54.8 23.5,53.8 24.6,56.4 25.6,53.2 26.6,51.6 27.7,51.2 28.7,53.5 29.7,50.6 30.7,50.3 31.8,52.5 32.8,55.1 33.8,52.9 34.9,53.5 35.9,53.5 36.9,55.1 37.9,56.7 39.0,57.1 40.0,56.7 41.0,53.8 42.0,53.2 43.1,54.2 44.1,54.8 45.1,56.7 46.2,57.1 47.2,57.7 48.2,54.8 49.2,53.8 50.3,55.4 51.3,55.8 52.3,55.8 53.4,58.0 54.4,57.4 55.4,54.8 56.4,53.2 57.5,55.4 58.5,56.7 59.5,52.5 60.6,58.4 61.6,57.4 62.6,52.5 63.6,50.6 64.7,49.6 65.7,50.6 66.7,50.9 67.8,56.1 68.8,55.8 69.8,49.6 70.8,47.7 71.9,49.6 72.9,52.5 73.9,48.3 75.0,49.0 76.0,58.0 77.0,53.5 78.0,51.9 79.1,52.5 80.1,52.5 81.1,53.2 82.2,56.7 83.2,57.1 84.2,47.0 85.2,44.8 86.3,47.7 87.3,51.2 88.3,50.9 89.4,54.2 90.4,49.3 91.4,47.7 92.4,52.2 93.5,51.2 94.5,51.6 95.5,52.2 96.6,57.1 97.6,57.4 98.6,58.0 99.6,52.9 100.7,51.6 101.7,52.5 102.7,53.2 103.8,54.8 104.8,50.0 105.8,46.4 106.8,56.1 107.9,52.2 108.9,48.0 109.9,46.7 111.0,52.2 112.0,55.4 113.0,53.8 114.0,51.9 115.1,52.5 116.1,51.9 117.1,51.9 118.1,52.5 119.2,55.1 120.2,54.8 121.2,55.8 122.3,52.9 123.3,50.9 124.3,52.5 125.3,46.7 126.4,48.3 127.4,48.7 128.4,52.2 129.5,51.9 130.5,45.4 131.5,46.7 132.5,54.5 133.6,53.5 134.6,47.7 135.6,47.4 136.7,50.9 137.7,45.8 138.7,45.1 139.7,54.5 140.8,55.1 141.8,56.4 142.8,52.9 143.9,47.0 144.9,40.3 145.9,40.9 146.9,52.5 148.0,53.2 149.0,51.2 150.0,51.9 151.1,54.2 152.1,52.9 153.1,51.9 154.1,54.2 155.2,56.4 156.2,52.2 157.2,50.9 158.3,46.7 159.3,46.1 160.3,43.2 161.3,45.4 162.4,41.5 163.4,45.8 164.4,47.0 165.5,45.4 166.5,43.5 167.5,38.3 168.5,42.2 169.6,44.1 170.6,37.3 171.6,38.6 172.7,32.8 173.7,46.4 174.7,50.6 175.7,53.8 176.8,52.9 177.8,50.0 178.8,47.7 179.9,47.0 180.9,48.3 181.9,49.6 182.9,50.9 184.0,53.8 185.0,50.9 186.0,49.6 187.0,51.9 188.1,56.1 189.1,50.9 190.1,53.8 191.2,57.1 192.2,44.5 193.2,41.9 194.2,39.0 195.3,37.3 196.3,38.0 197.3,44.8 198.4,41.9 199.4,40.6 200.4,44.5 201.4,39.6 202.5,43.5 203.5,43.8 204.5,49.6 205.6,51.2 206.6,47.0 207.6,48.0 208.6,43.5 209.7,44.5 210.7,43.2 211.7,47.7 212.8,46.1 213.8,46.7 214.8,46.7 215.8,48.7 216.9,55.1 217.9,49.3 218.9,52.9 220.0,51.9 221.0,47.0 222.0,42.2 223.0,41.5 224.1,44.1 225.1,41.5 226.1,44.8 227.2,45.1 228.2,36.7 229.2,44.5 230.2,44.1 231.3,42.8 232.3,44.1 233.3,47.4 234.4,51.9 235.4,49.3 236.4,46.1 237.4,47.4 238.5,46.7 239.5,49.3 240.5,47.7 241.6,52.9 242.6,50.0 243.6,35.4 244.6,28.9 245.7,15.4 246.7,6.0 247.7,14.1 248.8,36.7 249.8,38.3 250.8,33.5 251.8,33.5 252.9,42.2 253.9,39.9 254.9,48.0 256.0,51.9 257.0,47.7 258.0,48.7 259.0,51.9 260.1,49.3 261.1,49.3 262.1,54.2 263.1,55.8 264.2,52.2 265.2,49.6 266.2,50.6 267.3,53.2 268.3,54.2 269.3,56.7 270.3,57.1 271.4,51.6 272.4,53.5 273.4,52.9 274.5,50.6 275.5,52.5 276.5,55.4 277.5,56.7 278.6,58.7 279.6,56.7 280.6,51.9 281.7,51.9 282.7,51.2 283.7,56.1 284.7,56.4 285.8,47.7 286.8,48.7 287.8,53.2 288.9,52.9 289.9,54.5 290.9,57.1 291.9,57.1 293.0,50.3 294.0,51.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BOURBON CO DET CENTER<\/b><br>Bourbon Co Courthouse, Main Street<br>Paris, KY<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 17<\/b> (2025-10-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 25<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,18.7 5.0,18.7 6.1,59.0 7.1,37.8 8.1,37.8 9.1,37.8 10.2,37.8 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,39.9 17.4,23.0 18.4,23.0 19.4,23.0 20.5,27.2 21.5,8.1 22.5,8.1 23.5,27.2 24.6,25.1 25.6,25.1 26.6,25.1 27.7,27.2 28.7,27.2 29.7,35.7 30.7,35.7 31.8,35.7 32.8,35.7 33.8,35.7 34.9,27.2 35.9,27.2 36.9,37.8 37.9,37.8 39.0,37.8 40.0,37.8 41.0,37.8 42.0,37.8 43.1,48.4 44.1,48.4 45.1,48.4 46.2,59.0 47.2,59.0 48.2,35.7 49.2,35.7 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,54.8 59.5,54.8 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,33.6 66.7,33.6 67.8,33.6 68.8,33.6 69.8,31.4 70.8,31.4 71.9,6.0 72.9,20.8 73.9,37.8 75.0,48.4 76.0,48.4 77.0,29.3 78.0,23.0 79.1,25.1 80.1,31.4 81.1,39.9 82.2,59.0 83.2,54.8 84.2,52.6 85.2,52.6 86.3,59.0 87.3,59.0 88.3,48.4 89.4,48.4 90.4,39.9 91.4,37.8 92.4,44.2 93.5,46.3 94.5,48.4 95.5,54.8 96.6,54.8 97.6,54.8 98.6,52.6 99.6,52.6 100.7,48.4 101.7,46.3 102.7,52.6 103.8,52.6 104.8,52.6 105.8,54.8 106.8,56.9 107.9,56.9 108.9,56.9 109.9,56.9 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,56.9 116.1,54.8 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,16.6 122.3,16.6 123.3,18.7 124.3,18.7 125.3,18.7 126.4,18.7 127.4,18.7 128.4,31.4 129.5,31.4 130.5,27.2 131.5,23.0 132.5,31.4 133.6,31.4 134.6,33.6 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,52.6 144.9,52.6 145.9,59.0 146.9,59.0 148.0,54.8 149.0,54.8 150.0,56.9 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,42.0 158.3,39.9 159.3,52.6 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,54.8 166.5,54.8 167.5,59.0 168.5,59.0 169.6,59.0 170.6,54.8 171.6,54.8 172.7,54.8 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,56.9 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,54.8 187.0,54.8 188.1,54.8 189.1,54.8 190.1,59.0 191.2,56.9 192.2,56.9 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,56.9 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,54.8 216.9,54.8 217.9,54.8 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,56.9 237.4,56.9 238.5,56.9 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,56.9 246.7,56.9 247.7,59.0 248.8,59.0 249.8,59.0 250.8,56.9 251.8,56.9 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,56.9 259.0,56.9 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,50.5 269.3,50.5 270.3,48.4 271.4,48.4 272.4,56.9 273.4,56.9 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,54.8 282.7,54.8 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,56.9 294.0,54.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BOSTON SPC<\/b><br>476-498 Hanover St Exd<br>Boston, MA<br><span style=\"color:#666;\">Type: Dedicated<\/span><br><b>Peak during FY26: 2<\/b> (2025-11-21)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,32.5 21.5,32.5 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,32.5 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,6.0 107.9,6.0 108.9,6.0 109.9,6.0 111.0,6.0 112.0,6.0 113.0,6.0 114.0,6.0 115.1,6.0 116.1,6.0 117.1,6.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,32.5 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,32.5 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,6.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,32.5 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,32.5 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,32.5 233.3,59.0 234.4,59.0 235.4,6.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,32.5 253.9,32.5 254.9,32.5 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,32.5 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,32.5 285.8,6.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BREVARD COUNTY JAIL COMPLEX<\/b><br>860 Camp Road<br>Cocoa, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 7<\/b> (2025-11-20)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 7<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,51.4 6.1,59.0 7.1,43.9 8.1,36.3 9.1,59.0 10.2,51.4 11.2,36.3 12.2,36.3 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,51.4 20.5,43.9 21.5,43.9 22.5,59.0 23.5,51.4 24.6,43.9 25.6,43.9 26.6,43.9 27.7,36.3 28.7,43.9 29.7,36.3 30.7,51.4 31.8,51.4 32.8,59.0 33.8,43.9 34.9,43.9 35.9,28.7 36.9,43.9 37.9,43.9 39.0,59.0 40.0,59.0 41.0,51.4 42.0,51.4 43.1,51.4 44.1,51.4 45.1,36.3 46.2,36.3 47.2,43.9 48.2,43.9 49.2,13.6 50.3,28.7 51.3,21.1 52.3,51.4 53.4,51.4 54.4,59.0 55.4,51.4 56.4,51.4 57.5,43.9 58.5,36.3 59.5,28.7 60.6,43.9 61.6,51.4 62.6,59.0 63.6,59.0 64.7,59.0 65.7,51.4 66.7,43.9 67.8,43.9 68.8,59.0 69.8,43.9 70.8,43.9 71.9,28.7 72.9,36.3 73.9,36.3 75.0,59.0 76.0,59.0 77.0,59.0 78.0,43.9 79.1,36.3 80.1,21.1 81.1,43.9 82.2,43.9 83.2,51.4 84.2,51.4 85.2,36.3 86.3,28.7 87.3,28.7 88.3,43.9 89.4,43.9 90.4,43.9 91.4,43.9 92.4,36.3 93.5,28.7 94.5,36.3 95.5,36.3 96.6,59.0 97.6,59.0 98.6,43.9 99.6,43.9 100.7,28.7 101.7,36.3 102.7,28.7 103.8,43.9 104.8,36.3 105.8,51.4 106.8,51.4 107.9,51.4 108.9,51.4 109.9,51.4 111.0,51.4 112.0,51.4 113.0,51.4 114.0,51.4 115.1,51.4 116.1,51.4 117.1,51.4 118.1,51.4 119.2,51.4 120.2,51.4 121.2,51.4 122.3,51.4 123.3,51.4 124.3,51.4 125.3,51.4 126.4,51.4 127.4,51.4 128.4,51.4 129.5,51.4 130.5,51.4 131.5,51.4 132.5,51.4 133.6,51.4 134.6,51.4 135.6,51.4 136.7,51.4 137.7,51.4 138.7,51.4 139.7,51.4 140.8,51.4 141.8,51.4 142.8,51.4 143.9,51.4 144.9,51.4 145.9,43.9 146.9,43.9 148.0,43.9 149.0,43.9 150.0,36.3 151.1,43.9 152.1,43.9 153.1,43.9 154.1,43.9 155.2,43.9 156.2,43.9 157.2,43.9 158.3,43.9 159.3,43.9 160.3,43.9 161.3,43.9 162.4,43.9 163.4,43.9 164.4,43.9 165.5,43.9 166.5,43.9 167.5,36.3 168.5,36.3 169.6,43.9 170.6,43.9 171.6,43.9 172.7,36.3 173.7,36.3 174.7,36.3 175.7,28.7 176.8,28.7 177.8,21.1 178.8,36.3 179.9,36.3 180.9,6.0 181.9,6.0 182.9,51.4 184.0,51.4 185.0,43.9 186.0,43.9 187.0,43.9 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,51.4 200.4,51.4 201.4,51.4 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BROOKS COUNTY JAIL (CONTRACT)<\/b><br>901 County Road 201<br>Falfurrias, TX<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 81<\/b> (2025-11-27)&nbsp;&nbsp;<br><b>Mean:<\/b> 17/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 90<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,55.5 27.7,55.5 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,30.7 79.1,30.7 80.1,8.9 81.1,36.0 82.2,9.5 83.2,12.5 84.2,12.5 85.2,6.0 86.3,10.7 87.3,11.9 88.3,12.5 89.4,13.7 90.4,16.0 91.4,8.4 92.4,25.4 93.5,28.4 94.5,30.1 95.5,40.7 96.6,51.3 97.6,51.3 98.6,51.3 99.6,51.3 100.7,51.9 101.7,54.3 102.7,57.8 103.8,57.8 104.8,57.8 105.8,57.8 106.8,57.8 107.9,57.8 108.9,57.8 109.9,58.4 111.0,58.4 112.0,59.0 113.0,59.0 114.0,33.1 115.1,22.5 116.1,22.5 117.1,23.7 118.1,46.0 119.2,47.2 120.2,54.9 121.2,54.9 122.3,54.9 123.3,54.9 124.3,54.9 125.3,56.1 126.4,56.1 127.4,56.1 128.4,56.1 129.5,56.1 130.5,56.1 131.5,57.8 132.5,57.8 133.6,57.8 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,34.3 139.7,24.8 140.8,34.3 141.8,34.3 142.8,34.3 143.9,34.3 144.9,34.3 145.9,34.3 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,41.9 153.1,41.9 154.1,42.5 155.2,42.5 156.2,43.7 157.2,44.3 158.3,48.4 159.3,48.4 160.3,49.0 161.3,49.6 162.4,49.6 163.4,49.6 164.4,50.2 165.5,50.8 166.5,51.9 167.5,51.9 168.5,51.9 169.6,52.5 170.6,52.5 171.6,53.1 172.7,53.1 173.7,53.7 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,36.6 185.0,36.6 186.0,36.6 187.0,36.6 188.1,11.3 189.1,19.5 190.1,20.7 191.2,23.1 192.2,31.3 193.2,31.3 194.2,34.3 195.3,34.3 196.3,35.4 197.3,40.2 198.4,17.2 199.4,24.3 200.4,13.7 201.4,23.7 202.5,29.6 203.5,48.4 204.5,50.2 205.6,51.9 206.6,51.9 207.6,53.7 208.6,54.3 209.7,57.2 210.7,46.0 211.7,46.0 212.8,35.4 213.8,35.4 214.8,36.0 215.8,36.6 216.9,37.2 217.9,37.2 218.9,41.3 220.0,42.5 221.0,43.1 222.0,55.5 223.0,56.1 224.1,56.1 225.1,56.1 226.1,56.1 227.2,56.1 228.2,56.1 229.2,57.8 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BROADVIEW SERVICE STAGING<\/b><br>1930 BEACH STREET<br>BROADVIEW, IL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 326<\/b> (2025-11-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 78/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 326<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,57.4 5.0,55.9 6.1,43.4 7.1,35.1 8.1,35.4 9.1,21.6 10.2,47.0 11.2,57.0 12.2,53.8 13.3,44.5 14.3,55.9 15.3,51.0 16.3,40.0 17.4,57.5 18.4,56.7 19.4,54.6 20.5,39.5 21.5,50.9 22.5,50.1 23.5,38.8 24.6,51.7 25.6,50.9 26.6,50.5 27.7,35.8 28.7,54.4 29.7,55.4 30.7,41.6 31.8,55.6 32.8,54.9 33.8,54.0 34.9,33.5 35.9,48.4 36.9,57.2 37.9,58.3 39.0,58.3 40.0,58.8 41.0,57.5 42.0,45.7 43.1,55.6 44.1,56.4 45.1,50.2 46.2,58.0 47.2,56.2 48.2,55.1 49.2,46.8 50.3,56.9 51.3,54.3 52.3,45.3 53.4,56.9 54.4,56.2 55.4,48.8 56.4,48.9 57.5,41.1 58.5,53.6 59.5,45.8 60.6,56.9 61.6,55.3 62.6,47.5 63.6,56.6 64.7,43.7 65.7,54.6 66.7,45.7 67.8,56.1 68.8,55.6 69.8,50.9 70.8,54.1 71.9,42.7 72.9,56.2 73.9,48.1 75.0,57.0 76.0,56.2 77.0,54.0 78.0,52.5 79.1,42.9 80.1,51.8 81.1,43.1 82.2,53.5 83.2,55.1 84.2,57.2 85.2,56.7 86.3,50.5 87.3,55.4 88.3,45.7 89.4,55.4 90.4,52.7 91.4,53.3 92.4,54.4 93.5,42.7 94.5,53.5 95.5,40.5 96.6,54.0 97.6,53.8 98.6,54.1 99.6,54.3 100.7,51.8 101.7,53.0 102.7,47.8 103.8,49.7 104.8,49.6 105.8,50.9 106.8,50.5 107.9,48.1 108.9,48.8 109.9,41.6 111.0,43.4 112.0,43.4 113.0,40.3 114.0,37.5 115.1,29.2 116.1,22.9 117.1,22.4 118.1,19.5 119.2,34.5 120.2,35.9 121.2,47.5 122.3,40.8 123.3,36.2 124.3,32.7 125.3,33.3 126.4,44.2 127.4,37.4 128.4,37.7 129.5,37.5 130.5,35.6 131.5,39.0 132.5,33.6 133.6,34.9 134.6,33.3 135.6,38.0 136.7,35.1 137.7,35.3 138.7,18.2 139.7,21.9 140.8,22.6 141.8,28.3 142.8,27.9 143.9,18.2 144.9,17.7 145.9,22.3 146.9,15.3 148.0,22.7 149.0,23.4 150.0,23.4 151.1,14.6 152.1,19.7 153.1,24.9 154.1,24.9 155.2,29.6 156.2,25.3 157.2,21.9 158.3,15.1 159.3,16.1 160.3,10.9 161.3,6.0 162.4,26.2 163.4,24.0 164.4,24.9 165.5,15.9 166.5,29.6 167.5,25.7 168.5,28.3 169.6,36.1 170.6,43.4 171.6,47.6 172.7,51.0 173.7,49.6 174.7,54.0 175.7,57.9 176.8,57.9 177.8,57.2 178.8,55.6 179.9,55.4 180.9,55.7 181.9,56.2 182.9,57.7 184.0,56.1 185.0,58.8 186.0,53.6 187.0,55.7 188.1,58.8 189.1,58.5 190.1,58.2 191.2,56.9 192.2,56.2 193.2,54.8 194.2,56.6 195.3,53.3 196.3,56.1 197.3,54.4 198.4,57.5 199.4,56.7 200.4,52.7 201.4,56.2 202.5,54.8 203.5,54.4 204.5,58.0 205.6,57.5 206.6,56.7 207.6,49.9 208.6,48.6 209.7,46.5 210.7,56.4 211.7,58.3 212.8,55.6 213.8,58.2 214.8,57.2 215.8,57.7 216.9,56.4 217.9,58.5 218.9,58.7 220.0,58.7 221.0,57.7 222.0,57.0 223.0,58.2 224.1,57.0 225.1,57.9 226.1,58.5 227.2,57.7 228.2,57.4 229.2,56.7 230.2,57.5 231.3,57.2 232.3,57.7 233.3,57.9 234.4,56.6 235.4,57.9 236.4,55.7 237.4,55.9 238.5,54.8 239.5,57.5 240.5,58.7 241.6,57.5 242.6,58.3 243.6,54.8 244.6,56.6 245.7,53.5 246.7,57.7 247.7,58.2 248.8,58.8 249.8,56.7 250.8,57.7 251.8,52.0 252.9,53.6 253.9,58.3 254.9,58.2 256.0,55.3 257.0,55.4 258.0,53.1 259.0,55.6 260.1,53.6 261.1,49.7 262.1,58.5 263.1,56.2 264.2,56.9 265.2,55.1 266.2,55.7 267.3,54.0 268.3,57.4 269.3,58.5 270.3,54.1 271.4,57.7 272.4,57.5 273.4,58.2 274.5,54.8 275.5,57.2 276.5,58.3 277.5,55.3 278.6,58.0 279.6,55.6 280.6,57.0 281.7,55.3 282.7,56.7 283.7,57.9 284.7,56.1 285.8,56.9 286.8,56.1 287.8,56.4 288.9,55.9 289.9,58.0 290.9,58.5 291.9,56.7 293.0,57.5 294.0,55.3\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BIG SPRING HOLD ROOM<\/b><br>1701 APRON DRIVE<br>BIG SPRING, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 4<\/b> (2025-10-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 5<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,37.8 6.1,37.8 7.1,37.8 8.1,37.8 9.1,48.4 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,48.4 16.3,48.4 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,37.8 22.5,59.0 23.5,48.4 24.6,59.0 25.6,48.4 26.6,37.8 27.7,48.4 28.7,48.4 29.7,27.2 30.7,27.2 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,48.4 36.9,27.2 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,48.4 44.1,48.4 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,48.4 50.3,48.4 51.3,59.0 52.3,27.2 53.4,59.0 54.4,59.0 55.4,48.4 56.4,59.0 57.5,48.4 58.5,6.0 59.5,48.4 60.6,59.0 61.6,59.0 62.6,16.6 63.6,27.2 64.7,48.4 65.7,48.4 66.7,27.2 67.8,59.0 68.8,59.0 69.8,48.4 70.8,37.8 71.9,48.4 72.9,48.4 73.9,59.0 75.0,59.0 76.0,59.0 77.0,48.4 78.0,37.8 79.1,59.0 80.1,27.2 81.1,48.4 82.2,59.0 83.2,59.0 84.2,27.2 85.2,59.0 86.3,59.0 87.3,48.4 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,48.4 93.5,59.0 94.5,59.0 95.5,37.8 96.6,59.0 97.6,59.0 98.6,59.0 99.6,48.4 100.7,37.8 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,48.4 106.8,59.0 107.9,59.0 108.9,48.4 109.9,48.4 111.0,59.0 112.0,59.0 113.0,48.4 114.0,48.4 115.1,48.4 116.1,48.4 117.1,6.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,48.4 122.3,16.6 123.3,48.4 124.3,37.8 125.3,59.0 126.4,59.0 127.4,37.8 128.4,59.0 129.5,48.4 130.5,48.4 131.5,16.6 132.5,59.0 133.6,59.0 134.6,27.2 135.6,48.4 136.7,48.4 137.7,59.0 138.7,27.2 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,37.8 144.9,59.0 145.9,48.4 146.9,59.0 148.0,59.0 149.0,59.0 150.0,48.4 151.1,59.0 152.1,27.2 153.1,37.8 154.1,59.0 155.2,59.0 156.2,59.0 157.2,48.4 158.3,59.0 159.3,59.0 160.3,37.8 161.3,59.0 162.4,59.0 163.4,48.4 164.4,59.0 165.5,48.4 166.5,59.0 167.5,48.4 168.5,59.0 169.6,59.0 170.6,48.4 171.6,59.0 172.7,59.0 173.7,48.4 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,48.4 179.9,37.8 180.9,59.0 181.9,16.6 182.9,59.0 184.0,59.0 185.0,37.8 186.0,59.0 187.0,37.8 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,48.4 194.2,59.0 195.3,27.2 196.3,59.0 197.3,59.0 198.4,59.0 199.4,48.4 200.4,48.4 201.4,59.0 202.5,27.2 203.5,37.8 204.5,59.0 205.6,59.0 206.6,48.4 207.6,59.0 208.6,59.0 209.7,59.0 210.7,37.8 211.7,59.0 212.8,59.0 213.8,59.0 214.8,37.8 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,37.8 223.0,48.4 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,48.4 231.3,37.8 232.3,48.4 233.3,59.0 234.4,59.0 235.4,48.4 236.4,59.0 237.4,59.0 238.5,16.6 239.5,59.0 240.5,59.0 241.6,48.4 242.6,59.0 243.6,59.0 244.6,59.0 245.7,48.4 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,48.4 251.8,48.4 252.9,59.0 253.9,48.4 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,48.4 267.3,59.0 268.3,27.2 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,48.4 276.5,59.0 277.5,59.0 278.6,48.4 279.6,48.4 280.6,59.0 281.7,59.0 282.7,27.2 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,37.8 290.9,59.0 291.9,59.0 293.0,59.0 294.0,48.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BUFFALO HOLD ROOM<\/b><br>250 Delaware Avenue, Floor 7<br>Buffalo, NY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 6<\/b> (2025-10-11)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 45<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,56.6 6.1,55.5 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,55.5 13.3,55.5 14.3,59.0 15.3,59.0 16.3,7.2 17.4,7.2 18.4,7.2 19.4,6.0 20.5,53.1 21.5,59.0 22.5,59.0 23.5,27.2 24.6,28.4 25.6,24.8 26.6,55.5 27.7,55.5 28.7,55.5 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,53.1 34.9,51.9 35.9,51.9 36.9,51.9 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,36.6 44.1,36.6 45.1,36.6 46.2,36.6 47.2,57.8 48.2,51.9 49.2,53.1 50.3,53.1 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,56.6 58.5,59.0 59.5,41.3 60.6,42.5 61.6,40.2 62.6,57.8 63.6,53.1 64.7,53.1 65.7,57.8 66.7,57.8 67.8,57.8 68.8,57.8 69.8,57.8 70.8,54.3 71.9,57.8 72.9,57.8 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,57.8 80.1,57.8 81.1,59.0 82.2,59.0 83.2,59.0 84.2,56.6 85.2,56.6 86.3,53.1 87.3,54.3 88.3,54.3 89.4,49.6 90.4,54.3 91.4,59.0 92.4,59.0 93.5,56.6 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,55.5 102.7,55.5 103.8,55.5 104.8,57.8 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,56.6 114.0,57.8 115.1,57.8 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,57.8 121.2,55.5 122.3,57.8 123.3,57.8 124.3,57.8 125.3,57.8 126.4,57.8 127.4,57.8 128.4,57.8 129.5,57.8 130.5,57.8 131.5,57.8 132.5,57.8 133.6,55.5 134.6,57.8 135.6,56.6 136.7,57.8 137.7,57.8 138.7,57.8 139.7,51.9 140.8,57.8 141.8,57.8 142.8,57.8 143.9,57.8 144.9,57.8 145.9,57.8 146.9,59.0 148.0,59.0 149.0,59.0 150.0,57.8 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,57.8 164.4,57.8 165.5,57.8 166.5,57.8 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,55.5 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,55.5 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,57.8 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,56.6 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,54.3 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,57.8 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,57.8 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CACHE CO. JAIL<\/b><br>50 West 200 North<br>Logan, UT<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 9<\/b> (2025-10-25)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 13<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,50.8 105.8,38.6 106.8,38.6 107.9,42.7 108.9,34.5 109.9,38.6 111.0,50.8 112.0,42.7 113.0,26.4 114.0,30.5 115.1,22.3 116.1,10.1 117.1,6.0 118.1,42.7 119.2,38.6 120.2,50.8 121.2,42.7 122.3,34.5 123.3,26.4 124.3,34.5 125.3,42.7 126.4,42.7 127.4,30.5 128.4,38.6 129.5,38.6 130.5,59.0 131.5,59.0 132.5,59.0 133.6,50.8 134.6,50.8 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,54.9 140.8,54.9 141.8,50.8 142.8,54.9 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,50.8 150.0,50.8 151.1,59.0 152.1,54.9 153.1,38.6 154.1,22.3 155.2,22.3 156.2,22.3 157.2,30.5 158.3,34.5 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,54.9 177.8,46.8 178.8,46.8 179.9,30.5 180.9,34.5 181.9,34.5 182.9,42.7 184.0,38.6 185.0,54.9 186.0,54.9 187.0,59.0 188.1,59.0 189.1,59.0 190.1,54.9 191.2,54.9 192.2,59.0 193.2,59.0 194.2,46.8 195.3,46.8 196.3,54.9 197.3,54.9 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,54.9 205.6,54.9 206.6,54.9 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,50.8 235.4,50.8 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,54.9 242.6,54.9 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,46.8 268.3,46.8 269.3,34.5 270.3,34.5 271.4,34.5 272.4,34.5 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,42.7 291.9,42.7 293.0,42.7 294.0,50.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CAMPBELL COUNTY JAIL<\/b><br>600 W Boxelder Road<br>Gillette, WY<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 8<\/b> (2025-12-14)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 8<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,39.1 79.1,39.1 80.1,32.5 81.1,52.4 82.2,52.4 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,52.4 91.4,52.4 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,52.4 112.0,52.4 113.0,52.4 114.0,52.4 115.1,59.0 116.1,52.4 117.1,52.4 118.1,52.4 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,52.4 131.5,52.4 132.5,52.4 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,52.4 165.5,52.4 166.5,52.4 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,52.4 175.7,52.4 176.8,52.4 177.8,52.4 178.8,52.4 179.9,52.4 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,52.4 187.0,52.4 188.1,52.4 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,52.4 200.4,52.4 201.4,52.4 202.5,52.4 203.5,12.6 204.5,12.6 205.6,6.0 206.6,52.4 207.6,52.4 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,52.4 213.8,52.4 214.8,59.0 215.8,52.4 216.9,52.4 217.9,52.4 218.9,52.4 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,52.4 229.2,52.4 230.2,59.0 231.3,59.0 232.3,52.4 233.3,52.4 234.4,52.4 235.4,52.4 236.4,59.0 237.4,52.4 238.5,52.4 239.5,45.8 240.5,39.1 241.6,39.1 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,45.8 248.8,45.8 249.8,45.8 250.8,59.0 251.8,45.8 252.9,45.8 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,39.1 268.3,39.1 269.3,59.0 270.3,59.0 271.4,52.4 272.4,52.4 273.4,52.4 274.5,52.4 275.5,52.4 276.5,59.0 277.5,59.0 278.6,45.8 279.6,45.8 280.6,45.8 281.7,52.4 282.7,52.4 283.7,59.0 284.7,59.0 285.8,59.0 286.8,45.8 287.8,45.8 288.9,59.0 289.9,59.0 290.9,52.4 291.9,52.4 293.0,52.4 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BUFFALO USBP HOLD ROOM<\/b><br>250 Delaware Avenue Floor 7<br>Buffalo, NY<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 11<\/b> (2025-12-04)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 20<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,6.0 116.1,6.0 117.1,6.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,56.3 139.7,56.3 140.8,59.0 141.8,59.0 142.8,51.0 143.9,51.0 144.9,51.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,56.3 161.3,53.7 162.4,56.3 163.4,56.3 164.4,59.0 165.5,51.0 166.5,53.7 167.5,53.7 168.5,53.7 169.6,59.0 170.6,59.0 171.6,59.0 172.7,56.3 173.7,56.3 174.7,56.3 175.7,56.3 176.8,56.3 177.8,56.3 178.8,51.0 179.9,53.7 180.9,53.7 181.9,43.1 182.9,43.1 184.0,43.1 185.0,43.1 186.0,40.5 187.0,40.5 188.1,43.1 189.1,43.1 190.1,43.1 191.2,43.1 192.2,43.1 193.2,43.1 194.2,40.5 195.3,29.8 196.3,29.8 197.3,29.8 198.4,29.8 199.4,29.8 200.4,29.8 201.4,32.5 202.5,40.5 203.5,40.5 204.5,40.5 205.6,43.1 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,53.7 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CHARLOTTE AMALIE HOLDROOM<\/b><br>5500, Veterans Dr, St Thomas 00801, U.S. Virgin Islands<br>ST. THOMAS, VI<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 4<\/b> (2025-10-17)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 4<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,45.8 5.0,45.8 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,32.5 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,6.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,45.8 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CHARLESTON COUNTY CORRECT<\/b><br>3841 Leeds Avenue<br>North Charleston, SC<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 5<\/b> (2025-12-17)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 5<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,48.4 35.9,48.4 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,48.4 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,48.4 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,27.2 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,37.8 135.6,59.0 136.7,59.0 137.7,48.4 138.7,37.8 139.7,59.0 140.8,48.4 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,48.4 150.0,59.0 151.1,27.2 152.1,27.2 153.1,48.4 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,27.2 159.3,37.8 160.3,37.8 161.3,48.4 162.4,59.0 163.4,48.4 164.4,27.2 165.5,48.4 166.5,37.8 167.5,37.8 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,27.2 173.7,16.6 174.7,48.4 175.7,48.4 176.8,59.0 177.8,37.8 178.8,48.4 179.9,27.2 180.9,37.8 181.9,37.8 182.9,59.0 184.0,48.4 185.0,59.0 186.0,59.0 187.0,48.4 188.1,59.0 189.1,59.0 190.1,48.4 191.2,59.0 192.2,59.0 193.2,59.0 194.2,48.4 195.3,59.0 196.3,27.2 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,27.2 202.5,48.4 203.5,59.0 204.5,59.0 205.6,59.0 206.6,48.4 207.6,59.0 208.6,6.0 209.7,48.4 210.7,59.0 211.7,59.0 212.8,59.0 213.8,48.4 214.8,59.0 215.8,48.4 216.9,59.0 217.9,37.8 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,48.4 224.1,59.0 225.1,27.2 226.1,59.0 227.2,48.4 228.2,37.8 229.2,59.0 230.2,27.2 231.3,59.0 232.3,37.8 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,37.8 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,48.4 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CHAVEZ DET CRT<\/b><br>3701 S. Atkinson<br>Roswell, NM<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 12<\/b> (2025-11-19)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 16<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,52.4 5.0,49.1 6.1,49.1 7.1,55.7 8.1,55.7 9.1,55.7 10.2,59.0 11.2,59.0 12.2,45.8 13.3,35.8 14.3,49.1 15.3,59.0 16.3,45.8 17.4,45.8 18.4,52.4 19.4,42.4 20.5,45.8 21.5,55.7 22.5,59.0 23.5,59.0 24.6,52.4 25.6,52.4 26.6,35.8 27.7,22.6 28.7,45.8 29.7,52.4 30.7,39.1 31.8,45.8 32.8,59.0 33.8,55.7 34.9,55.7 35.9,45.8 36.9,39.1 37.9,52.4 39.0,52.4 40.0,59.0 41.0,59.0 42.0,49.1 43.1,45.8 44.1,45.8 45.1,42.4 46.2,42.4 47.2,49.1 48.2,49.1 49.2,39.1 50.3,49.1 51.3,55.7 52.3,52.4 53.4,55.7 54.4,59.0 55.4,42.4 56.4,35.8 57.5,45.8 58.5,55.7 59.5,55.7 60.6,52.4 61.6,55.7 62.6,45.8 63.6,45.8 64.7,49.1 65.7,55.7 66.7,55.7 67.8,59.0 68.8,55.7 69.8,52.4 70.8,52.4 71.9,52.4 72.9,42.4 73.9,32.5 75.0,32.5 76.0,55.7 77.0,45.8 78.0,45.8 79.1,42.4 80.1,45.8 81.1,52.4 82.2,52.4 83.2,52.4 84.2,39.1 85.2,39.1 86.3,52.4 87.3,55.7 88.3,49.1 89.4,49.1 90.4,59.0 91.4,52.4 92.4,39.1 93.5,39.1 94.5,49.1 95.5,39.1 96.6,42.4 97.6,52.4 98.6,52.4 99.6,45.8 100.7,39.1 101.7,42.4 102.7,55.7 103.8,55.7 104.8,52.4 105.8,45.8 106.8,42.4 107.9,39.1 108.9,32.5 109.9,39.1 111.0,45.8 112.0,45.8 113.0,39.1 114.0,12.6 115.1,6.0 116.1,42.4 117.1,45.8 118.1,45.8 119.2,49.1 120.2,52.4 121.2,55.7 122.3,59.0 123.3,39.1 124.3,32.5 125.3,52.4 126.4,59.0 127.4,55.7 128.4,52.4 129.5,49.1 130.5,45.8 131.5,49.1 132.5,49.1 133.6,52.4 134.6,52.4 135.6,52.4 136.7,42.4 137.7,45.8 138.7,49.1 139.7,52.4 140.8,52.4 141.8,45.8 142.8,45.8 143.9,45.8 144.9,42.4 145.9,39.1 146.9,39.1 148.0,39.1 149.0,52.4 150.0,55.7 151.1,49.1 152.1,49.1 153.1,45.8 154.1,52.4 155.2,59.0 156.2,52.4 157.2,42.4 158.3,49.1 159.3,52.4 160.3,55.7 161.3,55.7 162.4,55.7 163.4,52.4 164.4,42.4 165.5,29.2 166.5,39.1 167.5,49.1 168.5,45.8 169.6,52.4 170.6,45.8 171.6,39.1 172.7,35.8 173.7,42.4 174.7,49.1 175.7,52.4 176.8,52.4 177.8,49.1 178.8,35.8 179.9,19.2 180.9,39.1 181.9,52.4 182.9,49.1 184.0,55.7 185.0,45.8 186.0,39.1 187.0,52.4 188.1,55.7 189.1,55.7 190.1,59.0 191.2,59.0 192.2,59.0 193.2,32.5 194.2,25.9 195.3,52.4 196.3,49.1 197.3,42.4 198.4,39.1 199.4,49.1 200.4,49.1 201.4,45.8 202.5,35.8 203.5,49.1 204.5,55.7 205.6,52.4 206.6,49.1 207.6,45.8 208.6,42.4 209.7,55.7 210.7,55.7 211.7,52.4 212.8,55.7 213.8,55.7 214.8,49.1 215.8,49.1 216.9,55.7 217.9,52.4 218.9,55.7 220.0,55.7 221.0,52.4 222.0,45.8 223.0,49.1 224.1,55.7 225.1,55.7 226.1,52.4 227.2,49.1 228.2,42.4 229.2,42.4 230.2,42.4 231.3,42.4 232.3,49.1 233.3,55.7 234.4,59.0 235.4,55.7 236.4,49.1 237.4,49.1 238.5,52.4 239.5,32.5 240.5,22.6 241.6,49.1 242.6,59.0 243.6,42.4 244.6,39.1 245.7,35.8 246.7,52.4 247.7,55.7 248.8,55.7 249.8,55.7 250.8,55.7 251.8,55.7 252.9,55.7 253.9,55.7 254.9,55.7 256.0,55.7 257.0,35.8 258.0,32.5 259.0,35.8 260.1,42.4 261.1,32.5 262.1,45.8 263.1,55.7 264.2,55.7 265.2,42.4 266.2,45.8 267.3,55.7 268.3,52.4 269.3,52.4 270.3,55.7 271.4,59.0 272.4,52.4 273.4,49.1 274.5,49.1 275.5,52.4 276.5,59.0 277.5,59.0 278.6,39.1 279.6,32.5 280.6,25.9 281.7,45.8 282.7,42.4 283.7,49.1 284.7,49.1 285.8,49.1 286.8,49.1 287.8,59.0 288.9,45.8 289.9,35.8 290.9,42.4 291.9,42.4 293.0,49.1 294.0,49.1\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CHICAGO HOLD ROOM<\/b><br>101 W Ida B Wells Drive, Suite 4000<br>Chicago, IL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 18<\/b> (2026-01-17)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 26<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,57.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,48.8 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,52.9 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,54.9 28.7,59.0 29.7,52.9 30.7,52.9 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,57.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,54.9 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,54.9 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,52.9 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,57.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,57.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,54.9 113.0,57.0 114.0,59.0 115.1,57.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,44.7 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,54.9 128.4,6.0 129.5,36.6 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,57.0 141.8,57.0 142.8,50.8 143.9,54.9 144.9,59.0 145.9,57.0 146.9,59.0 148.0,59.0 149.0,54.9 150.0,52.9 151.1,59.0 152.1,59.0 153.1,54.9 154.1,59.0 155.2,59.0 156.2,52.9 157.2,50.8 158.3,54.9 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,54.9 164.4,54.9 165.5,50.8 166.5,52.9 167.5,46.8 168.5,44.7 169.6,52.9 170.6,50.8 171.6,59.0 172.7,59.0 173.7,57.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,54.9 179.9,59.0 180.9,59.0 181.9,54.9 182.9,59.0 184.0,59.0 185.0,44.7 186.0,50.8 187.0,54.9 188.1,59.0 189.1,57.0 190.1,59.0 191.2,59.0 192.2,48.8 193.2,48.8 194.2,59.0 195.3,44.7 196.3,52.9 197.3,59.0 198.4,59.0 199.4,46.8 200.4,40.7 201.4,50.8 202.5,52.9 203.5,54.9 204.5,57.0 205.6,59.0 206.6,48.8 207.6,34.5 208.6,30.5 209.7,46.8 210.7,59.0 211.7,59.0 212.8,57.0 213.8,42.7 214.8,44.7 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,50.8 223.0,59.0 224.1,57.0 225.1,57.0 226.1,57.0 227.2,59.0 228.2,50.8 229.2,59.0 230.2,59.0 231.3,52.9 232.3,48.8 233.3,57.0 234.4,57.0 235.4,59.0 236.4,46.8 237.4,50.8 238.5,54.9 239.5,52.9 240.5,22.3 241.6,59.0 242.6,59.0 243.6,52.9 244.6,48.8 245.7,50.8 246.7,54.9 247.7,57.0 248.8,59.0 249.8,40.7 250.8,57.0 251.8,54.9 252.9,54.9 253.9,57.0 254.9,48.8 256.0,57.0 257.0,54.9 258.0,52.9 259.0,50.8 260.1,52.9 261.1,46.8 262.1,57.0 263.1,57.0 264.2,50.8 265.2,54.9 266.2,54.9 267.3,54.9 268.3,54.9 269.3,57.0 270.3,59.0 271.4,59.0 272.4,50.8 273.4,50.8 274.5,57.0 275.5,57.0 276.5,59.0 277.5,59.0 278.6,54.9 279.6,50.8 280.6,52.9 281.7,42.7 282.7,52.9 283.7,52.9 284.7,59.0 285.8,44.7 286.8,54.9 287.8,54.9 288.9,59.0 289.9,54.9 290.9,59.0 291.9,59.0 293.0,59.0 294.0,44.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CHARLESTON, SC HOLD ROOM<\/b><br>3950 FABER PLACE DR<br>CHARLESTON, SC<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 86<\/b> (2025-11-07)&nbsp;&nbsp;<br><b>Mean:<\/b> 11/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 86<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,16.5 5.0,51.0 6.1,52.8 7.1,47.3 8.1,55.3 9.1,52.2 10.2,51.6 11.2,57.2 12.2,53.5 13.3,55.3 14.3,49.8 15.3,46.1 16.3,41.1 17.4,57.2 18.4,57.2 19.4,51.0 20.5,57.2 21.5,46.1 22.5,55.9 23.5,35.0 24.6,38.7 25.6,38.7 26.6,37.4 27.7,41.1 28.7,51.6 29.7,35.0 30.7,31.9 31.8,33.1 32.8,38.7 33.8,31.3 34.9,25.1 35.9,30.7 36.9,30.0 37.9,30.0 39.0,47.3 40.0,47.3 41.0,35.6 42.0,35.0 43.1,24.5 44.1,41.1 45.1,35.6 46.2,46.7 47.2,53.5 48.2,45.4 49.2,51.0 50.3,49.1 51.3,50.4 52.3,43.0 53.4,53.5 54.4,59.0 55.4,46.7 56.4,57.2 57.5,51.6 58.5,58.4 59.5,47.3 60.6,58.4 61.6,57.8 62.6,51.0 63.6,55.3 64.7,49.8 65.7,57.8 66.7,49.1 67.8,58.4 68.8,58.4 69.8,53.5 70.8,57.8 71.9,53.5 72.9,52.8 73.9,46.7 75.0,47.3 76.0,59.0 77.0,52.8 78.0,48.5 79.1,55.9 80.1,41.7 81.1,33.1 82.2,59.0 83.2,48.5 84.2,42.4 85.2,51.0 86.3,48.5 87.3,51.0 88.3,45.4 89.4,58.4 90.4,59.0 91.4,51.6 92.4,55.3 93.5,46.7 94.5,46.1 95.5,51.6 96.6,50.4 97.6,54.7 98.6,59.0 99.6,52.2 100.7,59.0 101.7,52.2 102.7,52.8 103.8,59.0 104.8,59.0 105.8,52.2 106.8,52.8 107.9,54.7 108.9,51.0 109.9,52.8 111.0,59.0 112.0,43.6 113.0,55.3 114.0,58.4 115.1,47.9 116.1,49.8 117.1,48.5 118.1,57.8 119.2,58.4 120.2,45.4 121.2,58.4 122.3,46.1 123.3,46.7 124.3,54.1 125.3,57.2 126.4,57.8 127.4,45.4 128.4,57.2 129.5,53.5 130.5,52.8 131.5,52.8 132.5,57.2 133.6,57.2 134.6,49.1 135.6,56.5 136.7,52.2 137.7,55.3 138.7,52.2 139.7,55.9 140.8,57.2 141.8,57.2 142.8,48.5 143.9,51.0 144.9,51.0 145.9,53.5 146.9,57.8 148.0,57.8 149.0,50.4 150.0,57.2 151.1,44.2 152.1,53.5 153.1,51.6 154.1,57.2 155.2,56.5 156.2,45.4 157.2,50.4 158.3,38.0 159.3,51.0 160.3,52.2 161.3,57.8 162.4,57.8 163.4,39.9 164.4,41.7 165.5,43.0 166.5,27.0 167.5,6.0 168.5,31.3 169.6,57.2 170.6,53.5 171.6,57.2 172.7,47.9 173.7,49.8 174.7,51.0 175.7,56.5 176.8,56.5 177.8,46.1 178.8,55.9 179.9,51.0 180.9,48.5 181.9,49.1 182.9,55.3 184.0,55.3 185.0,45.4 186.0,54.7 187.0,47.3 188.1,55.3 189.1,54.7 190.1,58.4 191.2,58.4 192.2,52.2 193.2,58.4 194.2,48.5 195.3,52.8 196.3,45.4 197.3,52.2 198.4,51.6 199.4,53.5 200.4,55.9 201.4,49.1 202.5,48.5 203.5,50.4 204.5,56.5 205.6,58.4 206.6,49.1 207.6,56.5 208.6,48.5 209.7,54.7 210.7,49.8 211.7,54.1 212.8,55.9 213.8,46.7 214.8,55.9 215.8,46.7 216.9,59.0 217.9,52.8 218.9,59.0 220.0,59.0 221.0,47.3 222.0,54.7 223.0,50.4 224.1,56.5 225.1,48.5 226.1,59.0 227.2,54.7 228.2,51.6 229.2,58.4 230.2,53.5 231.3,57.2 232.3,55.9 233.3,57.8 234.4,56.5 235.4,49.8 236.4,55.9 237.4,48.5 238.5,56.5 239.5,55.3 240.5,56.5 241.6,59.0 242.6,49.8 243.6,55.3 244.6,50.4 245.7,56.5 246.7,49.8 247.7,43.6 248.8,59.0 249.8,47.3 250.8,57.2 251.8,47.3 252.9,54.7 253.9,47.3 254.9,59.0 256.0,59.0 257.0,53.5 258.0,57.2 259.0,44.2 260.1,54.7 261.1,53.5 262.1,54.7 263.1,31.3 264.2,34.3 265.2,43.0 266.2,37.4 267.3,54.7 268.3,53.5 269.3,57.8 270.3,59.0 271.4,55.3 272.4,57.2 273.4,50.4 274.5,53.5 275.5,52.8 276.5,54.7 277.5,54.1 278.6,52.8 279.6,58.4 280.6,48.5 281.7,56.5 282.7,54.1 283.7,54.7 284.7,57.8 285.8,46.7 286.8,54.1 287.8,48.5 288.9,52.8 289.9,54.1 290.9,59.0 291.9,59.0 293.0,49.1 294.0,56.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CHAMPLAIN HOLD ROOM<\/b><br>237 West Service Road, Room CB 107, Unit 8<br>Champlain, NY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 10<\/b> (2026-01-13)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 10<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,37.8 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,43.1 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,43.1 66.7,43.1 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,32.5 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,37.8 94.5,43.1 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,43.1 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,48.4 112.0,59.0 113.0,59.0 114.0,59.0 115.1,27.2 116.1,21.9 117.1,59.0 118.1,59.0 119.2,59.0 120.2,48.4 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,37.8 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,43.1 132.5,48.4 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,43.1 163.4,32.5 164.4,59.0 165.5,48.4 166.5,43.1 167.5,21.9 168.5,59.0 169.6,37.8 170.6,37.8 171.6,59.0 172.7,37.8 173.7,59.0 174.7,43.1 175.7,59.0 176.8,59.0 177.8,48.4 178.8,43.1 179.9,43.1 180.9,59.0 181.9,59.0 182.9,21.9 184.0,48.4 185.0,59.0 186.0,59.0 187.0,59.0 188.1,48.4 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,43.1 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,32.5 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,32.5 206.6,32.5 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,43.1 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,37.8 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,6.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,53.7 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,37.8 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,48.4 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CHESAPEAKE CITY JAIL<\/b><br>400 Albemarle Dr<br>Chesapeake, VA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 4<\/b> (2025-10-23)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 25<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,56.9 7.1,54.8 8.1,54.8 9.1,50.5 10.2,52.6 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,56.9 26.6,56.9 27.7,59.0 28.7,54.8 29.7,54.8 30.7,59.0 31.8,59.0 32.8,56.9 33.8,56.9 34.9,54.8 35.9,56.9 36.9,52.6 37.9,54.8 39.0,59.0 40.0,59.0 41.0,54.8 42.0,54.8 43.1,59.0 44.1,54.8 45.1,37.8 46.2,33.6 47.2,33.6 48.2,59.0 49.2,59.0 50.3,56.9 51.3,56.9 52.3,59.0 53.4,59.0 54.4,59.0 55.4,56.9 56.4,56.9 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,56.9 64.7,56.9 65.7,56.9 66.7,56.9 67.8,59.0 68.8,59.0 69.8,59.0 70.8,54.8 71.9,54.8 72.9,54.8 73.9,56.9 75.0,54.8 76.0,52.6 77.0,52.6 78.0,59.0 79.1,59.0 80.1,56.9 81.1,56.9 82.2,59.0 83.2,56.9 84.2,54.8 85.2,56.9 86.3,59.0 87.3,59.0 88.3,56.9 89.4,56.9 90.4,59.0 91.4,52.6 92.4,39.9 93.5,39.9 94.5,59.0 95.5,59.0 96.6,59.0 97.6,56.9 98.6,56.9 99.6,54.8 100.7,50.5 101.7,48.4 102.7,48.4 103.8,50.5 104.8,59.0 105.8,59.0 106.8,46.3 107.9,46.3 108.9,50.5 109.9,48.4 111.0,44.2 112.0,42.0 113.0,54.8 114.0,56.9 115.1,54.8 116.1,54.8 117.1,54.8 118.1,59.0 119.2,59.0 120.2,39.9 121.2,25.1 122.3,10.2 123.3,6.0 124.3,54.8 125.3,59.0 126.4,59.0 127.4,56.9 128.4,56.9 129.5,59.0 130.5,59.0 131.5,59.0 132.5,56.9 133.6,54.8 134.6,52.6 135.6,54.8 136.7,56.9 137.7,54.8 138.7,54.8 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,56.9 149.0,54.8 150.0,56.9 151.1,59.0 152.1,50.5 153.1,50.5 154.1,59.0 155.2,56.9 156.2,56.9 157.2,52.6 158.3,54.8 159.3,56.9 160.3,56.9 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,54.8 166.5,54.8 167.5,56.9 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,56.9 184.0,56.9 185.0,56.9 186.0,54.8 187.0,56.9 188.1,56.9 189.1,56.9 190.1,59.0 191.2,56.9 192.2,54.8 193.2,54.8 194.2,59.0 195.3,59.0 196.3,56.9 197.3,56.9 198.4,59.0 199.4,59.0 200.4,59.0 201.4,54.8 202.5,52.6 203.5,52.6 204.5,59.0 205.6,59.0 206.6,56.9 207.6,56.9 208.6,56.9 209.7,52.6 210.7,52.6 211.7,56.9 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,56.9 217.9,56.9 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,52.6 225.1,50.5 226.1,54.8 227.2,56.9 228.2,56.9 229.2,54.8 230.2,54.8 231.3,52.6 232.3,52.6 233.3,56.9 234.4,56.9 235.4,56.9 236.4,56.9 237.4,59.0 238.5,59.0 239.5,59.0 240.5,56.9 241.6,56.9 242.6,59.0 243.6,56.9 244.6,56.9 245.7,56.9 246.7,56.9 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,54.8 256.0,54.8 257.0,54.8 258.0,56.9 259.0,56.9 260.1,56.9 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,56.9 268.3,56.9 269.3,56.9 270.3,56.9 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,56.9 280.6,54.8 281.7,56.9 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,56.9 293.0,56.9 294.0,56.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CHEYENNE HOLDROOM<\/b><br>308 W. 21ST STREET<br>CHEYENNE, WY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 14<\/b> (2025-11-20)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 14<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,51.4 7.1,55.2 8.1,59.0 9.1,59.0 10.2,59.0 11.2,55.2 12.2,55.2 13.3,59.0 14.3,55.2 15.3,55.2 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,55.2 23.5,59.0 24.6,59.0 25.6,51.4 26.6,59.0 27.7,59.0 28.7,55.2 29.7,55.2 30.7,51.4 31.8,59.0 32.8,55.2 33.8,59.0 34.9,59.0 35.9,59.0 36.9,55.2 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,51.4 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,55.2 48.2,59.0 49.2,59.0 50.3,55.2 51.3,59.0 52.3,55.2 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,51.4 61.6,51.4 62.6,59.0 63.6,59.0 64.7,55.2 65.7,55.2 66.7,59.0 67.8,59.0 68.8,47.6 69.8,59.0 70.8,59.0 71.9,51.4 72.9,59.0 73.9,59.0 75.0,55.2 76.0,59.0 77.0,59.0 78.0,47.6 79.1,59.0 80.1,55.2 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,55.2 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,51.4 92.4,51.4 93.5,59.0 94.5,59.0 95.5,59.0 96.6,55.2 97.6,59.0 98.6,59.0 99.6,55.2 100.7,59.0 101.7,59.0 102.7,55.2 103.8,59.0 104.8,55.2 105.8,59.0 106.8,59.0 107.9,47.6 108.9,59.0 109.9,55.2 111.0,51.4 112.0,59.0 113.0,55.2 114.0,59.0 115.1,59.0 116.1,55.2 117.1,59.0 118.1,55.2 119.2,59.0 120.2,47.6 121.2,59.0 122.3,55.2 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,55.2 128.4,59.0 129.5,47.6 130.5,55.2 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,47.6 136.7,59.0 137.7,59.0 138.7,55.2 139.7,59.0 140.8,59.0 141.8,55.2 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,55.2 148.0,55.2 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,55.2 154.1,55.2 155.2,55.2 156.2,59.0 157.2,59.0 158.3,43.9 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,55.2 170.6,59.0 171.6,51.4 172.7,59.0 173.7,59.0 174.7,51.4 175.7,59.0 176.8,59.0 177.8,59.0 178.8,43.9 179.9,17.4 180.9,6.0 181.9,21.1 182.9,59.0 184.0,51.4 185.0,59.0 186.0,47.6 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,55.2 194.2,40.1 195.3,55.2 196.3,59.0 197.3,59.0 198.4,59.0 199.4,51.4 200.4,55.2 201.4,47.6 202.5,55.2 203.5,55.2 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,55.2 258.0,55.2 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,55.2 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,55.2 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,6.0 279.6,24.9 280.6,28.7 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,55.2 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CIBOLA COUNTY DET CTR<\/b><br>P.o. Box 3540<br>Grants, NM<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 9<\/b> (2026-01-27)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 9<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,53.1 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,53.1 132.5,53.1 133.6,53.1 134.6,53.1 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,53.1 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,17.8 223.0,17.8 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,17.8 250.8,6.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CINCINNATI HOLDROOM<\/b><br>9875 Redhill Drive<br>Blue Ash, OH<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 2<\/b> (2025-12-20)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,6.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,32.5 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,6.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,32.5 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,32.5 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,32.5 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,32.5 273.4,32.5 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CENTRAL ISLIP HOLD ROOM<\/b><br>100 Federal Plaza<br>Central Islip, NY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 35<\/b> (2025-10-31)&nbsp;&nbsp;<br><b>Mean:<\/b> 12/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 45<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,55.5 5.0,34.3 6.1,30.7 7.1,19.0 8.1,6.0 9.1,44.9 10.2,41.3 11.2,49.6 12.2,41.3 13.3,44.9 14.3,48.4 15.3,51.9 16.3,59.0 17.4,59.0 18.4,59.0 19.4,48.4 20.5,53.1 21.5,51.9 22.5,57.8 23.5,55.5 24.6,59.0 25.6,57.8 26.6,53.1 27.7,53.1 28.7,54.3 29.7,55.5 30.7,46.0 31.8,53.1 32.8,59.0 33.8,49.6 34.9,47.2 35.9,49.6 36.9,55.5 37.9,56.6 39.0,54.3 40.0,54.3 41.0,51.9 42.0,42.5 43.1,47.2 44.1,49.6 45.1,53.1 46.2,56.6 47.2,56.6 48.2,51.9 49.2,53.1 50.3,48.4 51.3,35.4 52.3,46.0 53.4,59.0 54.4,57.8 55.4,48.4 56.4,41.3 57.5,53.1 58.5,56.6 59.5,44.9 60.6,57.8 61.6,59.0 62.6,44.9 63.6,42.5 64.7,47.2 65.7,49.6 66.7,47.2 67.8,57.8 68.8,53.1 69.8,48.4 70.8,48.4 71.9,44.9 72.9,48.4 73.9,48.4 75.0,59.0 76.0,59.0 77.0,50.8 78.0,49.6 79.1,46.0 80.1,41.3 81.1,42.5 82.2,48.4 83.2,59.0 84.2,44.9 85.2,51.9 86.3,55.5 87.3,47.2 88.3,49.6 89.4,59.0 90.4,56.6 91.4,47.2 92.4,43.7 93.5,41.3 94.5,41.3 95.5,51.9 96.6,57.8 97.6,57.8 98.6,55.5 99.6,50.8 100.7,37.8 101.7,27.2 102.7,48.4 103.8,59.0 104.8,55.5 105.8,53.1 106.8,44.9 107.9,46.0 108.9,47.2 109.9,54.3 111.0,59.0 112.0,57.8 113.0,47.2 114.0,55.5 115.1,56.6 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,51.9 121.2,51.9 122.3,40.2 123.3,43.7 124.3,49.6 125.3,59.0 126.4,55.5 127.4,43.7 128.4,51.9 129.5,48.4 130.5,49.6 131.5,50.8 132.5,59.0 133.6,57.8 134.6,48.4 135.6,49.6 136.7,42.5 137.7,46.0 138.7,40.2 139.7,53.1 140.8,53.1 141.8,53.1 142.8,36.6 143.9,37.8 144.9,48.4 145.9,40.2 146.9,56.6 148.0,57.8 149.0,51.9 150.0,40.2 151.1,46.0 152.1,39.0 153.1,47.2 154.1,48.4 155.2,42.5 156.2,43.7 157.2,42.5 158.3,27.2 159.3,24.8 160.3,17.8 161.3,39.0 162.4,42.5 163.4,33.1 164.4,35.4 165.5,29.6 166.5,30.7 167.5,26.0 168.5,39.0 169.6,43.7 170.6,40.2 171.6,30.7 172.7,33.1 173.7,28.4 174.7,39.0 175.7,37.8 176.8,36.6 177.8,40.2 178.8,29.6 179.9,29.6 180.9,31.9 181.9,35.4 182.9,43.7 184.0,41.3 185.0,39.0 186.0,21.3 187.0,22.5 188.1,35.4 189.1,55.5 190.1,57.8 191.2,43.7 192.2,30.7 193.2,27.2 194.2,22.5 195.3,19.0 196.3,21.3 197.3,41.3 198.4,35.4 199.4,37.8 200.4,28.4 201.4,27.2 202.5,31.9 203.5,27.2 204.5,33.1 205.6,37.8 206.6,48.4 207.6,39.0 208.6,43.7 209.7,44.9 210.7,30.7 211.7,50.8 212.8,46.0 213.8,54.3 214.8,54.3 215.8,57.8 216.9,57.8 217.9,57.8 218.9,56.6 220.0,56.6 221.0,55.5 222.0,57.8 223.0,57.8 224.1,57.8 225.1,57.8 226.1,57.8 227.2,57.8 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,56.6 233.3,57.8 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,57.8 239.5,59.0 240.5,49.6 241.6,59.0 242.6,59.0 243.6,59.0 244.6,56.6 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,50.8 251.8,40.2 252.9,42.5 253.9,51.9 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,46.0 260.1,47.2 261.1,57.8 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,56.6 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,57.8 281.7,54.3 282.7,51.9 283.7,59.0 284.7,47.2 285.8,53.1 286.8,51.9 287.8,49.6 288.9,50.8 289.9,56.6 290.9,59.0 291.9,59.0 293.0,57.8 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CLEVELAND HOLD ROOM<\/b><br>1240 E. 9TH STREET, ROOM 585<br>CLEVELAND, OH<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 2<\/b> (2025-11-20)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 14<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,6.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,55.2 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,55.2 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,55.2 36.9,55.2 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,55.2 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,55.2 55.4,59.0 56.4,59.0 57.5,51.4 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,17.4 64.7,6.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,51.4 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,43.9 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,51.4 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,55.2 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,55.2 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,55.2 137.7,59.0 138.7,59.0 139.7,55.2 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,55.2 145.9,59.0 146.9,59.0 148.0,59.0 149.0,55.2 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,51.4 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,55.2 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,55.2 232.3,55.2 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,55.2 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,51.4 270.3,59.0 271.4,59.0 272.4,51.4 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">COLUMBUS HOLDROOM<\/b><br>50 WEST BROAD ST<br>COLUMBUS, OH<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 3<\/b> (2025-12-15)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 4<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,45.8 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,6.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,32.5 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,45.8 35.9,45.8 36.9,45.8 37.9,45.8 39.0,45.8 40.0,45.8 41.0,45.8 42.0,45.8 43.1,45.8 44.1,45.8 45.1,45.8 46.2,45.8 47.2,45.8 48.2,45.8 49.2,45.8 50.3,45.8 51.3,45.8 52.3,45.8 53.4,45.8 54.4,45.8 55.4,45.8 56.4,45.8 57.5,45.8 58.5,45.8 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,19.2 207.6,59.0 208.6,59.0 209.7,59.0 210.7,45.8 211.7,45.8 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,45.8 248.8,59.0 249.8,59.0 250.8,59.0 251.8,45.8 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,45.8 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,32.5 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CHARLOTTE HOLD ROOM<\/b><br>601 E Trade St<br>CHARLOTTE, NC<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 145<\/b> (2025-11-17)&nbsp;&nbsp;<br><b>Mean:<\/b> 30/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 145<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,58.3 5.0,56.8 6.1,51.3 7.1,50.2 8.1,53.2 9.1,47.3 10.2,57.5 11.2,56.4 12.2,54.6 13.3,52.8 14.3,49.9 15.3,57.2 16.3,51.3 17.4,57.9 18.4,56.8 19.4,49.1 20.5,53.9 21.5,52.1 22.5,53.9 23.5,53.9 24.6,46.9 25.6,49.9 26.6,46.9 27.7,47.3 28.7,48.4 29.7,42.6 30.7,44.7 31.8,45.1 32.8,41.5 33.8,42.9 34.9,50.6 35.9,48.0 36.9,54.2 37.9,59.0 39.0,49.1 40.0,48.4 41.0,48.8 42.0,51.7 43.1,46.9 44.1,56.8 45.1,51.3 46.2,51.0 47.2,56.4 48.2,54.6 49.2,56.8 50.3,52.4 51.3,49.9 52.3,48.0 53.4,52.1 54.4,51.3 55.4,49.1 56.4,49.9 57.5,44.4 58.5,48.4 59.5,45.8 60.6,51.7 61.6,48.8 62.6,49.9 63.6,46.2 64.7,43.3 65.7,47.7 66.7,41.5 67.8,49.9 68.8,48.4 69.8,51.7 70.8,56.1 71.9,52.4 72.9,55.7 73.9,55.3 75.0,58.3 76.0,57.9 77.0,55.7 78.0,55.0 79.1,57.9 80.1,53.9 81.1,50.6 82.2,58.6 83.2,58.3 84.2,54.6 85.2,47.3 86.3,44.0 87.3,44.4 88.3,43.6 89.4,54.6 90.4,55.7 91.4,56.1 92.4,53.2 93.5,52.4 94.5,53.5 95.5,53.5 96.6,53.5 97.6,50.2 98.6,52.8 99.6,50.2 100.7,49.5 101.7,55.7 102.7,51.3 103.8,57.2 104.8,57.9 105.8,53.9 106.8,52.4 107.9,50.2 108.9,44.7 109.9,46.2 111.0,56.8 112.0,59.0 113.0,53.5 114.0,51.3 115.1,55.0 116.1,56.1 117.1,53.9 118.1,59.0 119.2,58.3 120.2,56.8 121.2,56.8 122.3,54.2 123.3,56.1 124.3,51.0 125.3,58.3 126.4,56.1 127.4,58.6 128.4,51.7 129.5,53.9 130.5,52.8 131.5,45.1 132.5,58.6 133.6,57.5 134.6,55.0 135.6,52.4 136.7,55.7 137.7,48.0 138.7,45.1 139.7,59.0 140.8,57.2 141.8,56.8 142.8,51.7 143.9,49.5 144.9,47.7 145.9,44.0 146.9,58.6 148.0,57.5 149.0,56.4 150.0,48.0 151.1,52.8 152.1,47.7 153.1,51.0 154.1,50.6 155.2,53.9 156.2,51.3 157.2,45.5 158.3,55.0 159.3,55.0 160.3,52.1 161.3,59.0 162.4,56.1 163.4,55.0 164.4,45.8 165.5,50.6 166.5,45.1 167.5,53.5 168.5,59.0 169.6,57.2 170.6,55.3 171.6,57.5 172.7,51.7 173.7,44.4 174.7,55.7 175.7,26.8 176.8,18.1 177.8,6.0 178.8,30.9 179.9,32.7 180.9,38.5 181.9,48.0 182.9,54.6 184.0,51.7 185.0,42.2 186.0,42.6 187.0,36.0 188.1,36.3 189.1,50.2 190.1,56.4 191.2,56.1 192.2,48.0 193.2,48.8 194.2,41.1 195.3,35.6 196.3,43.3 197.3,51.0 198.4,56.4 199.4,51.3 200.4,49.5 201.4,46.2 202.5,41.8 203.5,45.1 204.5,50.6 205.6,55.0 206.6,54.2 207.6,46.9 208.6,39.6 209.7,43.6 210.7,44.4 211.7,38.9 212.8,52.1 213.8,46.9 214.8,46.2 215.8,56.1 216.9,59.0 217.9,53.9 218.9,48.0 220.0,43.3 221.0,53.2 222.0,49.1 223.0,49.9 224.1,59.0 225.1,48.8 226.1,53.2 227.2,52.4 228.2,45.8 229.2,37.8 230.2,33.4 231.3,36.7 232.3,36.0 233.3,45.8 234.4,46.6 235.4,49.9 236.4,48.4 237.4,41.1 238.5,43.6 239.5,42.2 240.5,52.1 241.6,52.1 242.6,44.7 243.6,45.5 244.6,37.1 245.7,33.0 246.7,29.0 247.7,56.1 248.8,59.0 249.8,57.2 250.8,48.4 251.8,40.4 252.9,45.5 253.9,37.8 254.9,59.0 256.0,59.0 257.0,56.8 258.0,53.9 259.0,42.9 260.1,52.8 261.1,46.9 262.1,53.2 263.1,54.6 264.2,48.4 265.2,45.5 266.2,42.6 267.3,43.3 268.3,41.5 269.3,47.7 270.3,48.0 271.4,46.9 272.4,51.0 273.4,45.1 274.5,43.3 275.5,42.6 276.5,51.0 277.5,46.2 278.6,55.0 279.6,45.5 280.6,37.4 281.7,38.9 282.7,40.7 283.7,45.5 284.7,37.8 285.8,39.3 286.8,40.7 287.8,42.6 288.9,37.4 289.9,38.2 290.9,44.0 291.9,45.8 293.0,38.9 294.0,33.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BATAVIA COMMAND CENTER HOLDROOM<\/b><br>4250 FEDERAL DRIVE<br>Batavia, NY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 2<\/b> (2025-12-30)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,32.5 181.9,32.5 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,6.0 223.0,6.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CHATTANOOGA HOLD ROOM<\/b><br>3117 Dayton Blvd<br>CHATTANOOGA, TN<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 15<\/b> (2025-11-19)&nbsp;&nbsp;<br><b>Mean:<\/b> 4/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 15<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,55.5 5.0,48.4 6.1,51.9 7.1,48.4 8.1,48.4 9.1,34.3 10.2,48.4 11.2,48.4 12.2,44.9 13.3,59.0 14.3,44.9 15.3,44.9 16.3,27.2 17.4,48.4 18.4,59.0 19.4,34.3 20.5,34.3 21.5,44.9 22.5,59.0 23.5,30.7 24.6,44.9 25.6,44.9 26.6,44.9 27.7,41.3 28.7,37.8 29.7,44.9 30.7,41.3 31.8,59.0 32.8,51.9 33.8,48.4 34.9,44.9 35.9,37.8 36.9,16.6 37.9,59.0 39.0,48.4 40.0,59.0 41.0,48.4 42.0,37.8 43.1,37.8 44.1,48.4 45.1,51.9 46.2,59.0 47.2,44.9 48.2,55.5 49.2,51.9 50.3,37.8 51.3,34.3 52.3,51.9 53.4,59.0 54.4,48.4 55.4,44.9 56.4,51.9 57.5,48.4 58.5,48.4 59.5,51.9 60.6,59.0 61.6,51.9 62.6,48.4 63.6,44.9 64.7,30.7 65.7,44.9 66.7,37.8 67.8,59.0 68.8,55.5 69.8,48.4 70.8,51.9 71.9,34.3 72.9,41.3 73.9,37.8 75.0,59.0 76.0,44.9 77.0,51.9 78.0,44.9 79.1,37.8 80.1,55.5 81.1,48.4 82.2,59.0 83.2,55.5 84.2,37.8 85.2,41.3 86.3,41.3 87.3,37.8 88.3,44.9 89.4,59.0 90.4,41.3 91.4,37.8 92.4,37.8 93.5,34.3 94.5,41.3 95.5,34.3 96.6,59.0 97.6,44.9 98.6,59.0 99.6,48.4 100.7,27.2 101.7,23.7 102.7,41.3 103.8,59.0 104.8,55.5 105.8,48.4 106.8,44.9 107.9,34.3 108.9,37.8 109.9,37.8 111.0,59.0 112.0,51.9 113.0,51.9 114.0,34.3 115.1,23.7 116.1,48.4 117.1,51.9 118.1,59.0 119.2,41.3 120.2,48.4 121.2,34.3 122.3,16.6 123.3,34.3 124.3,44.9 125.3,59.0 126.4,37.8 127.4,41.3 128.4,27.2 129.5,30.7 130.5,51.9 131.5,55.5 132.5,59.0 133.6,48.4 134.6,41.3 135.6,37.8 136.7,30.7 137.7,20.1 138.7,41.3 139.7,59.0 140.8,37.8 141.8,59.0 142.8,34.3 143.9,48.4 144.9,51.9 145.9,37.8 146.9,59.0 148.0,51.9 149.0,51.9 150.0,30.7 151.1,13.1 152.1,27.2 153.1,34.3 154.1,59.0 155.2,44.9 156.2,48.4 157.2,44.9 158.3,27.2 159.3,37.8 160.3,41.3 161.3,59.0 162.4,37.8 163.4,55.5 164.4,34.3 165.5,27.2 166.5,44.9 167.5,37.8 168.5,59.0 169.6,37.8 170.6,41.3 171.6,59.0 172.7,20.1 173.7,37.8 174.7,34.3 175.7,59.0 176.8,51.9 177.8,48.4 178.8,37.8 179.9,6.0 180.9,16.6 181.9,44.9 182.9,59.0 184.0,37.8 185.0,48.4 186.0,34.3 187.0,27.2 188.1,59.0 189.1,44.9 190.1,59.0 191.2,44.9 192.2,37.8 193.2,44.9 194.2,44.9 195.3,44.9 196.3,44.9 197.3,59.0 198.4,34.3 199.4,37.8 200.4,51.9 201.4,16.6 202.5,20.1 203.5,27.2 204.5,48.4 205.6,55.5 206.6,44.9 207.6,30.7 208.6,30.7 209.7,37.8 210.7,41.3 211.7,55.5 212.8,55.5 213.8,48.4 214.8,34.3 215.8,51.9 216.9,51.9 217.9,44.9 218.9,44.9 220.0,51.9 221.0,44.9 222.0,27.2 223.0,41.3 224.1,44.9 225.1,48.4 226.1,55.5 227.2,48.4 228.2,51.9 229.2,41.3 230.2,23.7 231.3,34.3 232.3,34.3 233.3,59.0 234.4,37.8 235.4,37.8 236.4,51.9 237.4,37.8 238.5,37.8 239.5,27.2 240.5,59.0 241.6,51.9 242.6,51.9 243.6,51.9 244.6,34.3 245.7,44.9 246.7,37.8 247.7,59.0 248.8,48.4 249.8,59.0 250.8,48.4 251.8,27.2 252.9,59.0 253.9,20.1 254.9,59.0 256.0,51.9 257.0,55.5 258.0,51.9 259.0,37.8 260.1,48.4 261.1,34.3 262.1,59.0 263.1,37.8 264.2,59.0 265.2,48.4 266.2,27.2 267.3,44.9 268.3,27.2 269.3,59.0 270.3,41.3 271.4,51.9 272.4,44.9 273.4,30.7 274.5,34.3 275.5,44.9 276.5,59.0 277.5,51.9 278.6,55.5 279.6,27.2 280.6,34.3 281.7,55.5 282.7,30.7 283.7,59.0 284.7,37.8 285.8,55.5 286.8,44.9 287.8,23.7 288.9,23.7 289.9,34.3 290.9,59.0 291.9,41.3 293.0,48.4 294.0,44.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">COLUMBIA, SC HOLDROOM<\/b><br>1835 Assembly St Columbia, SC 29201<br>COLUMBIA, SC<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 8<\/b> (2025-10-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 15<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,55.5 5.0,48.4 6.1,55.5 7.1,51.9 8.1,55.5 9.1,44.9 10.2,55.5 11.2,55.5 12.2,55.5 13.3,55.5 14.3,51.9 15.3,48.4 16.3,44.9 17.4,55.5 18.4,55.5 19.4,51.9 20.5,55.5 21.5,55.5 22.5,55.5 23.5,44.9 24.6,55.5 25.6,55.5 26.6,51.9 27.7,55.5 28.7,44.9 29.7,55.5 30.7,51.9 31.8,55.5 32.8,55.5 33.8,48.4 34.9,41.3 35.9,48.4 36.9,41.3 37.9,55.5 39.0,55.5 40.0,55.5 41.0,48.4 42.0,55.5 43.1,51.9 44.1,55.5 45.1,37.8 46.2,51.9 47.2,51.9 48.2,44.9 49.2,51.9 50.3,34.3 51.3,51.9 52.3,44.9 53.4,51.9 54.4,59.0 55.4,51.9 56.4,59.0 57.5,55.5 58.5,59.0 59.5,51.9 60.6,55.5 61.6,55.5 62.6,55.5 63.6,55.5 64.7,55.5 65.7,59.0 66.7,44.9 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,48.4 72.9,59.0 73.9,48.4 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,55.5 80.1,59.0 81.1,48.4 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,44.9 87.3,59.0 88.3,51.9 89.4,59.0 90.4,59.0 91.4,51.9 92.4,59.0 93.5,48.4 94.5,59.0 95.5,44.9 96.6,59.0 97.6,59.0 98.6,59.0 99.6,34.3 100.7,37.8 101.7,51.9 102.7,59.0 103.8,59.0 104.8,59.0 105.8,41.3 106.8,59.0 107.9,59.0 108.9,59.0 109.9,48.4 111.0,59.0 112.0,59.0 113.0,55.5 114.0,59.0 115.1,55.5 116.1,59.0 117.1,44.9 118.1,44.9 119.2,59.0 120.2,55.5 121.2,59.0 122.3,51.9 123.3,59.0 124.3,48.4 125.3,59.0 126.4,59.0 127.4,48.4 128.4,59.0 129.5,48.4 130.5,55.5 131.5,30.7 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,51.9 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,48.4 143.9,41.3 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,55.5 150.0,59.0 151.1,59.0 152.1,59.0 153.1,48.4 154.1,59.0 155.2,59.0 156.2,55.5 157.2,59.0 158.3,34.3 159.3,59.0 160.3,44.9 161.3,59.0 162.4,59.0 163.4,55.5 164.4,59.0 165.5,55.5 166.5,59.0 167.5,51.9 168.5,51.9 169.6,51.9 170.6,48.4 171.6,51.9 172.7,48.4 173.7,51.9 174.7,48.4 175.7,51.9 176.8,51.9 177.8,48.4 178.8,51.9 179.9,41.3 180.9,51.9 181.9,48.4 182.9,51.9 184.0,51.9 185.0,48.4 186.0,51.9 187.0,41.3 188.1,51.9 189.1,59.0 190.1,59.0 191.2,59.0 192.2,48.4 193.2,59.0 194.2,55.5 195.3,59.0 196.3,48.4 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,55.5 202.5,59.0 203.5,55.5 204.5,59.0 205.6,59.0 206.6,55.5 207.6,59.0 208.6,37.8 209.7,59.0 210.7,48.4 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,41.3 222.0,59.0 223.0,55.5 224.1,59.0 225.1,55.5 226.1,59.0 227.2,59.0 228.2,55.5 229.2,59.0 230.2,48.4 231.3,59.0 232.3,55.5 233.3,59.0 234.4,59.0 235.4,55.5 236.4,59.0 237.4,55.5 238.5,59.0 239.5,48.4 240.5,59.0 241.6,59.0 242.6,59.0 243.6,48.4 244.6,48.4 245.7,59.0 246.7,44.9 247.7,59.0 248.8,59.0 249.8,51.9 250.8,59.0 251.8,55.5 252.9,59.0 253.9,37.8 254.9,59.0 256.0,59.0 257.0,44.9 258.0,48.4 259.0,48.4 260.1,55.5 261.1,48.4 262.1,55.5 263.1,55.5 264.2,55.5 265.2,55.5 266.2,44.9 267.3,55.5 268.3,48.4 269.3,55.5 270.3,55.5 271.4,55.5 272.4,59.0 273.4,59.0 274.5,59.0 275.5,55.5 276.5,59.0 277.5,59.0 278.6,48.4 279.6,59.0 280.6,6.0 281.7,59.0 282.7,48.4 283.7,59.0 284.7,59.0 285.8,59.0 286.8,48.4 287.8,51.9 288.9,59.0 289.9,44.9 290.9,59.0 291.9,55.5 293.0,55.5 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">COCONINO CO DETENTION FACILITY<\/b><br>952 E. Saw Mill Road<br>Flagstaff, AZ<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 9<\/b> (2025-11-02)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 9<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,6.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CEDAR RAPIDS HOLD ROOM<\/b><br>53 3rd Ave Bridge<br>CEDAR RAPIDS, IA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 12<\/b> (2025-10-10)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 17<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,40.3 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,34.1 11.2,34.1 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,37.2 18.4,37.2 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,34.1 40.0,34.1 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,43.4 60.6,43.4 61.6,55.9 62.6,55.9 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,30.9 75.0,34.1 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,30.9 82.2,30.9 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,6.0 90.4,6.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,37.2 96.6,37.2 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,24.7 103.8,21.6 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,6.0 111.0,6.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,43.4 118.1,43.4 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,43.4 125.3,43.4 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,55.9 132.5,55.9 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,21.6 139.7,21.6 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,52.8 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,55.9 215.8,55.9 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CORPUS CHRISTI EOR HOLD ROOM<\/b><br>9149 State Highway 44<br>Corpus Christi, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 8<\/b> (2026-02-05)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 9<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,53.1 6.1,53.1 7.1,53.1 8.1,59.0 9.1,59.0 10.2,59.0 11.2,53.1 12.2,59.0 13.3,59.0 14.3,59.0 15.3,53.1 16.3,53.1 17.4,47.2 18.4,53.1 19.4,53.1 20.5,47.2 21.5,53.1 22.5,47.2 23.5,41.3 24.6,41.3 25.6,59.0 26.6,53.1 27.7,41.3 28.7,59.0 29.7,53.1 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,29.6 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,53.1 47.2,59.0 48.2,59.0 49.2,59.0 50.3,53.1 51.3,59.0 52.3,47.2 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,35.4 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,47.2 64.7,53.1 65.7,53.1 66.7,35.4 67.8,59.0 68.8,59.0 69.8,53.1 70.8,59.0 71.9,53.1 72.9,59.0 73.9,41.3 75.0,53.1 76.0,59.0 77.0,59.0 78.0,35.4 79.1,59.0 80.1,41.3 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,47.2 86.3,47.2 87.3,59.0 88.3,53.1 89.4,47.2 90.4,59.0 91.4,59.0 92.4,59.0 93.5,41.3 94.5,53.1 95.5,59.0 96.6,53.1 97.6,59.0 98.6,47.2 99.6,41.3 100.7,35.4 101.7,35.4 102.7,35.4 103.8,59.0 104.8,59.0 105.8,59.0 106.8,11.9 107.9,41.3 108.9,47.2 109.9,53.1 111.0,53.1 112.0,53.1 113.0,59.0 114.0,59.0 115.1,47.2 116.1,53.1 117.1,41.3 118.1,53.1 119.2,59.0 120.2,59.0 121.2,47.2 122.3,53.1 123.3,59.0 124.3,59.0 125.3,47.2 126.4,59.0 127.4,47.2 128.4,53.1 129.5,17.8 130.5,59.0 131.5,53.1 132.5,59.0 133.6,59.0 134.6,59.0 135.6,29.6 136.7,53.1 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,41.3 142.8,53.1 143.9,59.0 144.9,41.3 145.9,41.3 146.9,47.2 148.0,53.1 149.0,41.3 150.0,47.2 151.1,59.0 152.1,41.3 153.1,47.2 154.1,35.4 155.2,59.0 156.2,41.3 157.2,53.1 158.3,47.2 159.3,47.2 160.3,41.3 161.3,53.1 162.4,53.1 163.4,53.1 164.4,59.0 165.5,59.0 166.5,59.0 167.5,41.3 168.5,47.2 169.6,53.1 170.6,47.2 171.6,53.1 172.7,59.0 173.7,53.1 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,35.4 181.9,59.0 182.9,47.2 184.0,59.0 185.0,41.3 186.0,29.6 187.0,47.2 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,53.1 193.2,41.3 194.2,41.3 195.3,35.4 196.3,53.1 197.3,53.1 198.4,59.0 199.4,41.3 200.4,17.8 201.4,53.1 202.5,47.2 203.5,59.0 204.5,53.1 205.6,59.0 206.6,47.2 207.6,35.4 208.6,41.3 209.7,53.1 210.7,53.1 211.7,35.4 212.8,59.0 213.8,53.1 214.8,47.2 215.8,41.3 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,53.1 223.0,35.4 224.1,59.0 225.1,53.1 226.1,47.2 227.2,53.1 228.2,53.1 229.2,53.1 230.2,47.2 231.3,53.1 232.3,35.4 233.3,41.3 234.4,59.0 235.4,59.0 236.4,41.3 237.4,59.0 238.5,59.0 239.5,53.1 240.5,47.2 241.6,59.0 242.6,47.2 243.6,59.0 244.6,47.2 245.7,53.1 246.7,53.1 247.7,53.1 248.8,53.1 249.8,47.2 250.8,47.2 251.8,47.2 252.9,35.4 253.9,47.2 254.9,41.3 256.0,41.3 257.0,35.4 258.0,47.2 259.0,59.0 260.1,11.9 261.1,53.1 262.1,47.2 263.1,59.0 264.2,59.0 265.2,47.2 266.2,53.1 267.3,41.3 268.3,47.2 269.3,53.1 270.3,59.0 271.4,59.0 272.4,53.1 273.4,41.3 274.5,53.1 275.5,59.0 276.5,53.1 277.5,59.0 278.6,41.3 279.6,47.2 280.6,47.2 281.7,41.3 282.7,41.3 283.7,47.2 284.7,53.1 285.8,23.7 286.8,47.2 287.8,29.6 288.9,41.3 289.9,6.0 290.9,53.1 291.9,59.0 293.0,41.3 294.0,29.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">COLO SPRINGS DEN HSI HOLD<\/b><br>415 East Pikes Peak Avenue<br>Colorado Springs, CO<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 9<\/b> (2025-10-08)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 9<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,53.1 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,53.1 14.3,47.2 15.3,41.3 16.3,53.1 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,47.2 25.6,35.4 26.6,47.2 27.7,47.2 28.7,53.1 29.7,47.2 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,53.1 35.9,53.1 36.9,53.1 37.9,59.0 39.0,59.0 40.0,59.0 41.0,47.2 42.0,59.0 43.1,53.1 44.1,41.3 45.1,53.1 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,47.2 51.3,59.0 52.3,53.1 53.4,59.0 54.4,59.0 55.4,47.2 56.4,53.1 57.5,53.1 58.5,53.1 59.5,53.1 60.6,47.2 61.6,53.1 62.6,47.2 63.6,53.1 64.7,35.4 65.7,53.1 66.7,53.1 67.8,59.0 68.8,53.1 69.8,59.0 70.8,53.1 71.9,41.3 72.9,59.0 73.9,59.0 75.0,53.1 76.0,47.2 77.0,53.1 78.0,53.1 79.1,41.3 80.1,59.0 81.1,59.0 82.2,59.0 83.2,41.3 84.2,29.6 85.2,29.6 86.3,41.3 87.3,47.2 88.3,17.8 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,47.2 94.5,59.0 95.5,59.0 96.6,47.2 97.6,41.3 98.6,53.1 99.6,41.3 100.7,47.2 101.7,35.4 102.7,53.1 103.8,53.1 104.8,47.2 105.8,53.1 106.8,53.1 107.9,41.3 108.9,47.2 109.9,59.0 111.0,47.2 112.0,59.0 113.0,47.2 114.0,53.1 115.1,35.4 116.1,59.0 117.1,53.1 118.1,47.2 119.2,47.2 120.2,53.1 121.2,41.3 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,53.1 128.4,53.1 129.5,53.1 130.5,47.2 131.5,59.0 132.5,59.0 133.6,53.1 134.6,47.2 135.6,41.3 136.7,6.0 137.7,53.1 138.7,59.0 139.7,59.0 140.8,53.1 141.8,41.3 142.8,35.4 143.9,53.1 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,41.3 151.1,53.1 152.1,59.0 153.1,47.2 154.1,59.0 155.2,59.0 156.2,53.1 157.2,47.2 158.3,53.1 159.3,53.1 160.3,59.0 161.3,53.1 162.4,59.0 163.4,59.0 164.4,17.8 165.5,41.3 166.5,47.2 167.5,47.2 168.5,53.1 169.6,59.0 170.6,59.0 171.6,59.0 172.7,41.3 173.7,41.3 174.7,35.4 175.7,35.4 176.8,47.2 177.8,41.3 178.8,35.4 179.9,53.1 180.9,53.1 181.9,41.3 182.9,35.4 184.0,59.0 185.0,41.3 186.0,17.8 187.0,59.0 188.1,41.3 189.1,41.3 190.1,59.0 191.2,59.0 192.2,53.1 193.2,59.0 194.2,59.0 195.3,11.9 196.3,59.0 197.3,47.2 198.4,47.2 199.4,53.1 200.4,47.2 201.4,53.1 202.5,47.2 203.5,59.0 204.5,59.0 205.6,47.2 206.6,41.3 207.6,59.0 208.6,59.0 209.7,53.1 210.7,53.1 211.7,47.2 212.8,41.3 213.8,53.1 214.8,47.2 215.8,53.1 216.9,53.1 217.9,53.1 218.9,53.1 220.0,29.6 221.0,47.2 222.0,23.7 223.0,59.0 224.1,47.2 225.1,59.0 226.1,59.0 227.2,53.1 228.2,59.0 229.2,59.0 230.2,59.0 231.3,35.4 232.3,59.0 233.3,59.0 234.4,53.1 235.4,47.2 236.4,53.1 237.4,47.2 238.5,53.1 239.5,47.2 240.5,59.0 241.6,53.1 242.6,35.4 243.6,47.2 244.6,41.3 245.7,35.4 246.7,47.2 247.7,47.2 248.8,53.1 249.8,53.1 250.8,53.1 251.8,41.3 252.9,53.1 253.9,59.0 254.9,41.3 256.0,53.1 257.0,59.0 258.0,47.2 259.0,47.2 260.1,59.0 261.1,53.1 262.1,59.0 263.1,59.0 264.2,47.2 265.2,59.0 266.2,53.1 267.3,35.4 268.3,53.1 269.3,47.2 270.3,53.1 271.4,41.3 272.4,47.2 273.4,59.0 274.5,59.0 275.5,53.1 276.5,41.3 277.5,47.2 278.6,47.2 279.6,59.0 280.6,47.2 281.7,41.3 282.7,59.0 283.7,53.1 284.7,53.1 285.8,53.1 286.8,53.1 287.8,53.1 288.9,53.1 289.9,53.1 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CASPER HOLDROOM<\/b><br>150 E. B STREET<br>CASPER, WY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 2<\/b> (2025-11-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 5<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,37.8 6.1,27.2 7.1,16.6 8.1,16.6 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,37.8 14.3,48.4 15.3,6.0 16.3,59.0 17.4,59.0 18.4,48.4 19.4,59.0 20.5,59.0 21.5,48.4 22.5,59.0 23.5,59.0 24.6,48.4 25.6,59.0 26.6,59.0 27.7,59.0 28.7,48.4 29.7,59.0 30.7,59.0 31.8,48.4 32.8,59.0 33.8,59.0 34.9,48.4 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,48.4 49.2,48.4 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,48.4 65.7,48.4 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,48.4 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,48.4 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,48.4 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,48.4 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,48.4 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,37.8 129.5,59.0 130.5,48.4 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,48.4 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,37.8 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,48.4 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,48.4 201.4,48.4 202.5,59.0 203.5,48.4 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,48.4 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,48.4 229.2,37.8 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,37.8 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,37.8 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,48.4 260.1,59.0 261.1,37.8 262.1,59.0 263.1,59.0 264.2,48.4 265.2,59.0 266.2,48.4 267.3,59.0 268.3,27.2 269.3,59.0 270.3,59.0 271.4,59.0 272.4,48.4 273.4,59.0 274.5,59.0 275.5,48.4 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,37.8 281.7,59.0 282.7,48.4 283.7,48.4 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,48.4 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CUMBERLAND COUNTY JAIL<\/b><br>50 County Way<br>Portland, ME<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 65<\/b> (2025-10-21)&nbsp;&nbsp;<br><b>Mean:<\/b> 53/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 77<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,6.0 5.0,8.8 6.1,6.7 7.1,6.7 8.1,10.1 9.1,11.5 10.2,11.5 11.2,11.5 12.2,11.5 13.3,13.6 14.3,12.9 15.3,14.3 16.3,14.3 17.4,14.9 18.4,14.3 19.4,18.4 20.5,21.1 21.5,21.1 22.5,21.8 23.5,21.8 24.6,22.5 25.6,22.5 26.6,22.5 27.7,21.8 28.7,20.5 29.7,20.5 30.7,19.8 31.8,19.8 32.8,20.5 33.8,21.1 34.9,20.5 35.9,21.1 36.9,19.1 37.9,19.1 39.0,19.1 40.0,19.1 41.0,20.5 42.0,19.8 43.1,21.1 44.1,18.4 45.1,17.7 46.2,18.4 47.2,18.4 48.2,17.0 49.2,18.4 50.3,18.4 51.3,18.4 52.3,17.7 53.4,18.4 54.4,19.8 55.4,19.8 56.4,19.8 57.5,19.1 58.5,19.1 59.5,18.4 60.6,17.7 61.6,17.7 62.6,17.7 63.6,17.0 64.7,17.0 65.7,17.7 66.7,18.4 67.8,18.4 68.8,20.5 69.8,20.5 70.8,19.1 71.9,25.3 72.9,24.6 73.9,25.3 75.0,26.6 76.0,25.3 77.0,26.0 78.0,26.0 79.1,25.3 80.1,28.0 81.1,28.0 82.2,28.0 83.2,30.1 84.2,27.3 85.2,27.3 86.3,28.0 87.3,28.7 88.3,28.7 89.4,28.7 90.4,28.7 91.4,28.0 92.4,28.7 93.5,26.6 94.5,26.6 95.5,22.5 96.6,23.2 97.6,23.2 98.6,23.2 99.6,21.8 100.7,22.5 101.7,21.1 102.7,21.8 103.8,22.5 104.8,24.6 105.8,23.2 106.8,23.2 107.9,23.9 108.9,22.5 109.9,21.8 111.0,21.1 112.0,19.8 113.0,19.8 114.0,21.1 115.1,21.1 116.1,19.8 117.1,19.1 118.1,16.3 119.2,16.3 120.2,16.3 121.2,16.3 122.3,16.3 123.3,16.3 124.3,16.3 125.3,17.0 126.4,17.0 127.4,16.3 128.4,16.3 129.5,16.3 130.5,16.3 131.5,17.0 132.5,19.1 133.6,19.8 134.6,18.4 135.6,17.7 136.7,18.4 137.7,17.7 138.7,17.0 139.7,18.4 140.8,17.0 141.8,17.0 142.8,17.0 143.9,17.0 144.9,17.0 145.9,17.0 146.9,17.7 148.0,17.7 149.0,16.3 150.0,14.3 151.1,17.0 152.1,17.0 153.1,16.3 154.1,18.4 155.2,19.1 156.2,18.4 157.2,17.0 158.3,16.3 159.3,17.0 160.3,17.7 161.3,17.7 162.4,17.7 163.4,17.7 164.4,18.4 165.5,19.8 166.5,19.1 167.5,19.1 168.5,19.8 169.6,19.8 170.6,19.1 171.6,20.5 172.7,21.1 173.7,20.5 174.7,19.8 175.7,19.8 176.8,19.8 177.8,18.4 178.8,17.0 179.9,16.3 180.9,16.3 181.9,17.7 182.9,17.7 184.0,17.7 185.0,18.4 186.0,17.7 187.0,19.1 188.1,19.8 189.1,19.8 190.1,19.8 191.2,19.8 192.2,19.1 193.2,19.1 194.2,19.1 195.3,20.5 196.3,19.1 197.3,19.8 198.4,20.5 199.4,23.2 200.4,21.8 201.4,21.8 202.5,21.8 203.5,19.8 204.5,19.1 205.6,17.7 206.6,19.1 207.6,18.4 208.6,18.4 209.7,18.4 210.7,18.4 211.7,17.7 212.8,17.7 213.8,19.1 214.8,17.7 215.8,17.0 216.9,17.7 217.9,17.7 218.9,17.7 220.0,17.7 221.0,18.4 222.0,18.4 223.0,18.4 224.1,18.4 225.1,17.7 226.1,17.7 227.2,17.7 228.2,17.7 229.2,17.7 230.2,17.7 231.3,14.9 232.3,17.7 233.3,17.7 234.4,17.7 235.4,19.1 236.4,19.8 237.4,18.4 238.5,18.4 239.5,17.7 240.5,17.7 241.6,17.7 242.6,18.4 243.6,18.4 244.6,18.4 245.7,19.1 246.7,41.8 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">CENTRAL VA REGIONAL JAIL<\/b><br>13021 James Madison Hwy<br>Orange, VA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 2<\/b> (2026-01-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,32.5 62.6,32.5 63.6,59.0 64.7,32.5 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,32.5 75.0,32.5 76.0,32.5 77.0,32.5 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,32.5 92.4,32.5 93.5,32.5 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,32.5 102.7,32.5 103.8,32.5 104.8,32.5 105.8,59.0 106.8,59.0 107.9,6.0 108.9,32.5 109.9,32.5 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,32.5 116.1,32.5 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,32.5 130.5,32.5 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,32.5 137.7,32.5 138.7,32.5 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,32.5 197.3,32.5 198.4,32.5 199.4,59.0 200.4,32.5 201.4,32.5 202.5,32.5 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,32.5 213.8,32.5 214.8,32.5 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,32.5 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,32.5 230.2,32.5 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,6.0 240.5,6.0 241.6,6.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,32.5 264.2,32.5 265.2,32.5 266.2,32.5 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">DALLAS F.O. HOLD<\/b><br>8101 N. Stemmons Frwy<br>Dallas, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 213<\/b> (2025-10-23)&nbsp;&nbsp;<br><b>Mean:<\/b> 97/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 225<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,47.9 5.0,44.4 6.1,42.5 7.1,39.9 8.1,36.6 9.1,38.7 10.2,39.2 11.2,34.0 12.2,43.0 13.3,36.6 14.3,41.3 15.3,35.2 16.3,35.2 17.4,33.6 18.4,24.6 19.4,27.4 20.5,26.0 21.5,41.1 22.5,39.7 23.5,39.0 24.6,53.3 25.6,50.0 26.6,45.3 27.7,44.9 28.7,36.2 29.7,33.1 30.7,37.1 31.8,46.5 32.8,48.9 33.8,43.5 34.9,43.0 35.9,32.9 36.9,29.3 37.9,42.3 39.0,53.1 40.0,50.8 41.0,49.3 42.0,47.9 43.1,37.3 44.1,37.3 45.1,29.6 46.2,40.6 47.2,43.9 48.2,46.5 49.2,38.7 50.3,27.9 51.3,29.3 52.3,30.7 53.4,31.0 54.4,32.4 55.4,26.7 56.4,23.7 57.5,20.8 58.5,26.5 59.5,28.6 60.6,44.2 61.6,47.9 62.6,44.6 63.6,43.2 64.7,38.7 65.7,31.0 66.7,34.5 67.8,35.0 68.8,48.9 69.8,50.8 70.8,49.1 71.9,39.0 72.9,41.1 73.9,35.0 75.0,37.3 76.0,33.6 77.0,26.5 78.0,34.7 79.1,36.9 80.1,30.3 81.1,29.1 82.2,30.3 83.2,37.8 84.2,40.4 85.2,39.0 86.3,32.6 87.3,27.2 88.3,30.0 89.4,31.0 90.4,29.6 91.4,35.4 92.4,30.0 93.5,31.0 94.5,37.3 95.5,43.7 96.6,46.0 97.6,46.5 98.6,47.2 99.6,45.1 100.7,45.3 101.7,38.7 102.7,33.6 103.8,31.2 104.8,41.1 105.8,39.7 106.8,40.2 107.9,26.7 108.9,10.2 109.9,17.5 111.0,20.6 112.0,27.2 113.0,13.1 114.0,11.4 115.1,16.4 116.1,6.0 117.1,12.4 118.1,33.8 119.2,42.3 120.2,32.4 121.2,36.2 122.3,40.4 123.3,53.1 124.3,58.8 125.3,58.8 126.4,58.5 127.4,58.8 128.4,47.9 129.5,26.0 130.5,12.6 131.5,13.8 132.5,31.9 133.6,53.3 134.6,42.5 135.6,26.0 136.7,22.7 137.7,19.4 138.7,17.8 139.7,38.3 140.8,44.2 141.8,40.4 142.8,30.3 143.9,19.9 144.9,22.0 145.9,19.2 146.9,30.0 148.0,39.7 149.0,29.1 150.0,19.2 151.1,12.8 152.1,8.8 153.1,14.0 154.1,26.3 155.2,33.3 156.2,20.6 157.2,20.1 158.3,18.2 159.3,15.4 160.3,30.3 161.3,40.9 162.4,50.0 163.4,49.3 164.4,42.5 165.5,29.1 166.5,31.7 167.5,23.0 168.5,31.2 169.6,58.8 170.6,41.3 171.6,41.3 172.7,32.4 173.7,26.0 174.7,24.4 175.7,31.4 176.8,43.0 177.8,32.1 178.8,25.1 179.9,27.9 180.9,23.7 181.9,25.6 182.9,36.6 184.0,50.5 185.0,41.1 186.0,35.9 187.0,27.4 188.1,32.4 189.1,35.7 190.1,50.8 191.2,55.7 192.2,39.7 193.2,33.3 194.2,24.8 195.3,21.5 196.3,13.8 197.3,27.2 198.4,39.9 199.4,36.4 200.4,35.0 201.4,29.6 202.5,35.0 203.5,37.6 204.5,40.9 205.6,43.0 206.6,39.7 207.6,39.2 208.6,27.4 209.7,29.3 210.7,23.7 211.7,33.1 212.8,40.9 213.8,40.4 214.8,43.9 215.8,36.2 216.9,39.9 217.9,46.5 218.9,52.4 220.0,53.8 221.0,49.3 222.0,47.5 223.0,49.3 224.1,50.8 225.1,45.6 226.1,50.0 227.2,53.8 228.2,43.7 229.2,41.8 230.2,58.8 231.3,39.9 232.3,34.3 233.3,39.2 234.4,44.4 235.4,46.8 236.4,39.7 237.4,34.0 238.5,32.4 239.5,31.2 240.5,35.2 241.6,45.1 242.6,46.8 243.6,43.9 244.6,38.7 245.7,32.9 246.7,33.6 247.7,58.1 248.8,58.5 249.8,58.5 250.8,52.9 251.8,39.2 252.9,40.9 253.9,43.2 254.9,45.6 256.0,53.6 257.0,50.0 258.0,47.2 259.0,40.9 260.1,31.2 261.1,31.9 262.1,39.7 263.1,44.2 264.2,46.3 265.2,45.1 266.2,38.3 267.3,38.3 268.3,39.4 269.3,48.2 270.3,53.1 271.4,52.6 272.4,48.9 273.4,44.2 274.5,43.5 275.5,39.2 276.5,47.0 277.5,51.2 278.6,45.6 279.6,47.0 280.6,35.9 281.7,29.8 282.7,31.4 283.7,50.8 284.7,49.6 285.8,45.3 286.8,47.0 287.8,40.9 288.9,40.6 289.9,43.2 290.9,45.1 291.9,48.9 293.0,45.6 294.0,45.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">DENVER HOLD ROOM<\/b><br>12445 E. Caley Avenue<br>Centennial, CO<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 21<\/b> (2025-11-05)&nbsp;&nbsp;<br><b>Mean:<\/b> 6/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 35<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,31.7 5.0,46.9 6.1,51.4 7.1,30.2 8.1,25.7 9.1,39.3 10.2,52.9 11.2,46.9 12.2,36.3 13.3,30.2 14.3,27.2 15.3,36.3 16.3,46.9 17.4,56.0 18.4,59.0 19.4,52.9 20.5,42.3 21.5,54.5 22.5,54.5 23.5,56.0 24.6,54.5 25.6,48.4 26.6,40.8 27.7,40.8 28.7,48.4 29.7,43.9 30.7,40.8 31.8,54.5 32.8,49.9 33.8,52.9 34.9,49.9 35.9,48.4 36.9,45.4 37.9,59.0 39.0,54.5 40.0,56.0 41.0,37.8 42.0,51.4 43.1,33.3 44.1,54.5 45.1,49.9 46.2,49.9 47.2,45.4 48.2,24.2 49.2,34.8 50.3,28.7 51.3,36.3 52.3,31.7 53.4,46.9 54.4,52.9 55.4,54.5 56.4,52.9 57.5,43.9 58.5,46.9 59.5,40.8 60.6,51.4 61.6,49.9 62.6,40.8 63.6,46.9 64.7,43.9 65.7,36.3 66.7,52.9 67.8,54.5 68.8,56.0 69.8,43.9 70.8,37.8 71.9,27.2 72.9,52.9 73.9,51.4 75.0,54.5 76.0,37.8 77.0,42.3 78.0,49.9 79.1,48.4 80.1,46.9 81.1,52.9 82.2,56.0 83.2,34.8 84.2,48.4 85.2,49.9 86.3,49.9 87.3,45.4 88.3,45.4 89.4,56.0 90.4,56.0 91.4,49.9 92.4,51.4 93.5,42.3 94.5,45.4 95.5,54.5 96.6,40.8 97.6,54.5 98.6,57.5 99.6,51.4 100.7,56.0 101.7,51.4 102.7,54.5 103.8,48.4 104.8,51.4 105.8,48.4 106.8,48.4 107.9,37.8 108.9,43.9 109.9,48.4 111.0,49.9 112.0,54.5 113.0,51.4 114.0,51.4 115.1,51.4 116.1,46.9 117.1,51.4 118.1,57.5 119.2,59.0 120.2,48.4 121.2,52.9 122.3,51.4 123.3,43.9 124.3,43.9 125.3,52.9 126.4,59.0 127.4,54.5 128.4,54.5 129.5,37.8 130.5,51.4 131.5,48.4 132.5,59.0 133.6,59.0 134.6,45.4 135.6,45.4 136.7,54.5 137.7,54.5 138.7,48.4 139.7,52.9 140.8,57.5 141.8,56.0 142.8,54.5 143.9,56.0 144.9,51.4 145.9,49.9 146.9,54.5 148.0,54.5 149.0,48.4 150.0,45.4 151.1,51.4 152.1,49.9 153.1,43.9 154.1,37.8 155.2,45.4 156.2,59.0 157.2,52.9 158.3,51.4 159.3,46.9 160.3,59.0 161.3,56.0 162.4,57.5 163.4,51.4 164.4,46.9 165.5,27.2 166.5,52.9 167.5,51.4 168.5,54.5 169.6,52.9 170.6,42.3 171.6,49.9 172.7,37.8 173.7,45.4 174.7,46.9 175.7,43.9 176.8,48.4 177.8,48.4 178.8,52.9 179.9,51.4 180.9,56.0 181.9,45.4 182.9,51.4 184.0,51.4 185.0,49.9 186.0,48.4 187.0,43.9 188.1,57.5 189.1,52.9 190.1,42.3 191.2,54.5 192.2,48.4 193.2,36.3 194.2,54.5 195.3,54.5 196.3,48.4 197.3,46.9 198.4,56.0 199.4,43.9 200.4,42.3 201.4,51.4 202.5,52.9 203.5,56.0 204.5,56.0 205.6,56.0 206.6,52.9 207.6,52.9 208.6,52.9 209.7,43.9 210.7,54.5 211.7,49.9 212.8,54.5 213.8,49.9 214.8,39.3 215.8,49.9 216.9,59.0 217.9,56.0 218.9,56.0 220.0,54.5 221.0,45.4 222.0,49.9 223.0,48.4 224.1,52.9 225.1,51.4 226.1,59.0 227.2,56.0 228.2,54.5 229.2,57.5 230.2,51.4 231.3,52.9 232.3,57.5 233.3,59.0 234.4,59.0 235.4,46.9 236.4,43.9 237.4,40.8 238.5,46.9 239.5,48.4 240.5,42.3 241.6,49.9 242.6,46.9 243.6,42.3 244.6,27.2 245.7,37.8 246.7,49.9 247.7,51.4 248.8,56.0 249.8,49.9 250.8,49.9 251.8,52.9 252.9,57.5 253.9,52.9 254.9,52.9 256.0,51.4 257.0,51.4 258.0,51.4 259.0,43.9 260.1,54.5 261.1,40.8 262.1,51.4 263.1,6.0 264.2,31.7 265.2,56.0 266.2,49.9 267.3,54.5 268.3,52.9 269.3,51.4 270.3,54.5 271.4,57.5 272.4,51.4 273.4,57.5 274.5,52.9 275.5,57.5 276.5,56.0 277.5,56.0 278.6,49.9 279.6,49.9 280.6,51.4 281.7,57.5 282.7,56.0 283.7,59.0 284.7,57.5 285.8,54.5 286.8,56.0 287.8,49.9 288.9,57.5 289.9,52.9 290.9,59.0 291.9,56.0 293.0,40.8 294.0,45.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">DETROIT HOLDROOM<\/b><br>985 Michigan Avenue, Suite 207<br>Detroit, MI<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 10<\/b> (2026-02-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 47<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,57.9 5.0,59.0 6.1,59.0 7.1,54.5 8.1,56.7 9.1,56.7 10.2,56.7 11.2,59.0 12.2,59.0 13.3,59.0 14.3,56.7 15.3,59.0 16.3,53.4 17.4,59.0 18.4,57.9 19.4,34.2 20.5,21.8 21.5,22.9 22.5,6.0 23.5,47.7 24.6,43.2 25.6,53.4 26.6,37.6 27.7,43.2 28.7,42.1 29.7,39.8 30.7,55.6 31.8,55.6 32.8,55.6 33.8,48.9 34.9,53.4 35.9,44.3 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,57.9 42.0,57.9 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,53.4 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,56.7 63.6,53.4 64.7,59.0 65.7,59.0 66.7,55.6 67.8,59.0 68.8,59.0 69.8,52.2 70.8,56.7 71.9,59.0 72.9,56.7 73.9,59.0 75.0,54.5 76.0,59.0 77.0,37.6 78.0,36.4 79.1,59.0 80.1,54.5 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,57.9 86.3,59.0 87.3,56.7 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,57.9 101.7,53.4 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,56.7 111.0,59.0 112.0,59.0 113.0,55.6 114.0,59.0 115.1,59.0 116.1,59.0 117.1,56.7 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,56.7 124.3,55.6 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,57.9 130.5,59.0 131.5,57.9 132.5,59.0 133.6,59.0 134.6,59.0 135.6,56.7 136.7,59.0 137.7,55.6 138.7,59.0 139.7,59.0 140.8,57.9 141.8,56.7 142.8,57.9 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,56.7 150.0,59.0 151.1,55.6 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,55.6 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,56.7 166.5,55.6 167.5,56.7 168.5,59.0 169.6,59.0 170.6,59.0 171.6,55.6 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,55.6 177.8,59.0 178.8,59.0 179.9,56.7 180.9,59.0 181.9,59.0 182.9,54.5 184.0,59.0 185.0,59.0 186.0,56.7 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,56.7 194.2,59.0 195.3,59.0 196.3,54.5 197.3,57.9 198.4,59.0 199.4,56.7 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,57.9 208.6,59.0 209.7,59.0 210.7,57.9 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,56.7 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,57.9 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,50.0 230.2,59.0 231.3,59.0 232.3,56.7 233.3,59.0 234.4,57.9 235.4,56.7 236.4,59.0 237.4,59.0 238.5,56.7 239.5,57.9 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,57.9 245.7,59.0 246.7,56.7 247.7,59.0 248.8,59.0 249.8,59.0 250.8,57.9 251.8,59.0 252.9,57.9 253.9,59.0 254.9,59.0 256.0,47.7 257.0,59.0 258.0,59.0 259.0,59.0 260.1,56.7 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,57.9 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,51.1 272.4,55.6 273.4,57.9 274.5,56.7 275.5,56.7 276.5,59.0 277.5,55.6 278.6,59.0 279.6,59.0 280.6,57.9 281.7,57.9 282.7,59.0 283.7,57.9 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,57.9 289.9,59.0 290.9,57.9 291.9,59.0 293.0,59.0 294.0,56.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">DEL RIO DRO HOLD ROOM<\/b><br>2401 DODSON AVENUE<br>DEL RIO, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 13<\/b> (2025-12-06)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 13<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,54.9 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,54.9 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,54.9 23.5,59.0 24.6,59.0 25.6,59.0 26.6,50.8 27.7,59.0 28.7,50.8 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,54.9 35.9,59.0 36.9,46.8 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,46.8 46.2,54.9 47.2,59.0 48.2,59.0 49.2,54.9 50.3,59.0 51.3,59.0 52.3,59.0 53.4,54.9 54.4,59.0 55.4,59.0 56.4,59.0 57.5,54.9 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,54.9 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,54.9 71.9,59.0 72.9,54.9 73.9,59.0 75.0,59.0 76.0,59.0 77.0,54.9 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,46.8 88.3,54.9 89.4,42.7 90.4,42.7 91.4,54.9 92.4,59.0 93.5,54.9 94.5,42.7 95.5,54.9 96.6,46.8 97.6,34.5 98.6,26.4 99.6,59.0 100.7,46.8 101.7,22.3 102.7,59.0 103.8,10.1 104.8,50.8 105.8,50.8 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,50.8 115.1,59.0 116.1,50.8 117.1,59.0 118.1,38.6 119.2,59.0 120.2,59.0 121.2,50.8 122.3,59.0 123.3,46.8 124.3,50.8 125.3,42.7 126.4,59.0 127.4,59.0 128.4,59.0 129.5,54.9 130.5,50.8 131.5,59.0 132.5,46.8 133.6,54.9 134.6,46.8 135.6,59.0 136.7,54.9 137.7,26.4 138.7,34.5 139.7,59.0 140.8,59.0 141.8,50.8 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,38.6 148.0,59.0 149.0,59.0 150.0,54.9 151.1,46.8 152.1,50.8 153.1,54.9 154.1,38.6 155.2,22.3 156.2,59.0 157.2,59.0 158.3,50.8 159.3,59.0 160.3,59.0 161.3,46.8 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,38.6 168.5,59.0 169.6,59.0 170.6,50.8 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,50.8 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,38.6 184.0,59.0 185.0,59.0 186.0,59.0 187.0,50.8 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,54.9 195.3,46.8 196.3,59.0 197.3,6.0 198.4,46.8 199.4,46.8 200.4,59.0 201.4,59.0 202.5,59.0 203.5,50.8 204.5,50.8 205.6,50.8 206.6,59.0 207.6,59.0 208.6,59.0 209.7,54.9 210.7,59.0 211.7,42.7 212.8,50.8 213.8,59.0 214.8,59.0 215.8,54.9 216.9,38.6 217.9,59.0 218.9,50.8 220.0,46.8 221.0,46.8 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,50.8 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,46.8 232.3,50.8 233.3,42.7 234.4,59.0 235.4,59.0 236.4,59.0 237.4,54.9 238.5,54.9 239.5,42.7 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,38.6 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,54.9 253.9,59.0 254.9,59.0 256.0,54.9 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,54.9 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,46.8 270.3,59.0 271.4,59.0 272.4,59.0 273.4,54.9 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">DORCHESTER CO DET CTR<\/b><br>220 Hodge Road<br>Summerville, SC<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 11<\/b> (2025-10-29)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 11<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,49.4 7.1,49.4 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,44.5 16.3,44.5 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,44.5 22.5,49.4 23.5,49.4 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,44.5 47.2,44.5 48.2,44.5 49.2,49.4 50.3,49.4 51.3,59.0 52.3,49.4 53.4,49.4 54.4,44.5 55.4,44.5 56.4,49.4 57.5,49.4 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,39.7 64.7,30.1 65.7,30.1 66.7,25.3 67.8,39.7 68.8,34.9 69.8,30.1 70.8,59.0 71.9,49.4 72.9,30.1 73.9,30.1 75.0,49.4 76.0,49.4 77.0,49.4 78.0,49.4 79.1,39.7 80.1,49.4 81.1,44.5 82.2,49.4 83.2,34.9 84.2,34.9 85.2,39.7 86.3,39.7 87.3,59.0 88.3,59.0 89.4,49.4 90.4,39.7 91.4,34.9 92.4,30.1 93.5,25.3 94.5,54.2 95.5,54.2 96.6,30.1 97.6,30.1 98.6,39.7 99.6,39.7 100.7,34.9 101.7,34.9 102.7,30.1 103.8,30.1 104.8,20.5 105.8,49.4 106.8,59.0 107.9,39.7 108.9,20.5 109.9,30.1 111.0,30.1 112.0,15.6 113.0,44.5 114.0,39.7 115.1,30.1 116.1,49.4 117.1,49.4 118.1,44.5 119.2,44.5 120.2,44.5 121.2,44.5 122.3,44.5 123.3,54.2 124.3,54.2 125.3,15.6 126.4,15.6 127.4,15.6 128.4,44.5 129.5,44.5 130.5,59.0 131.5,54.2 132.5,49.4 133.6,44.5 134.6,44.5 135.6,49.4 136.7,49.4 137.7,59.0 138.7,59.0 139.7,39.7 140.8,25.3 141.8,25.3 142.8,20.5 143.9,44.5 144.9,49.4 145.9,54.2 146.9,54.2 148.0,54.2 149.0,49.4 150.0,20.5 151.1,20.5 152.1,59.0 153.1,59.0 154.1,49.4 155.2,34.9 156.2,34.9 157.2,34.9 158.3,6.0 159.3,25.3 160.3,54.2 161.3,25.3 162.4,25.3 163.4,25.3 164.4,39.7 165.5,39.7 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,44.5 174.7,44.5 175.7,39.7 176.8,30.1 177.8,30.1 178.8,54.2 179.9,49.4 180.9,49.4 181.9,54.2 182.9,49.4 184.0,34.9 185.0,34.9 186.0,34.9 187.0,34.9 188.1,59.0 189.1,59.0 190.1,54.2 191.2,54.2 192.2,54.2 193.2,49.4 194.2,49.4 195.3,49.4 196.3,49.4 197.3,49.4 198.4,39.7 199.4,39.7 200.4,39.7 201.4,39.7 202.5,59.0 203.5,59.0 204.5,30.1 205.6,25.3 206.6,25.3 207.6,44.5 208.6,44.5 209.7,59.0 210.7,59.0 211.7,34.9 212.8,34.9 213.8,34.9 214.8,39.7 215.8,39.7 216.9,59.0 217.9,59.0 218.9,39.7 220.0,34.9 221.0,34.9 222.0,30.1 223.0,30.1 224.1,39.7 225.1,39.7 226.1,49.4 227.2,25.3 228.2,34.9 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,34.9 237.4,34.9 238.5,59.0 239.5,59.0 240.5,54.2 241.6,44.5 242.6,44.5 243.6,30.1 244.6,30.1 245.7,44.5 246.7,44.5 247.7,39.7 248.8,39.7 249.8,34.9 250.8,49.4 251.8,49.4 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,49.4 259.0,39.7 260.1,39.7 261.1,49.4 262.1,49.4 263.1,49.4 264.2,49.4 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,54.2 280.6,54.2 281.7,59.0 282.7,59.0 283.7,39.7 284.7,30.1 285.8,30.1 286.8,39.7 287.8,39.7 288.9,59.0 289.9,59.0 290.9,44.5 291.9,44.5 293.0,44.5 294.0,39.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">DES MOINES HOLD ROOM<\/b><br>222 5th Ave<br>DES MOINES, IA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 2<\/b> (2025-11-14)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 3<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,23.7 7.1,41.3 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,41.3 16.3,59.0 17.4,59.0 18.4,59.0 19.4,41.3 20.5,41.3 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,41.3 37.9,41.3 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,41.3 44.1,59.0 45.1,23.7 46.2,23.7 47.2,59.0 48.2,6.0 49.2,59.0 50.3,59.0 51.3,41.3 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,41.3 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,23.7 70.8,59.0 71.9,41.3 72.9,41.3 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,41.3 86.3,59.0 87.3,59.0 88.3,41.3 89.4,59.0 90.4,59.0 91.4,41.3 92.4,41.3 93.5,59.0 94.5,59.0 95.5,41.3 96.6,6.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,41.3 103.8,59.0 104.8,59.0 105.8,41.3 106.8,41.3 107.9,59.0 108.9,41.3 109.9,41.3 111.0,41.3 112.0,59.0 113.0,59.0 114.0,59.0 115.1,41.3 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,41.3 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,41.3 130.5,41.3 131.5,41.3 132.5,59.0 133.6,59.0 134.6,59.0 135.6,41.3 136.7,41.3 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,41.3 143.9,59.0 144.9,59.0 145.9,41.3 146.9,59.0 148.0,59.0 149.0,59.0 150.0,41.3 151.1,41.3 152.1,41.3 153.1,59.0 154.1,59.0 155.2,59.0 156.2,41.3 157.2,59.0 158.3,41.3 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,41.3 166.5,41.3 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,41.3 174.7,23.7 175.7,59.0 176.8,59.0 177.8,59.0 178.8,41.3 179.9,59.0 180.9,59.0 181.9,41.3 182.9,59.0 184.0,59.0 185.0,41.3 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,41.3 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,41.3 200.4,59.0 201.4,41.3 202.5,41.3 203.5,41.3 204.5,59.0 205.6,59.0 206.6,59.0 207.6,41.3 208.6,41.3 209.7,41.3 210.7,41.3 211.7,59.0 212.8,59.0 213.8,59.0 214.8,41.3 215.8,59.0 216.9,59.0 217.9,41.3 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,23.7 224.1,59.0 225.1,59.0 226.1,41.3 227.2,59.0 228.2,59.0 229.2,41.3 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,23.7 238.5,59.0 239.5,41.3 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,41.3 254.9,59.0 256.0,59.0 257.0,41.3 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,41.3 274.5,41.3 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,41.3 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,41.3\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">DURANGO HOLDROOM<\/b><br>32 SHEPPARD DRIVE<br>DURANGO, CO<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 3<\/b> (2025-10-27)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 6<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,50.2 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,50.2 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,50.2 81.1,59.0 82.2,59.0 83.2,59.0 84.2,14.8 85.2,32.5 86.3,32.5 87.3,6.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,41.3 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,50.2 137.7,50.2 138.7,59.0 139.7,59.0 140.8,50.2 141.8,50.2 142.8,50.2 143.9,50.2 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,32.5 157.2,32.5 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,50.2 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,50.2 193.2,50.2 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,50.2 224.1,59.0 225.1,50.2 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,50.2 276.5,59.0 277.5,41.3 278.6,41.3 279.6,50.2 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,50.2 285.8,59.0 286.8,50.2 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,50.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">DOVER HOLDROOM<\/b><br>1305 MCD DRIVE<br>DOVER, DE<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 8<\/b> (2025-11-12)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 10<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,53.7 6.1,43.1 7.1,21.9 8.1,53.7 9.1,37.8 10.2,43.1 11.2,32.5 12.2,48.4 13.3,37.8 14.3,32.5 15.3,6.0 16.3,37.8 17.4,43.1 18.4,59.0 19.4,59.0 20.5,53.7 21.5,53.7 22.5,37.8 23.5,48.4 24.6,59.0 25.6,53.7 26.6,53.7 27.7,48.4 28.7,27.2 29.7,37.8 30.7,48.4 31.8,59.0 32.8,53.7 33.8,48.4 34.9,27.2 35.9,43.1 36.9,59.0 37.9,53.7 39.0,53.7 40.0,53.7 41.0,53.7 42.0,59.0 43.1,21.9 44.1,59.0 45.1,53.7 46.2,53.7 47.2,59.0 48.2,43.1 49.2,43.1 50.3,37.8 51.3,43.1 52.3,53.7 53.4,53.7 54.4,53.7 55.4,48.4 56.4,48.4 57.5,37.8 58.5,37.8 59.5,48.4 60.6,48.4 61.6,59.0 62.6,59.0 63.6,48.4 64.7,48.4 65.7,53.7 66.7,43.1 67.8,59.0 68.8,59.0 69.8,37.8 70.8,43.1 71.9,43.1 72.9,53.7 73.9,48.4 75.0,48.4 76.0,59.0 77.0,48.4 78.0,48.4 79.1,43.1 80.1,53.7 81.1,53.7 82.2,53.7 83.2,59.0 84.2,53.7 85.2,48.4 86.3,43.1 87.3,59.0 88.3,48.4 89.4,59.0 90.4,59.0 91.4,59.0 92.4,53.7 93.5,37.8 94.5,48.4 95.5,53.7 96.6,59.0 97.6,53.7 98.6,48.4 99.6,48.4 100.7,48.4 101.7,59.0 102.7,48.4 103.8,43.1 104.8,37.8 105.8,37.8 106.8,32.5 107.9,53.7 108.9,37.8 109.9,37.8 111.0,53.7 112.0,48.4 113.0,48.4 114.0,32.5 115.1,37.8 116.1,48.4 117.1,48.4 118.1,27.2 119.2,59.0 120.2,43.1 121.2,43.1 122.3,37.8 123.3,48.4 124.3,37.8 125.3,53.7 126.4,53.7 127.4,53.7 128.4,43.1 129.5,43.1 130.5,43.1 131.5,48.4 132.5,37.8 133.6,53.7 134.6,43.1 135.6,37.8 136.7,27.2 137.7,32.5 138.7,59.0 139.7,48.4 140.8,53.7 141.8,53.7 142.8,48.4 143.9,32.5 144.9,32.5 145.9,53.7 146.9,59.0 148.0,59.0 149.0,48.4 150.0,48.4 151.1,53.7 152.1,43.1 153.1,53.7 154.1,53.7 155.2,53.7 156.2,43.1 157.2,37.8 158.3,59.0 159.3,37.8 160.3,53.7 161.3,43.1 162.4,43.1 163.4,48.4 164.4,48.4 165.5,43.1 166.5,32.5 167.5,32.5 168.5,53.7 169.6,48.4 170.6,59.0 171.6,53.7 172.7,16.6 173.7,43.1 174.7,59.0 175.7,53.7 176.8,59.0 177.8,37.8 178.8,48.4 179.9,43.1 180.9,43.1 181.9,53.7 182.9,27.2 184.0,48.4 185.0,43.1 186.0,48.4 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,53.7 192.2,53.7 193.2,53.7 194.2,48.4 195.3,37.8 196.3,53.7 197.3,37.8 198.4,48.4 199.4,48.4 200.4,53.7 201.4,48.4 202.5,48.4 203.5,21.9 204.5,48.4 205.6,43.1 206.6,53.7 207.6,53.7 208.6,48.4 209.7,48.4 210.7,59.0 211.7,48.4 212.8,53.7 213.8,59.0 214.8,43.1 215.8,59.0 216.9,59.0 217.9,53.7 218.9,53.7 220.0,59.0 221.0,59.0 222.0,48.4 223.0,53.7 224.1,48.4 225.1,59.0 226.1,48.4 227.2,48.4 228.2,48.4 229.2,53.7 230.2,37.8 231.3,37.8 232.3,37.8 233.3,53.7 234.4,53.7 235.4,59.0 236.4,32.5 237.4,48.4 238.5,43.1 239.5,59.0 240.5,48.4 241.6,53.7 242.6,48.4 243.6,43.1 244.6,32.5 245.7,53.7 246.7,48.4 247.7,53.7 248.8,59.0 249.8,59.0 250.8,59.0 251.8,48.4 252.9,53.7 253.9,43.1 254.9,53.7 256.0,59.0 257.0,53.7 258.0,37.8 259.0,43.1 260.1,43.1 261.1,59.0 262.1,59.0 263.1,59.0 264.2,32.5 265.2,37.8 266.2,48.4 267.3,37.8 268.3,48.4 269.3,53.7 270.3,59.0 271.4,59.0 272.4,32.5 273.4,16.6 274.5,53.7 275.5,59.0 276.5,59.0 277.5,48.4 278.6,59.0 279.6,59.0 280.6,53.7 281.7,59.0 282.7,53.7 283.7,59.0 284.7,59.0 285.8,53.7 286.8,43.1 287.8,21.9 288.9,43.1 289.9,43.1 290.9,59.0 291.9,59.0 293.0,53.7 294.0,32.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">EGP CPC HOLDING<\/b><br>11541 Montana Ave Suite E<br>El Paso, TX<br><span style=\"color:#666;\">Type: Unclassified<\/span><br><b>Peak during FY26: 3<\/b> (2025-12-14)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 3<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,41.3 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,23.7 205.6,6.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ETOWAH ERO HOLD ROOM<\/b><br>800 Forrest Avenue, 3rd Floor<br>Gadsden, AL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 6<\/b> (2025-12-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 6<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,6.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,23.7 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,32.5 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,41.3 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,32.5 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,41.3 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,50.2 272.4,50.2 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">EUGENE HOLDROOM<\/b><br>211 EAST 7TH AVENUE<br>EUGENE, OR<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 7<\/b> (2025-10-15)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 8<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,52.4 6.1,6.0 7.1,25.9 8.1,45.8 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,19.2 14.3,45.8 15.3,45.8 16.3,52.4 17.4,59.0 18.4,59.0 19.4,52.4 20.5,32.5 21.5,59.0 22.5,59.0 23.5,52.4 24.6,59.0 25.6,59.0 26.6,45.8 27.7,45.8 28.7,52.4 29.7,52.4 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,25.9 35.9,52.4 36.9,52.4 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,52.4 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,52.4 50.3,59.0 51.3,52.4 52.3,59.0 53.4,59.0 54.4,59.0 55.4,52.4 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,45.8 78.0,39.1 79.1,52.4 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,39.1 86.3,39.1 87.3,45.8 88.3,59.0 89.4,45.8 90.4,59.0 91.4,52.4 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,32.5 101.7,59.0 102.7,52.4 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,52.4 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,52.4 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,52.4 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,52.4 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,52.4 141.8,59.0 142.8,59.0 143.9,12.6 144.9,45.8 145.9,52.4 146.9,52.4 148.0,52.4 149.0,39.1 150.0,45.8 151.1,59.0 152.1,45.8 153.1,45.8 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,39.1 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,52.4 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,52.4 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,52.4 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,52.4 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,52.4 239.5,52.4 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,52.4 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,52.4 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,52.4 294.0,52.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">FAYETTE COUNTY DETENTION CENTER<\/b><br>600 Old Frankford Cr<br>Lexington, KY<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 10<\/b> (2025-12-15)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 10<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,48.4 5.0,43.1 6.1,37.8 7.1,32.5 8.1,53.7 9.1,53.7 10.2,37.8 11.2,37.8 12.2,27.2 13.3,48.4 14.3,37.8 15.3,43.1 16.3,37.8 17.4,48.4 18.4,37.8 19.4,43.1 20.5,48.4 21.5,43.1 22.5,59.0 23.5,48.4 24.6,43.1 25.6,43.1 26.6,43.1 27.7,43.1 28.7,43.1 29.7,59.0 30.7,43.1 31.8,37.8 32.8,27.2 33.8,27.2 34.9,21.9 35.9,11.3 36.9,32.5 37.9,27.2 39.0,48.4 40.0,37.8 41.0,27.2 42.0,48.4 43.1,37.8 44.1,37.8 45.1,21.9 46.2,43.1 47.2,43.1 48.2,32.5 49.2,27.2 50.3,27.2 51.3,53.7 52.3,48.4 53.4,48.4 54.4,48.4 55.4,48.4 56.4,43.1 57.5,53.7 58.5,48.4 59.5,48.4 60.6,48.4 61.6,37.8 62.6,16.6 63.6,43.1 64.7,37.8 65.7,48.4 66.7,48.4 67.8,37.8 68.8,37.8 69.8,37.8 70.8,32.5 71.9,27.2 72.9,43.1 73.9,37.8 75.0,53.7 76.0,48.4 77.0,37.8 78.0,43.1 79.1,43.1 80.1,48.4 81.1,43.1 82.2,43.1 83.2,37.8 84.2,37.8 85.2,48.4 86.3,43.1 87.3,48.4 88.3,43.1 89.4,53.7 90.4,53.7 91.4,21.9 92.4,27.2 93.5,27.2 94.5,59.0 95.5,53.7 96.6,48.4 97.6,48.4 98.6,48.4 99.6,43.1 100.7,37.8 101.7,48.4 102.7,43.1 103.8,48.4 104.8,32.5 105.8,27.2 106.8,48.4 107.9,48.4 108.9,53.7 109.9,53.7 111.0,48.4 112.0,37.8 113.0,21.9 114.0,37.8 115.1,21.9 116.1,48.4 117.1,48.4 118.1,53.7 119.2,48.4 120.2,43.1 121.2,43.1 122.3,37.8 123.3,48.4 124.3,48.4 125.3,43.1 126.4,43.1 127.4,43.1 128.4,53.7 129.5,32.5 130.5,16.6 131.5,16.6 132.5,59.0 133.6,53.7 134.6,48.4 135.6,37.8 136.7,27.2 137.7,48.4 138.7,37.8 139.7,48.4 140.8,43.1 141.8,43.1 142.8,59.0 143.9,53.7 144.9,43.1 145.9,48.4 146.9,59.0 148.0,59.0 149.0,53.7 150.0,37.8 151.1,37.8 152.1,48.4 153.1,48.4 154.1,53.7 155.2,43.1 156.2,43.1 157.2,48.4 158.3,27.2 159.3,32.5 160.3,32.5 161.3,59.0 162.4,48.4 163.4,43.1 164.4,43.1 165.5,32.5 166.5,48.4 167.5,48.4 168.5,59.0 169.6,59.0 170.6,37.8 171.6,37.8 172.7,32.5 173.7,43.1 174.7,21.9 175.7,37.8 176.8,32.5 177.8,16.6 178.8,16.6 179.9,16.6 180.9,43.1 181.9,27.2 182.9,37.8 184.0,43.1 185.0,16.6 186.0,32.5 187.0,11.3 188.1,43.1 189.1,43.1 190.1,59.0 191.2,59.0 192.2,43.1 193.2,32.5 194.2,27.2 195.3,48.4 196.3,27.2 197.3,27.2 198.4,21.9 199.4,11.3 200.4,16.6 201.4,11.3 202.5,48.4 203.5,48.4 204.5,43.1 205.6,27.2 206.6,6.0 207.6,43.1 208.6,37.8 209.7,32.5 210.7,16.6 211.7,48.4 212.8,48.4 213.8,48.4 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,48.4 222.0,48.4 223.0,43.1 224.1,53.7 225.1,53.7 226.1,48.4 227.2,48.4 228.2,48.4 229.2,53.7 230.2,48.4 231.3,43.1 232.3,43.1 233.3,59.0 234.4,53.7 235.4,53.7 236.4,48.4 237.4,48.4 238.5,59.0 239.5,43.1 240.5,37.8 241.6,27.2 242.6,16.6 243.6,11.3 244.6,11.3 245.7,53.7 246.7,53.7 247.7,59.0 248.8,59.0 249.8,59.0 250.8,53.7 251.8,37.8 252.9,32.5 253.9,32.5 254.9,59.0 256.0,48.4 257.0,48.4 258.0,37.8 259.0,37.8 260.1,48.4 261.1,37.8 262.1,43.1 263.1,27.2 264.2,27.2 265.2,59.0 266.2,37.8 267.3,37.8 268.3,27.2 269.3,43.1 270.3,48.4 271.4,43.1 272.4,37.8 273.4,32.5 274.5,48.4 275.5,43.1 276.5,53.7 277.5,53.7 278.6,48.4 279.6,48.4 280.6,43.1 281.7,48.4 282.7,43.1 283.7,59.0 284.7,59.0 285.8,48.4 286.8,43.1 287.8,43.1 288.9,53.7 289.9,48.4 290.9,48.4 291.9,32.5 293.0,27.2 294.0,37.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">FAYETTEVILLE HOLD ROOM<\/b><br>P.O. BOX 1188 2887 N POINT CIRCLE<br>FAYETTEVILLE, AR<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 2<\/b> (2026-01-10)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,6.0 7.1,59.0 8.1,59.0 9.1,6.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,32.5 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,32.5 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,32.5 73.9,32.5 75.0,32.5 76.0,32.5 77.0,6.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,32.5 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,32.5 200.4,32.5 201.4,32.5 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,32.5 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,6.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,6.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,32.5 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,32.5 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">FERNDALE HOLD ROOM<\/b><br>5200 Industrial Pl<br>Ferndale, WA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 6<\/b> (2025-12-02)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 6<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,41.3 6.1,59.0 7.1,50.2 8.1,50.2 9.1,50.2 10.2,59.0 11.2,59.0 12.2,59.0 13.3,6.0 14.3,59.0 15.3,6.0 16.3,50.2 17.4,59.0 18.4,59.0 19.4,59.0 20.5,50.2 21.5,6.0 22.5,50.2 23.5,32.5 24.6,59.0 25.6,59.0 26.6,50.2 27.7,50.2 28.7,32.5 29.7,59.0 30.7,41.3 31.8,41.3 32.8,59.0 33.8,41.3 34.9,41.3 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,50.2 42.0,41.3 43.1,50.2 44.1,50.2 45.1,41.3 46.2,59.0 47.2,59.0 48.2,41.3 49.2,59.0 50.3,41.3 51.3,50.2 52.3,50.2 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,50.2 60.6,59.0 61.6,59.0 62.6,41.3 63.6,32.5 64.7,59.0 65.7,50.2 66.7,59.0 67.8,50.2 68.8,59.0 69.8,41.3 70.8,41.3 71.9,50.2 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,14.8 79.1,50.2 80.1,59.0 81.1,41.3 82.2,50.2 83.2,59.0 84.2,50.2 85.2,50.2 86.3,50.2 87.3,59.0 88.3,50.2 89.4,59.0 90.4,59.0 91.4,32.5 92.4,59.0 93.5,14.8 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,32.5 100.7,59.0 101.7,32.5 102.7,50.2 103.8,59.0 104.8,59.0 105.8,59.0 106.8,50.2 107.9,41.3 108.9,59.0 109.9,41.3 111.0,59.0 112.0,59.0 113.0,50.2 114.0,50.2 115.1,59.0 116.1,59.0 117.1,50.2 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,41.3 128.4,50.2 129.5,41.3 130.5,50.2 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,32.5 136.7,41.3 137.7,23.7 138.7,59.0 139.7,59.0 140.8,50.2 141.8,59.0 142.8,50.2 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,23.7 153.1,23.7 154.1,59.0 155.2,50.2 156.2,32.5 157.2,59.0 158.3,59.0 159.3,50.2 160.3,59.0 161.3,59.0 162.4,59.0 163.4,50.2 164.4,50.2 165.5,59.0 166.5,50.2 167.5,59.0 168.5,59.0 169.6,50.2 170.6,59.0 171.6,59.0 172.7,50.2 173.7,59.0 174.7,14.8 175.7,59.0 176.8,41.3 177.8,59.0 178.8,50.2 179.9,59.0 180.9,50.2 181.9,50.2 182.9,59.0 184.0,59.0 185.0,41.3 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,50.2 193.2,6.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,41.3 200.4,50.2 201.4,50.2 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,41.3 208.6,50.2 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,41.3 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,50.2 222.0,59.0 223.0,59.0 224.1,59.0 225.1,50.2 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,41.3 231.3,50.2 232.3,59.0 233.3,59.0 234.4,59.0 235.4,50.2 236.4,59.0 237.4,59.0 238.5,50.2 239.5,59.0 240.5,59.0 241.6,59.0 242.6,50.2 243.6,41.3 244.6,50.2 245.7,41.3 246.7,50.2 247.7,59.0 248.8,59.0 249.8,59.0 250.8,50.2 251.8,50.2 252.9,41.3 253.9,50.2 254.9,59.0 256.0,59.0 257.0,59.0 258.0,41.3 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,50.2 265.2,50.2 266.2,59.0 267.3,50.2 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,50.2 275.5,50.2 276.5,59.0 277.5,59.0 278.6,59.0 279.6,50.2 280.6,32.5 281.7,59.0 282.7,50.2 283.7,59.0 284.7,59.0 285.8,59.0 286.8,41.3 287.8,59.0 288.9,50.2 289.9,59.0 290.9,59.0 291.9,59.0 293.0,50.2 294.0,41.3\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">FLAGLER COUNTY JAIL<\/b><br>1001 Justice Lane<br>Bunnell, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 10<\/b> (2026-01-15)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 96<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,52.4 98.6,52.4 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,57.3 199.4,57.3 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,58.4 208.6,57.3 209.7,57.3 210.7,57.9 211.7,57.9 212.8,57.9 213.8,59.0 214.8,58.4 215.8,57.3 216.9,57.3 217.9,57.3 218.9,58.4 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,58.4 227.2,58.4 228.2,58.4 229.2,58.4 230.2,59.0 231.3,59.0 232.3,58.4 233.3,59.0 234.4,59.0 235.4,59.0 236.4,57.9 237.4,56.8 238.5,53.5 239.5,55.1 240.5,55.1 241.6,59.0 242.6,59.0 243.6,58.4 244.6,58.4 245.7,58.4 246.7,58.4 247.7,58.4 248.8,58.4 249.8,58.4 250.8,58.4 251.8,58.4 252.9,58.4 253.9,58.4 254.9,58.4 256.0,58.4 257.0,58.4 258.0,57.9 259.0,57.9 260.1,58.4 261.1,44.6 262.1,41.9 263.1,39.1 264.2,36.9 265.2,36.9 266.2,30.8 267.3,23.7 268.3,21.5 269.3,21.5 270.3,20.4 271.4,20.4 272.4,19.2 273.4,19.8 274.5,14.8 275.5,14.3 276.5,14.3 277.5,12.6 278.6,12.6 279.6,13.2 280.6,17.6 281.7,13.7 282.7,13.2 283.7,12.6 284.7,8.8 285.8,7.7 286.8,7.1 287.8,10.4 288.9,10.4 289.9,7.7 290.9,8.8 291.9,6.6 293.0,6.0 294.0,6.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">FLOYD COUNTY JAIL<\/b><br>2526 New Calhoun Hwy<br>Rome, GA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 20<\/b> (2025-10-08)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 42<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,51.4 5.0,48.9 6.1,54.0 7.1,54.0 8.1,57.7 9.1,55.2 10.2,54.0 11.2,55.2 12.2,52.7 13.3,55.2 14.3,56.5 15.3,55.2 16.3,55.2 17.4,46.4 18.4,50.2 19.4,50.2 20.5,57.7 21.5,59.0 22.5,46.4 23.5,46.4 24.6,46.4 25.6,46.4 26.6,46.4 27.7,46.4 28.7,46.4 29.7,46.4 30.7,46.4 31.8,46.4 32.8,45.1 33.8,45.1 34.9,45.1 35.9,42.6 36.9,42.6 37.9,28.7 39.0,28.7 40.0,28.7 41.0,24.9 42.0,26.2 43.1,56.5 44.1,55.2 45.1,56.5 46.2,56.5 47.2,55.2 48.2,55.2 49.2,46.4 50.3,46.4 51.3,46.4 52.3,46.4 53.4,59.0 54.4,57.7 55.4,57.7 56.4,55.2 57.5,56.5 58.5,56.5 59.5,57.7 60.6,56.5 61.6,38.8 62.6,38.8 63.6,38.8 64.7,16.1 65.7,35.0 66.7,33.8 67.8,32.5 68.8,30.0 69.8,6.0 70.8,28.7 71.9,33.8 72.9,31.2 73.9,57.7 75.0,57.7 76.0,56.5 77.0,56.5 78.0,56.5 79.1,57.7 80.1,57.7 81.1,57.7 82.2,57.7 83.2,59.0 84.2,59.0 85.2,52.7 86.3,55.2 87.3,55.2 88.3,51.4 89.4,57.7 90.4,55.2 91.4,55.2 92.4,54.0 93.5,57.7 94.5,57.7 95.5,59.0 96.6,59.0 97.6,57.7 98.6,57.7 99.6,57.7 100.7,57.7 101.7,59.0 102.7,57.7 103.8,57.7 104.8,57.7 105.8,56.5 106.8,56.5 107.9,56.5 108.9,57.7 109.9,55.2 111.0,54.0 112.0,52.7 113.0,52.7 114.0,56.5 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,57.7 120.2,56.5 121.2,56.5 122.3,56.5 123.3,57.7 124.3,56.5 125.3,57.7 126.4,57.7 127.4,56.5 128.4,55.2 129.5,55.2 130.5,54.0 131.5,56.5 132.5,55.2 133.6,57.7 134.6,57.7 135.6,55.2 136.7,33.8 137.7,33.8 138.7,33.8 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,56.5 153.1,56.5 154.1,56.5 155.2,59.0 156.2,56.5 157.2,54.0 158.3,55.2 159.3,55.2 160.3,57.7 161.3,57.7 162.4,57.7 163.4,57.7 164.4,59.0 165.5,59.0 166.5,57.7 167.5,57.7 168.5,57.7 169.6,57.7 170.6,57.7 171.6,57.7 172.7,57.7 173.7,56.5 174.7,57.7 175.7,57.7 176.8,57.7 177.8,57.7 178.8,56.5 179.9,56.5 180.9,56.5 181.9,56.5 182.9,59.0 184.0,57.7 185.0,56.5 186.0,56.5 187.0,56.5 188.1,57.7 189.1,57.7 190.1,57.7 191.2,57.7 192.2,57.7 193.2,57.7 194.2,59.0 195.3,59.0 196.3,57.7 197.3,55.2 198.4,55.2 199.4,55.2 200.4,59.0 201.4,59.0 202.5,57.7 203.5,57.7 204.5,57.7 205.6,57.7 206.6,57.7 207.6,57.7 208.6,57.7 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,57.7 215.8,57.7 216.9,57.7 217.9,57.7 218.9,57.7 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,57.7 228.2,57.7 229.2,56.5 230.2,57.7 231.3,57.7 232.3,57.7 233.3,57.7 234.4,57.7 235.4,57.7 236.4,57.7 237.4,57.7 238.5,56.5 239.5,57.7 240.5,57.7 241.6,59.0 242.6,59.0 243.6,57.7 244.6,56.5 245.7,56.5 246.7,56.5 247.7,56.5 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,57.7 254.9,55.2 256.0,55.2 257.0,55.2 258.0,55.2 259.0,59.0 260.1,57.7 261.1,57.7 262.1,55.2 263.1,59.0 264.2,57.7 265.2,57.7 266.2,57.7 267.3,57.7 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,57.7 276.5,57.7 277.5,56.5 278.6,56.5 279.6,59.0 280.6,59.0 281.7,59.0 282.7,57.7 283.7,55.2 284.7,54.0 285.8,54.0 286.8,54.0 287.8,54.0 288.9,57.7 289.9,56.5 290.9,56.5 291.9,56.5 293.0,56.5 294.0,56.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">FORT MYERS ERO HOLDROOM<\/b><br>8860 SALROSE LANE<br>FORT MYERS, FL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 36<\/b> (2025-12-12)&nbsp;&nbsp;<br><b>Mean:<\/b> 14/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 36<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,41.3 5.0,36.9 6.1,32.5 7.1,32.5 8.1,38.4 9.1,50.2 10.2,31.0 11.2,39.9 12.2,39.9 13.3,38.4 14.3,48.7 15.3,32.5 16.3,45.8 17.4,34.0 18.4,57.5 19.4,41.3 20.5,35.4 21.5,39.9 22.5,25.1 23.5,44.3 24.6,16.3 25.6,35.4 26.6,48.7 27.7,26.6 28.7,41.3 29.7,57.5 30.7,50.2 31.8,44.3 32.8,59.0 33.8,54.6 34.9,50.2 35.9,51.6 36.9,57.5 37.9,59.0 39.0,57.5 40.0,59.0 41.0,59.0 42.0,50.2 43.1,34.0 44.1,25.1 45.1,57.5 46.2,57.5 47.2,56.1 48.2,57.5 49.2,48.7 50.3,34.0 51.3,48.7 52.3,51.6 53.4,47.2 54.4,59.0 55.4,51.6 56.4,51.6 57.5,50.2 58.5,47.2 59.5,48.7 60.6,57.5 61.6,59.0 62.6,51.6 63.6,42.8 64.7,44.3 65.7,51.6 66.7,44.3 67.8,53.1 68.8,50.2 69.8,45.8 70.8,45.8 71.9,39.9 72.9,39.9 73.9,48.7 75.0,51.6 76.0,41.3 77.0,51.6 78.0,45.8 79.1,32.5 80.1,51.6 81.1,51.6 82.2,44.3 83.2,42.8 84.2,51.6 85.2,45.8 86.3,44.3 87.3,44.3 88.3,42.8 89.4,54.6 90.4,57.5 91.4,51.6 92.4,45.8 93.5,44.3 94.5,51.6 95.5,44.3 96.6,54.6 97.6,59.0 98.6,54.6 99.6,53.1 100.7,51.6 101.7,47.2 102.7,50.2 103.8,57.5 104.8,57.5 105.8,47.2 106.8,48.7 107.9,47.2 108.9,47.2 109.9,45.8 111.0,56.1 112.0,57.5 113.0,39.9 114.0,47.2 115.1,47.2 116.1,44.3 117.1,36.9 118.1,41.3 119.2,36.9 120.2,42.8 121.2,23.7 122.3,26.6 123.3,47.2 124.3,51.6 125.3,31.0 126.4,53.1 127.4,47.2 128.4,35.4 129.5,25.1 130.5,42.8 131.5,50.2 132.5,41.3 133.6,42.8 134.6,44.3 135.6,44.3 136.7,45.8 137.7,53.1 138.7,56.1 139.7,50.2 140.8,57.5 141.8,42.8 142.8,38.4 143.9,39.9 144.9,26.6 145.9,35.4 146.9,45.8 148.0,51.6 149.0,45.8 150.0,11.9 151.1,44.3 152.1,16.3 153.1,35.4 154.1,17.8 155.2,23.7 156.2,45.8 157.2,32.5 158.3,39.9 159.3,20.7 160.3,35.4 161.3,29.6 162.4,47.2 163.4,17.8 164.4,42.8 165.5,41.3 166.5,38.4 167.5,42.8 168.5,35.4 169.6,39.9 170.6,38.4 171.6,39.9 172.7,32.5 173.7,20.7 174.7,13.4 175.7,36.9 176.8,41.3 177.8,53.1 178.8,31.0 179.9,10.4 180.9,31.0 181.9,20.7 182.9,39.9 184.0,47.2 185.0,48.7 186.0,47.2 187.0,47.2 188.1,53.1 189.1,47.2 190.1,54.6 191.2,51.6 192.2,47.2 193.2,36.9 194.2,16.3 195.3,41.3 196.3,44.3 197.3,31.0 198.4,35.4 199.4,32.5 200.4,38.4 201.4,53.1 202.5,42.8 203.5,6.0 204.5,25.1 205.6,47.2 206.6,34.0 207.6,31.0 208.6,32.5 209.7,35.4 210.7,36.9 211.7,34.0 212.8,44.3 213.8,44.3 214.8,53.1 215.8,41.3 216.9,50.2 217.9,45.8 218.9,36.9 220.0,38.4 221.0,50.2 222.0,36.9 223.0,38.4 224.1,59.0 225.1,41.3 226.1,39.9 227.2,41.3 228.2,47.2 229.2,39.9 230.2,48.7 231.3,34.0 232.3,38.4 233.3,41.3 234.4,34.0 235.4,44.3 236.4,34.0 237.4,41.3 238.5,31.0 239.5,35.4 240.5,32.5 241.6,34.0 242.6,29.6 243.6,39.9 244.6,45.8 245.7,41.3 246.7,35.4 247.7,45.8 248.8,42.8 249.8,44.3 250.8,42.8 251.8,36.9 252.9,36.9 253.9,36.9 254.9,34.0 256.0,44.3 257.0,54.6 258.0,23.7 259.0,31.0 260.1,42.8 261.1,35.4 262.1,39.9 263.1,20.7 264.2,39.9 265.2,26.6 266.2,8.9 267.3,13.4 268.3,41.3 269.3,42.8 270.3,53.1 271.4,39.9 272.4,28.1 273.4,35.4 274.5,32.5 275.5,41.3 276.5,32.5 277.5,38.4 278.6,42.8 279.6,28.1 280.6,35.4 281.7,34.0 282.7,44.3 283.7,45.8 284.7,51.6 285.8,38.4 286.8,42.8 287.8,38.4 288.9,32.5 289.9,47.2 290.9,44.3 291.9,51.6 293.0,39.9 294.0,26.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">FREDERICK HOLDROOM<\/b><br>3770 PURITAN WAY<br>FREDERICK, CO<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 6<\/b> (2025-10-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 7<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,28.7 5.0,51.4 6.1,21.1 7.1,36.3 8.1,59.0 9.1,59.0 10.2,43.9 11.2,43.9 12.2,28.7 13.3,51.4 14.3,28.7 15.3,36.3 16.3,51.4 17.4,51.4 18.4,28.7 19.4,43.9 20.5,28.7 21.5,43.9 22.5,43.9 23.5,51.4 24.6,59.0 25.6,51.4 26.6,28.7 27.7,36.3 28.7,36.3 29.7,28.7 30.7,28.7 31.8,43.9 32.8,36.3 33.8,36.3 34.9,51.4 35.9,43.9 36.9,43.9 37.9,51.4 39.0,36.3 40.0,36.3 41.0,59.0 42.0,28.7 43.1,36.3 44.1,51.4 45.1,36.3 46.2,51.4 47.2,51.4 48.2,43.9 49.2,51.4 50.3,13.6 51.3,36.3 52.3,51.4 53.4,51.4 54.4,43.9 55.4,59.0 56.4,59.0 57.5,59.0 58.5,51.4 59.5,36.3 60.6,43.9 61.6,36.3 62.6,43.9 63.6,6.0 64.7,43.9 65.7,43.9 66.7,36.3 67.8,51.4 68.8,51.4 69.8,28.7 70.8,51.4 71.9,36.3 72.9,43.9 73.9,51.4 75.0,36.3 76.0,28.7 77.0,51.4 78.0,43.9 79.1,28.7 80.1,51.4 81.1,51.4 82.2,43.9 83.2,36.3 84.2,51.4 85.2,13.6 86.3,43.9 87.3,51.4 88.3,51.4 89.4,51.4 90.4,43.9 91.4,51.4 92.4,28.7 93.5,51.4 94.5,43.9 95.5,59.0 96.6,51.4 97.6,51.4 98.6,59.0 99.6,13.6 100.7,36.3 101.7,36.3 102.7,59.0 103.8,43.9 104.8,43.9 105.8,21.1 106.8,21.1 107.9,59.0 108.9,21.1 109.9,43.9 111.0,51.4 112.0,51.4 113.0,36.3 114.0,28.7 115.1,36.3 116.1,36.3 117.1,51.4 118.1,51.4 119.2,28.7 120.2,36.3 121.2,51.4 122.3,43.9 123.3,28.7 124.3,21.1 125.3,51.4 126.4,51.4 127.4,51.4 128.4,21.1 129.5,51.4 130.5,36.3 131.5,43.9 132.5,51.4 133.6,59.0 134.6,51.4 135.6,36.3 136.7,43.9 137.7,13.6 138.7,51.4 139.7,59.0 140.8,51.4 141.8,59.0 142.8,59.0 143.9,28.7 144.9,59.0 145.9,43.9 146.9,59.0 148.0,36.3 149.0,59.0 150.0,59.0 151.1,51.4 152.1,28.7 153.1,43.9 154.1,51.4 155.2,28.7 156.2,43.9 157.2,59.0 158.3,43.9 159.3,59.0 160.3,59.0 161.3,43.9 162.4,51.4 163.4,51.4 164.4,51.4 165.5,21.1 166.5,43.9 167.5,43.9 168.5,51.4 169.6,43.9 170.6,43.9 171.6,59.0 172.7,43.9 173.7,43.9 174.7,51.4 175.7,51.4 176.8,43.9 177.8,59.0 178.8,43.9 179.9,51.4 180.9,51.4 181.9,51.4 182.9,59.0 184.0,43.9 185.0,43.9 186.0,43.9 187.0,59.0 188.1,59.0 189.1,51.4 190.1,36.3 191.2,43.9 192.2,36.3 193.2,43.9 194.2,36.3 195.3,36.3 196.3,43.9 197.3,43.9 198.4,43.9 199.4,43.9 200.4,59.0 201.4,51.4 202.5,43.9 203.5,43.9 204.5,43.9 205.6,36.3 206.6,59.0 207.6,51.4 208.6,51.4 209.7,36.3 210.7,51.4 211.7,51.4 212.8,51.4 213.8,43.9 214.8,36.3 215.8,43.9 216.9,59.0 217.9,59.0 218.9,51.4 220.0,59.0 221.0,51.4 222.0,51.4 223.0,51.4 224.1,59.0 225.1,28.7 226.1,51.4 227.2,51.4 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,51.4 234.4,43.9 235.4,51.4 236.4,28.7 237.4,43.9 238.5,36.3 239.5,59.0 240.5,51.4 241.6,36.3 242.6,59.0 243.6,43.9 244.6,51.4 245.7,36.3 246.7,51.4 247.7,43.9 248.8,51.4 249.8,51.4 250.8,36.3 251.8,59.0 252.9,51.4 253.9,43.9 254.9,43.9 256.0,43.9 257.0,28.7 258.0,51.4 259.0,21.1 260.1,36.3 261.1,59.0 262.1,51.4 263.1,51.4 264.2,51.4 265.2,59.0 266.2,51.4 267.3,51.4 268.3,43.9 269.3,51.4 270.3,28.7 271.4,36.3 272.4,36.3 273.4,36.3 274.5,43.9 275.5,43.9 276.5,43.9 277.5,43.9 278.6,43.9 279.6,59.0 280.6,36.3 281.7,43.9 282.7,59.0 283.7,36.3 284.7,43.9 285.8,43.9 286.8,36.3 287.8,36.3 288.9,43.9 289.9,43.9 290.9,36.3 291.9,51.4 293.0,59.0 294.0,43.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">FRESNO HOLDROOM<\/b><br>733 L STREET<br>FRESNO, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 22<\/b> (2026-01-30)&nbsp;&nbsp;<br><b>Mean:<\/b> 7/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 33<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,54.2 5.0,51.0 6.1,38.1 7.1,38.1 8.1,42.9 9.1,52.6 10.2,51.0 11.2,51.0 12.2,44.5 13.3,41.3 14.3,42.9 15.3,44.5 16.3,57.4 17.4,51.0 18.4,55.8 19.4,46.2 20.5,42.9 21.5,44.5 22.5,52.6 23.5,55.8 24.6,54.2 25.6,55.8 26.6,39.7 27.7,52.6 28.7,41.3 29.7,49.4 30.7,51.0 31.8,54.2 32.8,51.0 33.8,52.6 34.9,47.8 35.9,47.8 36.9,42.9 37.9,57.4 39.0,59.0 40.0,55.8 41.0,52.6 42.0,46.2 43.1,49.4 44.1,38.1 45.1,47.8 46.2,59.0 47.2,55.8 48.2,52.6 49.2,41.3 50.3,51.0 51.3,42.9 52.3,47.8 53.4,59.0 54.4,59.0 55.4,39.7 56.4,39.7 57.5,30.1 58.5,47.8 59.5,38.1 60.6,52.6 61.6,57.4 62.6,44.5 63.6,44.5 64.7,41.3 65.7,42.9 66.7,39.7 67.8,51.0 68.8,51.0 69.8,42.9 70.8,38.1 71.9,44.5 72.9,38.1 73.9,42.9 75.0,47.8 76.0,59.0 77.0,51.0 78.0,39.7 79.1,33.3 80.1,33.3 81.1,49.4 82.2,49.4 83.2,54.2 84.2,44.5 85.2,47.8 86.3,38.1 87.3,39.7 88.3,34.9 89.4,52.6 90.4,55.8 91.4,49.4 92.4,41.3 93.5,34.9 94.5,33.3 95.5,23.7 96.6,57.4 97.6,59.0 98.6,59.0 99.6,39.7 100.7,30.1 101.7,38.1 102.7,46.2 103.8,52.6 104.8,57.4 105.8,39.7 106.8,44.5 107.9,44.5 108.9,41.3 109.9,41.3 111.0,57.4 112.0,57.4 113.0,41.3 114.0,41.3 115.1,44.5 116.1,51.0 117.1,47.8 118.1,55.8 119.2,52.6 120.2,39.7 121.2,33.3 122.3,47.8 123.3,44.5 124.3,46.2 125.3,57.4 126.4,55.8 127.4,44.5 128.4,41.3 129.5,38.1 130.5,39.7 131.5,51.0 132.5,55.8 133.6,57.4 134.6,47.8 135.6,39.7 136.7,36.5 137.7,46.2 138.7,41.3 139.7,59.0 140.8,57.4 141.8,57.4 142.8,46.2 143.9,38.1 144.9,42.9 145.9,52.6 146.9,57.4 148.0,57.4 149.0,55.8 150.0,46.2 151.1,39.7 152.1,46.2 153.1,47.8 154.1,52.6 155.2,54.2 156.2,49.4 157.2,41.3 158.3,47.8 159.3,28.5 160.3,42.9 161.3,54.2 162.4,57.4 163.4,52.6 164.4,47.8 165.5,51.0 166.5,46.2 167.5,42.9 168.5,44.5 169.6,52.6 170.6,47.8 171.6,52.6 172.7,54.2 173.7,44.5 174.7,39.7 175.7,52.6 176.8,54.2 177.8,42.9 178.8,47.8 179.9,49.4 180.9,52.6 181.9,47.8 182.9,51.0 184.0,54.2 185.0,54.2 186.0,47.8 187.0,52.6 188.1,59.0 189.1,55.8 190.1,59.0 191.2,59.0 192.2,51.0 193.2,44.5 194.2,42.9 195.3,44.5 196.3,38.1 197.3,49.4 198.4,51.0 199.4,41.3 200.4,46.2 201.4,39.7 202.5,31.7 203.5,47.8 204.5,49.4 205.6,51.0 206.6,42.9 207.6,42.9 208.6,46.2 209.7,47.8 210.7,54.2 211.7,49.4 212.8,55.8 213.8,44.5 214.8,47.8 215.8,52.6 216.9,59.0 217.9,51.0 218.9,54.2 220.0,59.0 221.0,54.2 222.0,51.0 223.0,46.2 224.1,59.0 225.1,33.3 226.1,52.6 227.2,54.2 228.2,52.6 229.2,51.0 230.2,52.6 231.3,47.8 232.3,47.8 233.3,47.8 234.4,57.4 235.4,51.0 236.4,47.8 237.4,47.8 238.5,44.5 239.5,47.8 240.5,52.6 241.6,54.2 242.6,54.2 243.6,44.5 244.6,41.3 245.7,38.1 246.7,36.5 247.7,54.2 248.8,54.2 249.8,49.4 250.8,33.3 251.8,36.5 252.9,41.3 253.9,23.7 254.9,25.3 256.0,42.9 257.0,33.3 258.0,39.7 259.0,41.3 260.1,47.8 261.1,51.0 262.1,54.2 263.1,51.0 264.2,42.9 265.2,33.3 266.2,39.7 267.3,38.1 268.3,42.9 269.3,47.8 270.3,52.6 271.4,52.6 272.4,36.5 273.4,41.3 274.5,34.9 275.5,36.5 276.5,44.5 277.5,55.8 278.6,41.3 279.6,33.3 280.6,6.0 281.7,18.8 282.7,41.3 283.7,49.4 284.7,57.4 285.8,30.1 286.8,49.4 287.8,26.9 288.9,26.9 289.9,42.9 290.9,52.6 291.9,54.2 293.0,34.9 294.0,34.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">GARVIN COUNTY JAIL<\/b><br>201 West Grant Avenue<br>Pauls Valley, OK<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 17<\/b> (2025-11-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 17<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,55.9 25.6,55.9 26.6,55.9 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,49.6 58.5,49.6 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,55.9 99.6,52.8 100.7,52.8 101.7,59.0 102.7,59.0 103.8,59.0 104.8,55.9 105.8,55.9 106.8,55.9 107.9,34.1 108.9,34.1 109.9,24.7 111.0,49.6 112.0,27.8 113.0,12.2 114.0,21.6 115.1,49.6 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,55.9 123.3,6.0 124.3,6.0 125.3,18.5 126.4,18.5 127.4,18.5 128.4,18.5 129.5,18.5 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,49.6 153.1,49.6 154.1,43.4 155.2,43.4 156.2,40.3 157.2,55.9 158.3,55.9 159.3,55.9 160.3,59.0 161.3,34.1 162.4,9.1 163.4,6.0 164.4,37.2 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,52.8 177.8,52.8 178.8,52.8 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,55.9 187.0,49.6 188.1,49.6 189.1,43.4 190.1,43.4 191.2,37.2 192.2,37.2 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,52.8 199.4,52.8 200.4,52.8 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,52.8 206.6,52.8 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,55.9 241.6,55.9 242.6,55.9 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,52.8 257.0,52.8 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,43.4 274.5,40.3 275.5,55.9 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,55.9 282.7,55.9 283.7,40.3 284.7,34.1 285.8,34.1 286.8,59.0 287.8,59.0 288.9,46.5 289.9,46.5 290.9,52.8 291.9,52.8 293.0,43.4 294.0,52.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">GRAND JUNCTION HOLDROOM<\/b><br>571 S. COMMERCIAL DRIVE<br>GRAND JUNCTION, CO<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 4<\/b> (2025-11-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 7<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,43.9 6.1,6.0 7.1,43.9 8.1,51.4 9.1,43.9 10.2,59.0 11.2,43.9 12.2,51.4 13.3,36.3 14.3,28.7 15.3,43.9 16.3,59.0 17.4,59.0 18.4,59.0 19.4,43.9 20.5,43.9 21.5,43.9 22.5,59.0 23.5,51.4 24.6,59.0 25.6,51.4 26.6,51.4 27.7,59.0 28.7,59.0 29.7,51.4 30.7,59.0 31.8,59.0 32.8,59.0 33.8,51.4 34.9,59.0 35.9,43.9 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,51.4 42.0,51.4 43.1,59.0 44.1,51.4 45.1,51.4 46.2,59.0 47.2,51.4 48.2,51.4 49.2,51.4 50.3,51.4 51.3,59.0 52.3,59.0 53.4,59.0 54.4,51.4 55.4,59.0 56.4,59.0 57.5,51.4 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,28.7 64.7,51.4 65.7,51.4 66.7,59.0 67.8,59.0 68.8,59.0 69.8,36.3 70.8,43.9 71.9,59.0 72.9,51.4 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,36.3 79.1,51.4 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,51.4 92.4,51.4 93.5,43.9 94.5,43.9 95.5,59.0 96.6,59.0 97.6,43.9 98.6,59.0 99.6,51.4 100.7,51.4 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,28.7 107.9,59.0 108.9,51.4 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,51.4 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,51.4 122.3,59.0 123.3,59.0 124.3,51.4 125.3,59.0 126.4,59.0 127.4,59.0 128.4,43.9 129.5,59.0 130.5,51.4 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,43.9 136.7,51.4 137.7,59.0 138.7,51.4 139.7,59.0 140.8,59.0 141.8,59.0 142.8,43.9 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,43.9 151.1,51.4 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,43.9 158.3,59.0 159.3,51.4 160.3,51.4 161.3,28.7 162.4,59.0 163.4,59.0 164.4,43.9 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,51.4 172.7,51.4 173.7,59.0 174.7,51.4 175.7,59.0 176.8,59.0 177.8,59.0 178.8,51.4 179.9,43.9 180.9,51.4 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,51.4 190.1,51.4 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,51.4 197.3,59.0 198.4,59.0 199.4,43.9 200.4,51.4 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,43.9 208.6,51.4 209.7,59.0 210.7,51.4 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,51.4 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,51.4 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,43.9 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,51.4 254.9,51.4 256.0,59.0 257.0,59.0 258.0,59.0 259.0,43.9 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,43.9 273.4,51.4 274.5,51.4 275.5,51.4 276.5,59.0 277.5,59.0 278.6,51.4 279.6,36.3 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,51.4 287.8,59.0 288.9,51.4 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">GRAND FORKS HOLD ROOM<\/b><br>124 NORTH 6TH STREET<br>GRAND FORKS, ND<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 5<\/b> (2025-11-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 13<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,42.7 6.1,59.0 7.1,50.8 8.1,54.9 9.1,59.0 10.2,59.0 11.2,59.0 12.2,54.9 13.3,59.0 14.3,59.0 15.3,54.9 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,54.9 23.5,38.6 24.6,59.0 25.6,59.0 26.6,50.8 27.7,59.0 28.7,59.0 29.7,59.0 30.7,50.8 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,38.6 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,6.0 43.1,59.0 44.1,59.0 45.1,54.9 46.2,54.9 47.2,59.0 48.2,59.0 49.2,14.2 50.3,54.9 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,34.5 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,50.8 64.7,59.0 65.7,59.0 66.7,50.8 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,50.8 72.9,54.9 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,46.8 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,54.9 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,54.9 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,46.8 108.9,59.0 109.9,59.0 111.0,54.9 112.0,59.0 113.0,59.0 114.0,59.0 115.1,54.9 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,42.7 122.3,46.8 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,54.9 128.4,59.0 129.5,59.0 130.5,54.9 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,46.8 136.7,50.8 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,54.9 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,50.8 151.1,50.8 152.1,54.9 153.1,59.0 154.1,59.0 155.2,59.0 156.2,54.9 157.2,54.9 158.3,54.9 159.3,54.9 160.3,59.0 161.3,50.8 162.4,59.0 163.4,42.7 164.4,59.0 165.5,59.0 166.5,59.0 167.5,46.8 168.5,59.0 169.6,38.6 170.6,59.0 171.6,59.0 172.7,42.7 173.7,59.0 174.7,59.0 175.7,54.9 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,54.9 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,54.9 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,54.9 230.2,38.6 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,54.9 236.4,54.9 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,54.9 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,54.9 266.2,59.0 267.3,54.9 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,54.9 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,54.9 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,50.8 287.8,59.0 288.9,38.6 289.9,54.9 290.9,46.8 291.9,59.0 293.0,59.0 294.0,54.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">GRAND RAPIDS HOLDROOM<\/b><br>517 OTTAWA AVE NW<br>GRAND RAPIDS, MI<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 13<\/b> (2026-01-13)&nbsp;&nbsp;<br><b>Mean:<\/b> 4/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 14<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,47.6 22.5,40.1 23.5,51.4 24.6,47.6 25.6,40.1 26.6,32.5 27.7,24.9 28.7,59.0 29.7,47.6 30.7,32.5 31.8,51.4 32.8,43.9 33.8,55.2 34.9,47.6 35.9,59.0 36.9,47.6 37.9,59.0 39.0,59.0 40.0,59.0 41.0,36.3 42.0,43.9 43.1,32.5 44.1,43.9 45.1,51.4 46.2,59.0 47.2,51.4 48.2,40.1 49.2,40.1 50.3,43.9 51.3,59.0 52.3,51.4 53.4,55.2 54.4,55.2 55.4,55.2 56.4,47.6 57.5,51.4 58.5,47.6 59.5,55.2 60.6,51.4 61.6,47.6 62.6,55.2 63.6,51.4 64.7,28.7 65.7,40.1 66.7,59.0 67.8,51.4 68.8,51.4 69.8,51.4 70.8,43.9 71.9,40.1 72.9,43.9 73.9,51.4 75.0,51.4 76.0,43.9 77.0,51.4 78.0,32.5 79.1,51.4 80.1,55.2 81.1,47.6 82.2,55.2 83.2,59.0 84.2,55.2 85.2,40.1 86.3,51.4 87.3,43.9 88.3,47.6 89.4,47.6 90.4,55.2 91.4,47.6 92.4,40.1 93.5,40.1 94.5,47.6 95.5,59.0 96.6,47.6 97.6,47.6 98.6,43.9 99.6,47.6 100.7,43.9 101.7,59.0 102.7,51.4 103.8,47.6 104.8,55.2 105.8,55.2 106.8,51.4 107.9,43.9 108.9,51.4 109.9,47.6 111.0,55.2 112.0,51.4 113.0,59.0 114.0,51.4 115.1,40.1 116.1,47.6 117.1,55.2 118.1,51.4 119.2,59.0 120.2,55.2 121.2,36.3 122.3,47.6 123.3,55.2 124.3,40.1 125.3,59.0 126.4,55.2 127.4,40.1 128.4,40.1 129.5,32.5 130.5,47.6 131.5,43.9 132.5,47.6 133.6,47.6 134.6,51.4 135.6,36.3 136.7,36.3 137.7,51.4 138.7,51.4 139.7,51.4 140.8,47.6 141.8,51.4 142.8,24.9 143.9,55.2 144.9,47.6 145.9,32.5 146.9,47.6 148.0,51.4 149.0,51.4 150.0,28.7 151.1,51.4 152.1,47.6 153.1,47.6 154.1,51.4 155.2,55.2 156.2,51.4 157.2,43.9 158.3,55.2 159.3,51.4 160.3,47.6 161.3,47.6 162.4,51.4 163.4,55.2 164.4,51.4 165.5,40.1 166.5,47.6 167.5,43.9 168.5,51.4 169.6,55.2 170.6,51.4 171.6,55.2 172.7,55.2 173.7,51.4 174.7,40.1 175.7,55.2 176.8,40.1 177.8,47.6 178.8,32.5 179.9,47.6 180.9,43.9 181.9,40.1 182.9,55.2 184.0,55.2 185.0,32.5 186.0,47.6 187.0,43.9 188.1,51.4 189.1,51.4 190.1,51.4 191.2,59.0 192.2,47.6 193.2,43.9 194.2,43.9 195.3,32.5 196.3,47.6 197.3,55.2 198.4,51.4 199.4,55.2 200.4,28.7 201.4,40.1 202.5,24.9 203.5,40.1 204.5,51.4 205.6,59.0 206.6,40.1 207.6,43.9 208.6,51.4 209.7,59.0 210.7,55.2 211.7,51.4 212.8,43.9 213.8,47.6 214.8,36.3 215.8,55.2 216.9,47.6 217.9,28.7 218.9,55.2 220.0,55.2 221.0,43.9 222.0,28.7 223.0,47.6 224.1,43.9 225.1,40.1 226.1,43.9 227.2,36.3 228.2,51.4 229.2,36.3 230.2,40.1 231.3,32.5 232.3,51.4 233.3,40.1 234.4,43.9 235.4,43.9 236.4,9.8 237.4,32.5 238.5,36.3 239.5,21.1 240.5,55.2 241.6,55.2 242.6,47.6 243.6,51.4 244.6,24.9 245.7,21.1 246.7,43.9 247.7,55.2 248.8,55.2 249.8,55.2 250.8,43.9 251.8,32.5 252.9,51.4 253.9,51.4 254.9,47.6 256.0,47.6 257.0,51.4 258.0,43.9 259.0,55.2 260.1,43.9 261.1,43.9 262.1,40.1 263.1,47.6 264.2,55.2 265.2,51.4 266.2,36.3 267.3,47.6 268.3,51.4 269.3,59.0 270.3,51.4 271.4,59.0 272.4,43.9 273.4,40.1 274.5,47.6 275.5,51.4 276.5,36.3 277.5,40.1 278.6,6.0 279.6,47.6 280.6,47.6 281.7,47.6 282.7,51.4 283.7,59.0 284.7,51.4 285.8,51.4 286.8,24.9 287.8,47.6 288.9,47.6 289.9,51.4 290.9,51.4 291.9,55.2 293.0,43.9 294.0,47.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">GREER HOLD ROOM<\/b><br>501 Pennsylvania Ave<br>GREER, SC<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 6<\/b> (2025-12-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 7<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,28.7 6.1,21.1 7.1,59.0 8.1,43.9 9.1,43.9 10.2,59.0 11.2,59.0 12.2,36.3 13.3,43.9 14.3,43.9 15.3,43.9 16.3,43.9 17.4,59.0 18.4,59.0 19.4,43.9 20.5,59.0 21.5,59.0 22.5,59.0 23.5,43.9 24.6,59.0 25.6,59.0 26.6,51.4 27.7,59.0 28.7,6.0 29.7,43.9 30.7,43.9 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,43.9 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,36.3 43.1,43.9 44.1,59.0 45.1,13.6 46.2,59.0 47.2,59.0 48.2,59.0 49.2,43.9 50.3,43.9 51.3,43.9 52.3,6.0 53.4,59.0 54.4,59.0 55.4,36.3 56.4,51.4 57.5,43.9 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,21.1 64.7,43.9 65.7,43.9 66.7,51.4 67.8,59.0 68.8,59.0 69.8,43.9 70.8,59.0 71.9,21.1 72.9,43.9 73.9,51.4 75.0,59.0 76.0,43.9 77.0,43.9 78.0,43.9 79.1,59.0 80.1,43.9 81.1,28.7 82.2,59.0 83.2,59.0 84.2,43.9 85.2,59.0 86.3,51.4 87.3,51.4 88.3,28.7 89.4,59.0 90.4,59.0 91.4,21.1 92.4,43.9 93.5,43.9 94.5,36.3 95.5,21.1 96.6,59.0 97.6,59.0 98.6,43.9 99.6,59.0 100.7,36.3 101.7,36.3 102.7,28.7 103.8,59.0 104.8,59.0 105.8,59.0 106.8,51.4 107.9,51.4 108.9,59.0 109.9,51.4 111.0,59.0 112.0,59.0 113.0,51.4 114.0,59.0 115.1,43.9 116.1,43.9 117.1,59.0 118.1,59.0 119.2,59.0 120.2,51.4 121.2,59.0 122.3,36.3 123.3,51.4 124.3,28.7 125.3,59.0 126.4,59.0 127.4,43.9 128.4,59.0 129.5,43.9 130.5,43.9 131.5,43.9 132.5,59.0 133.6,59.0 134.6,21.1 135.6,43.9 136.7,51.4 137.7,51.4 138.7,59.0 139.7,59.0 140.8,59.0 141.8,43.9 142.8,59.0 143.9,43.9 144.9,59.0 145.9,36.3 146.9,59.0 148.0,59.0 149.0,43.9 150.0,36.3 151.1,43.9 152.1,21.1 153.1,36.3 154.1,59.0 155.2,59.0 156.2,28.7 157.2,59.0 158.3,36.3 159.3,36.3 160.3,43.9 161.3,59.0 162.4,59.0 163.4,28.7 164.4,36.3 165.5,28.7 166.5,51.4 167.5,36.3 168.5,59.0 169.6,43.9 170.6,36.3 171.6,59.0 172.7,51.4 173.7,36.3 174.7,36.3 175.7,59.0 176.8,59.0 177.8,36.3 178.8,36.3 179.9,43.9 180.9,59.0 181.9,43.9 182.9,59.0 184.0,59.0 185.0,51.4 186.0,51.4 187.0,59.0 188.1,59.0 189.1,51.4 190.1,59.0 191.2,59.0 192.2,13.6 193.2,51.4 194.2,28.7 195.3,21.1 196.3,28.7 197.3,59.0 198.4,59.0 199.4,51.4 200.4,43.9 201.4,21.1 202.5,21.1 203.5,59.0 204.5,21.1 205.6,43.9 206.6,43.9 207.6,51.4 208.6,21.1 209.7,36.3 210.7,36.3 211.7,43.9 212.8,43.9 213.8,59.0 214.8,43.9 215.8,51.4 216.9,59.0 217.9,59.0 218.9,36.3 220.0,43.9 221.0,36.3 222.0,36.3 223.0,36.3 224.1,59.0 225.1,36.3 226.1,43.9 227.2,43.9 228.2,43.9 229.2,36.3 230.2,21.1 231.3,43.9 232.3,28.7 233.3,43.9 234.4,36.3 235.4,36.3 236.4,43.9 237.4,43.9 238.5,51.4 239.5,36.3 240.5,43.9 241.6,43.9 242.6,43.9 243.6,51.4 244.6,43.9 245.7,36.3 246.7,36.3 247.7,59.0 248.8,59.0 249.8,59.0 250.8,43.9 251.8,36.3 252.9,36.3 253.9,28.7 254.9,59.0 256.0,59.0 257.0,43.9 258.0,43.9 259.0,43.9 260.1,36.3 261.1,36.3 262.1,43.9 263.1,51.4 264.2,59.0 265.2,43.9 266.2,28.7 267.3,21.1 268.3,28.7 269.3,36.3 270.3,51.4 271.4,36.3 272.4,51.4 273.4,43.9 274.5,43.9 275.5,36.3 276.5,43.9 277.5,43.9 278.6,59.0 279.6,28.7 280.6,21.1 281.7,28.7 282.7,43.9 283.7,51.4 284.7,36.3 285.8,36.3 286.8,43.9 287.8,28.7 288.9,51.4 289.9,28.7 290.9,36.3 291.9,36.3 293.0,6.0 294.0,36.3\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">GLENWOOD SPRINGS HOLDROOM<\/b><br>100 MIDLAND AVENUE<br>GLENWOOD SPRINGS, CO<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 4<\/b> (2025-11-17)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 4<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,45.8 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,45.8 43.1,45.8 44.1,59.0 45.1,45.8 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,45.8 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,45.8 58.5,59.0 59.5,45.8 60.6,45.8 61.6,59.0 62.6,45.8 63.6,45.8 64.7,59.0 65.7,19.2 66.7,45.8 67.8,59.0 68.8,59.0 69.8,45.8 70.8,59.0 71.9,45.8 72.9,59.0 73.9,45.8 75.0,45.8 76.0,59.0 77.0,59.0 78.0,59.0 79.1,45.8 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,45.8 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,45.8 93.5,59.0 94.5,45.8 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,45.8 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,45.8 106.8,45.8 107.9,59.0 108.9,32.5 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,32.5 115.1,45.8 116.1,45.8 117.1,45.8 118.1,45.8 119.2,59.0 120.2,19.2 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,45.8 129.5,59.0 130.5,59.0 131.5,45.8 132.5,59.0 133.6,59.0 134.6,32.5 135.6,45.8 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,45.8 145.9,59.0 146.9,59.0 148.0,59.0 149.0,45.8 150.0,45.8 151.1,45.8 152.1,32.5 153.1,59.0 154.1,59.0 155.2,59.0 156.2,45.8 157.2,45.8 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,32.5 163.4,59.0 164.4,45.8 165.5,59.0 166.5,45.8 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,45.8 173.7,45.8 174.7,59.0 175.7,59.0 176.8,32.5 177.8,6.0 178.8,59.0 179.9,59.0 180.9,45.8 181.9,59.0 182.9,59.0 184.0,45.8 185.0,32.5 186.0,45.8 187.0,59.0 188.1,59.0 189.1,59.0 190.1,45.8 191.2,59.0 192.2,45.8 193.2,59.0 194.2,59.0 195.3,45.8 196.3,59.0 197.3,59.0 198.4,59.0 199.4,45.8 200.4,59.0 201.4,32.5 202.5,59.0 203.5,59.0 204.5,59.0 205.6,45.8 206.6,32.5 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,45.8 215.8,45.8 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,45.8 223.0,59.0 224.1,59.0 225.1,32.5 226.1,59.0 227.2,45.8 228.2,45.8 229.2,45.8 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,45.8 236.4,59.0 237.4,32.5 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,45.8 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,45.8 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,45.8 258.0,59.0 259.0,59.0 260.1,45.8 261.1,45.8 262.1,59.0 263.1,59.0 264.2,45.8 265.2,59.0 266.2,45.8 267.3,59.0 268.3,59.0 269.3,59.0 270.3,45.8 271.4,45.8 272.4,45.8 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,45.8 281.7,32.5 282.7,59.0 283.7,59.0 284.7,59.0 285.8,45.8 286.8,19.2 287.8,59.0 288.9,45.8 289.9,45.8 290.9,59.0 291.9,59.0 293.0,59.0 294.0,45.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HALL CO JAIL<\/b><br>1700 Barber Road<br>Gainesville, GA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 3<\/b> (2026-01-10)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 3<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,23.7 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,6.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,41.3 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,6.0 271.4,23.7 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,23.7 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,23.7 286.8,59.0 287.8,59.0 288.9,59.0 289.9,6.0 290.9,59.0 291.9,41.3 293.0,59.0 294.0,41.3\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HARTFORD OFFICE<\/b><br>450 MAIN STREET<br>HARTFORD, CT<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 11<\/b> (2025-11-12)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 36<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,50.2 5.0,38.4 6.1,38.4 7.1,38.4 8.1,41.3 9.1,51.6 10.2,53.1 11.2,50.2 12.2,44.3 13.3,47.2 14.3,47.2 15.3,48.7 16.3,48.7 17.4,51.6 18.4,53.1 19.4,42.8 20.5,44.3 21.5,54.6 22.5,50.2 23.5,48.7 24.6,51.6 25.6,56.1 26.6,47.2 27.7,54.6 28.7,45.8 29.7,41.3 30.7,44.3 31.8,47.2 32.8,53.1 33.8,47.2 34.9,51.6 35.9,48.7 36.9,44.3 37.9,54.6 39.0,54.6 40.0,54.6 41.0,45.8 42.0,47.2 43.1,47.2 44.1,45.8 45.1,47.2 46.2,54.6 47.2,53.1 48.2,47.2 49.2,47.2 50.3,50.2 51.3,47.2 52.3,51.6 53.4,53.1 54.4,54.6 55.4,47.2 56.4,48.7 57.5,51.6 58.5,47.2 59.5,51.6 60.6,53.1 61.6,51.6 62.6,45.8 63.6,47.2 64.7,44.3 65.7,50.2 66.7,54.6 67.8,50.2 68.8,53.1 69.8,45.8 70.8,51.6 71.9,53.1 72.9,41.3 73.9,47.2 75.0,48.7 76.0,48.7 77.0,35.4 78.0,31.0 79.1,19.2 80.1,6.0 81.1,23.7 82.2,32.5 83.2,53.1 84.2,48.7 85.2,48.7 86.3,45.8 87.3,50.2 88.3,48.7 89.4,41.3 90.4,50.2 91.4,47.2 92.4,42.8 93.5,41.3 94.5,48.7 95.5,53.1 96.6,53.1 97.6,53.1 98.6,53.1 99.6,50.2 100.7,45.8 101.7,45.8 102.7,48.7 103.8,48.7 104.8,47.2 105.8,44.3 106.8,51.6 107.9,48.7 108.9,53.1 109.9,51.6 111.0,56.1 112.0,54.6 113.0,53.1 114.0,57.5 115.1,56.1 116.1,54.6 117.1,57.5 118.1,57.5 119.2,56.1 120.2,57.5 121.2,57.5 122.3,53.1 123.3,56.1 124.3,56.1 125.3,57.5 126.4,57.5 127.4,53.1 128.4,54.6 129.5,51.6 130.5,53.1 131.5,53.1 132.5,56.1 133.6,57.5 134.6,53.1 135.6,53.1 136.7,51.6 137.7,53.1 138.7,57.5 139.7,56.1 140.8,57.5 141.8,57.5 142.8,53.1 143.9,44.3 144.9,50.2 145.9,50.2 146.9,56.1 148.0,56.1 149.0,53.1 150.0,48.7 151.1,53.1 152.1,53.1 153.1,51.6 154.1,56.1 155.2,54.6 156.2,47.2 157.2,54.6 158.3,54.6 159.3,50.2 160.3,54.6 161.3,47.2 162.4,48.7 163.4,54.6 164.4,51.6 165.5,53.1 166.5,54.6 167.5,50.2 168.5,51.6 169.6,56.1 170.6,48.7 171.6,54.6 172.7,42.8 173.7,48.7 174.7,48.7 175.7,56.1 176.8,56.1 177.8,53.1 178.8,53.1 179.9,50.2 180.9,44.3 181.9,54.6 182.9,54.6 184.0,54.6 185.0,50.2 186.0,51.6 187.0,51.6 188.1,54.6 189.1,54.6 190.1,56.1 191.2,54.6 192.2,53.1 193.2,53.1 194.2,47.2 195.3,51.6 196.3,50.2 197.3,51.6 198.4,54.6 199.4,54.6 200.4,56.1 201.4,53.1 202.5,51.6 203.5,53.1 204.5,56.1 205.6,56.1 206.6,51.6 207.6,56.1 208.6,54.6 209.7,54.6 210.7,45.8 211.7,57.5 212.8,57.5 213.8,56.1 214.8,57.5 215.8,53.1 216.9,59.0 217.9,57.5 218.9,59.0 220.0,57.5 221.0,56.1 222.0,57.5 223.0,56.1 224.1,57.5 225.1,56.1 226.1,59.0 227.2,59.0 228.2,54.6 229.2,56.1 230.2,51.6 231.3,45.8 232.3,54.6 233.3,57.5 234.4,57.5 235.4,53.1 236.4,54.6 237.4,56.1 238.5,51.6 239.5,56.1 240.5,59.0 241.6,53.1 242.6,59.0 243.6,56.1 244.6,57.5 245.7,57.5 246.7,51.6 247.7,56.1 248.8,59.0 249.8,59.0 250.8,54.6 251.8,51.6 252.9,56.1 253.9,54.6 254.9,57.5 256.0,57.5 257.0,57.5 258.0,57.5 259.0,57.5 260.1,54.6 261.1,57.5 262.1,57.5 263.1,57.5 264.2,54.6 265.2,54.6 266.2,53.1 267.3,59.0 268.3,54.6 269.3,57.5 270.3,59.0 271.4,57.5 272.4,57.5 273.4,47.2 274.5,51.6 275.5,56.1 276.5,59.0 277.5,59.0 278.6,59.0 279.6,57.5 280.6,54.6 281.7,57.5 282.7,53.1 283.7,59.0 284.7,59.0 285.8,54.6 286.8,56.1 287.8,53.1 288.9,53.1 289.9,51.6 290.9,59.0 291.9,57.5 293.0,54.6 294.0,54.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HARRISONBURG HOLD ROOM<\/b><br>263 Neff Ave.<br>HARRISONBURG, VA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 9<\/b> (2025-12-04)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 11<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,39.7 6.1,6.0 7.1,10.8 8.1,49.4 9.1,49.4 10.2,59.0 11.2,59.0 12.2,44.5 13.3,59.0 14.3,59.0 15.3,44.5 16.3,54.2 17.4,59.0 18.4,54.2 19.4,39.7 20.5,49.4 21.5,39.7 22.5,59.0 23.5,39.7 24.6,59.0 25.6,59.0 26.6,49.4 27.7,44.5 28.7,54.2 29.7,44.5 30.7,54.2 31.8,59.0 32.8,59.0 33.8,54.2 34.9,59.0 35.9,59.0 36.9,49.4 37.9,59.0 39.0,59.0 40.0,59.0 41.0,49.4 42.0,59.0 43.1,39.7 44.1,44.5 45.1,54.2 46.2,54.2 47.2,59.0 48.2,54.2 49.2,59.0 50.3,54.2 51.3,54.2 52.3,59.0 53.4,59.0 54.4,59.0 55.4,54.2 56.4,54.2 57.5,54.2 58.5,54.2 59.5,54.2 60.6,59.0 61.6,59.0 62.6,34.9 63.6,54.2 64.7,54.2 65.7,39.7 66.7,39.7 67.8,59.0 68.8,59.0 69.8,39.7 70.8,54.2 71.9,54.2 72.9,39.7 73.9,54.2 75.0,59.0 76.0,59.0 77.0,54.2 78.0,44.5 79.1,49.4 80.1,49.4 81.1,49.4 82.2,59.0 83.2,59.0 84.2,39.7 85.2,44.5 86.3,44.5 87.3,34.9 88.3,44.5 89.4,49.4 90.4,59.0 91.4,59.0 92.4,59.0 93.5,39.7 94.5,39.7 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,54.2 101.7,54.2 102.7,59.0 103.8,54.2 104.8,59.0 105.8,44.5 106.8,39.7 107.9,34.9 108.9,49.4 109.9,39.7 111.0,59.0 112.0,59.0 113.0,54.2 114.0,59.0 115.1,44.5 116.1,49.4 117.1,49.4 118.1,59.0 119.2,59.0 120.2,30.1 121.2,49.4 122.3,44.5 123.3,49.4 124.3,49.4 125.3,59.0 126.4,59.0 127.4,49.4 128.4,49.4 129.5,54.2 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,54.2 135.6,49.4 136.7,39.7 137.7,49.4 138.7,39.7 139.7,54.2 140.8,59.0 141.8,49.4 142.8,49.4 143.9,44.5 144.9,49.4 145.9,34.9 146.9,59.0 148.0,59.0 149.0,39.7 150.0,49.4 151.1,59.0 152.1,44.5 153.1,59.0 154.1,54.2 155.2,59.0 156.2,54.2 157.2,54.2 158.3,34.9 159.3,34.9 160.3,54.2 161.3,59.0 162.4,59.0 163.4,49.4 164.4,59.0 165.5,49.4 166.5,39.7 167.5,54.2 168.5,59.0 169.6,59.0 170.6,49.4 171.6,54.2 172.7,54.2 173.7,44.5 174.7,44.5 175.7,59.0 176.8,59.0 177.8,44.5 178.8,54.2 179.9,30.1 180.9,25.3 181.9,39.7 182.9,54.2 184.0,59.0 185.0,34.9 186.0,49.4 187.0,54.2 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,49.4 193.2,59.0 194.2,49.4 195.3,15.6 196.3,49.4 197.3,59.0 198.4,59.0 199.4,54.2 200.4,59.0 201.4,49.4 202.5,39.7 203.5,54.2 204.5,59.0 205.6,59.0 206.6,54.2 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,54.2 214.8,54.2 215.8,49.4 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,49.4 222.0,54.2 223.0,54.2 224.1,59.0 225.1,44.5 226.1,59.0 227.2,59.0 228.2,59.0 229.2,49.4 230.2,20.5 231.3,34.9 232.3,49.4 233.3,59.0 234.4,59.0 235.4,15.6 236.4,25.3 237.4,54.2 238.5,34.9 239.5,44.5 240.5,59.0 241.6,59.0 242.6,59.0 243.6,44.5 244.6,54.2 245.7,44.5 246.7,54.2 247.7,59.0 248.8,59.0 249.8,59.0 250.8,54.2 251.8,49.4 252.9,49.4 253.9,59.0 254.9,59.0 256.0,59.0 257.0,49.4 258.0,44.5 259.0,59.0 260.1,49.4 261.1,59.0 262.1,59.0 263.1,59.0 264.2,54.2 265.2,59.0 266.2,49.4 267.3,44.5 268.3,44.5 269.3,59.0 270.3,59.0 271.4,49.4 272.4,39.7 273.4,54.2 274.5,54.2 275.5,44.5 276.5,59.0 277.5,59.0 278.6,54.2 279.6,49.4 280.6,30.1 281.7,49.4 282.7,49.4 283.7,49.4 284.7,59.0 285.8,49.4 286.8,54.2 287.8,59.0 288.9,44.5 289.9,59.0 290.9,59.0 291.9,59.0 293.0,49.4 294.0,49.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HEL DISTRICT CUSTODY<\/b><br>805 COLLEEN STREET<br>HELENA, MT<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 4<\/b> (2025-12-11)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 4<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,45.8 9.1,59.0 10.2,45.8 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,32.5 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,45.8 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,45.8 123.3,45.8 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,45.8 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,45.8 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,45.8 160.3,45.8 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,45.8 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,45.8 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,45.8 188.1,45.8 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,6.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,45.8 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,32.5 221.0,59.0 222.0,59.0 223.0,19.2 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,45.8 232.3,59.0 233.3,45.8 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,45.8 248.8,59.0 249.8,59.0 250.8,59.0 251.8,45.8 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,45.8 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,45.8 281.7,59.0 282.7,59.0 283.7,45.8 284.7,59.0 285.8,59.0 286.8,59.0 287.8,45.8 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HENDRY COUNTY JAIL<\/b><br>101 South Bridge Street<br>Labelle, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 2<\/b> (2025-12-19)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,32.5 204.5,32.5 205.6,32.5 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,6.0 211.7,6.0 212.8,6.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HARLINGEN HOLD ROOM<\/b><br>1717 Zoy Street<br>Harlingen, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 80<\/b> (2025-12-05)&nbsp;&nbsp;<br><b>Mean:<\/b> 25/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 119<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,54.5 5.0,55.4 6.1,35.4 7.1,6.0 8.1,44.7 9.1,50.5 10.2,49.2 11.2,53.2 12.2,49.6 13.3,52.3 14.3,50.5 15.3,54.5 16.3,55.4 17.4,50.1 18.4,55.9 19.4,49.2 20.5,39.4 21.5,46.1 22.5,50.5 23.5,52.8 24.6,53.2 25.6,57.2 26.6,48.3 27.7,42.5 28.7,46.1 29.7,44.7 30.7,46.1 31.8,49.2 32.8,55.0 33.8,41.2 34.9,46.1 35.9,42.5 36.9,49.2 37.9,46.5 39.0,50.5 40.0,55.9 41.0,33.2 42.0,38.5 43.1,38.1 44.1,50.5 45.1,31.8 46.2,43.9 47.2,50.5 48.2,51.0 49.2,45.2 50.3,41.6 51.3,33.2 52.3,46.5 53.4,49.6 54.4,50.1 55.4,52.8 56.4,52.8 57.5,35.4 58.5,50.5 59.5,38.5 60.6,47.9 61.6,50.5 62.6,53.7 63.6,50.5 64.7,48.8 65.7,53.2 66.7,43.4 67.8,34.9 68.8,45.6 69.8,55.9 70.8,51.9 71.9,51.0 72.9,28.7 73.9,22.0 75.0,42.5 76.0,43.4 77.0,43.4 78.0,41.6 79.1,39.0 80.1,39.8 81.1,39.4 82.2,41.6 83.2,46.5 84.2,43.9 85.2,39.8 86.3,38.1 87.3,36.7 88.3,34.5 89.4,52.3 90.4,54.5 91.4,56.3 92.4,49.2 93.5,43.4 94.5,38.1 95.5,50.5 96.6,48.8 97.6,55.4 98.6,56.3 99.6,52.8 100.7,47.0 101.7,51.0 102.7,45.6 103.8,44.7 104.8,49.2 105.8,45.2 106.8,43.4 107.9,37.6 108.9,47.4 109.9,51.9 111.0,49.6 112.0,53.7 113.0,51.4 114.0,49.6 115.1,50.5 116.1,52.3 117.1,50.5 118.1,53.7 119.2,56.3 120.2,53.7 121.2,42.5 122.3,53.7 123.3,52.8 124.3,55.0 125.3,54.1 126.4,56.8 127.4,54.5 128.4,51.9 129.5,53.7 130.5,56.8 131.5,35.8 132.5,44.3 133.6,57.7 134.6,57.2 135.6,53.7 136.7,52.8 137.7,47.9 138.7,53.7 139.7,53.7 140.8,53.2 141.8,55.0 142.8,54.1 143.9,52.3 144.9,49.2 145.9,51.0 146.9,55.0 148.0,56.8 149.0,54.5 150.0,49.2 151.1,46.5 152.1,51.9 153.1,51.9 154.1,53.2 155.2,50.5 156.2,54.5 157.2,50.5 158.3,48.8 159.3,43.0 160.3,45.6 161.3,53.2 162.4,52.8 163.4,51.9 164.4,49.2 165.5,43.4 166.5,46.1 167.5,28.7 168.5,39.4 169.6,55.9 170.6,53.2 171.6,50.5 172.7,46.5 173.7,50.1 174.7,30.5 175.7,47.9 176.8,54.1 177.8,47.4 178.8,50.5 179.9,47.0 180.9,41.6 181.9,40.7 182.9,41.6 184.0,40.3 185.0,52.8 186.0,51.4 187.0,55.9 188.1,55.0 189.1,52.8 190.1,51.4 191.2,55.0 192.2,52.8 193.2,47.0 194.2,34.1 195.3,44.7 196.3,23.4 197.3,48.3 198.4,50.1 199.4,47.4 200.4,43.9 201.4,42.1 202.5,44.3 203.5,49.6 204.5,49.2 205.6,45.6 206.6,42.5 207.6,28.7 208.6,43.0 209.7,30.1 210.7,41.6 211.7,44.3 212.8,53.2 213.8,48.3 214.8,47.9 215.8,52.8 216.9,47.4 217.9,51.9 218.9,55.0 220.0,54.5 221.0,53.2 222.0,51.9 223.0,48.3 224.1,54.1 225.1,51.4 226.1,50.1 227.2,54.5 228.2,48.3 229.2,48.3 230.2,45.6 231.3,41.2 232.3,46.5 233.3,42.1 234.4,43.0 235.4,43.9 236.4,48.8 237.4,32.3 238.5,25.6 239.5,50.5 240.5,52.3 241.6,44.7 242.6,51.4 243.6,52.8 244.6,49.2 245.7,44.3 246.7,36.7 247.7,39.0 248.8,56.3 249.8,53.2 250.8,44.7 251.8,55.4 252.9,49.2 253.9,51.9 254.9,43.0 256.0,44.7 257.0,54.5 258.0,52.3 259.0,50.5 260.1,51.4 261.1,49.6 262.1,51.4 263.1,55.0 264.2,55.0 265.2,49.6 266.2,54.1 267.3,51.4 268.3,48.8 269.3,55.4 270.3,48.3 271.4,52.3 272.4,51.9 273.4,52.3 274.5,47.9 275.5,51.0 276.5,55.0 277.5,53.7 278.6,52.3 279.6,53.7 280.6,52.8 281.7,53.7 282.7,53.7 283.7,56.8 284.7,53.2 285.8,54.1 286.8,51.0 287.8,52.3 288.9,52.3 289.9,48.3 290.9,54.1 291.9,57.7 293.0,54.1 294.0,55.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">HOUSTON FO HOLDROOM<\/b><br>126 Northpoint Drive<br>Houston, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 85<\/b> (2025-10-31)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 85<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,58.4 5.0,58.4 6.1,58.4 7.1,58.4 8.1,58.4 9.1,58.4 10.2,58.4 11.2,58.4 12.2,58.4 13.3,58.4 14.3,58.4 15.3,57.1 16.3,58.4 17.4,58.4 18.4,58.4 19.4,58.4 20.5,57.8 21.5,58.4 22.5,58.4 23.5,58.4 24.6,58.4 25.6,58.4 26.6,58.4 27.7,58.4 28.7,57.1 29.7,52.8 30.7,58.4 31.8,58.4 32.8,58.4 33.8,58.4 34.9,58.4 35.9,58.4 36.9,58.4 37.9,58.4 39.0,58.4 40.0,58.4 41.0,58.4 42.0,58.4 43.1,58.4 44.1,57.1 45.1,58.4 46.2,58.4 47.2,58.4 48.2,58.4 49.2,58.4 50.3,57.8 51.3,57.1 52.3,58.4 53.4,58.4 54.4,58.4 55.4,58.4 56.4,55.9 57.5,58.4 58.5,58.4 59.5,58.4 60.6,58.4 61.6,57.1 62.6,56.5 63.6,57.8 64.7,55.9 65.7,58.4 66.7,58.4 67.8,58.4 68.8,58.4 69.8,58.4 70.8,58.4 71.9,58.4 72.9,57.1 73.9,55.9 75.0,58.4 76.0,58.4 77.0,58.4 78.0,58.4 79.1,58.4 80.1,57.1 81.1,58.4 82.2,58.4 83.2,58.4 84.2,58.4 85.2,58.4 86.3,58.4 87.3,56.5 88.3,55.3 89.4,54.6 90.4,55.3 91.4,55.3 92.4,55.3 93.5,54.6 94.5,55.3 95.5,55.3 96.6,55.3 97.6,55.3 98.6,55.3 99.6,53.4 100.7,55.3 101.7,55.3 102.7,54.6 103.8,54.6 104.8,54.6 105.8,54.6 106.8,50.9 107.9,52.8 108.9,51.5 109.9,52.8 111.0,52.8 112.0,52.8 113.0,52.8 114.0,52.8 115.1,52.8 116.1,52.8 117.1,53.4 118.1,53.4 119.2,53.4 120.2,52.8 121.2,58.4 122.3,58.4 123.3,56.5 124.3,58.4 125.3,58.4 126.4,58.4 127.4,58.4 128.4,58.4 129.5,58.4 130.5,58.4 131.5,58.4 132.5,58.4 133.6,58.4 134.6,58.4 135.6,58.4 136.7,58.4 137.7,58.4 138.7,57.8 139.7,58.4 140.8,58.4 141.8,58.4 142.8,58.4 143.9,54.0 144.9,58.4 145.9,58.4 146.9,57.8 148.0,58.4 149.0,58.4 150.0,58.4 151.1,58.4 152.1,58.4 153.1,58.4 154.1,58.4 155.2,58.4 156.2,58.4 157.2,58.4 158.3,58.4 159.3,17.2 160.3,6.0 161.3,6.0 162.4,57.8 163.4,57.8 164.4,57.8 165.5,57.8 166.5,57.1 167.5,55.9 168.5,58.4 169.6,58.4 170.6,54.0 171.6,58.4 172.7,58.4 173.7,56.5 174.7,58.4 175.7,58.4 176.8,58.4 177.8,58.4 178.8,58.4 179.9,58.4 180.9,57.8 181.9,55.9 182.9,57.1 184.0,57.1 185.0,58.4 186.0,58.4 187.0,58.4 188.1,58.4 189.1,58.4 190.1,58.4 191.2,58.4 192.2,58.4 193.2,58.4 194.2,58.4 195.3,58.4 196.3,58.4 197.3,58.4 198.4,58.4 199.4,58.4 200.4,58.4 201.4,57.1 202.5,57.8 203.5,57.8 204.5,57.8 205.6,58.4 206.6,58.4 207.6,57.1 208.6,58.4 209.7,58.4 210.7,57.1 211.7,58.4 212.8,58.4 213.8,57.8 214.8,58.4 215.8,58.4 216.9,58.4 217.9,58.4 218.9,58.4 220.0,58.4 221.0,58.4 222.0,58.4 223.0,58.4 224.1,58.4 225.1,58.4 226.1,58.4 227.2,58.4 228.2,58.4 229.2,58.4 230.2,58.4 231.3,58.4 232.3,58.4 233.3,55.9 234.4,57.8 235.4,58.4 236.4,53.4 237.4,57.8 238.5,56.5 239.5,58.4 240.5,58.4 241.6,58.4 242.6,55.9 243.6,58.4 244.6,58.4 245.7,58.4 246.7,57.8 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,55.9 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,58.4 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,56.5 265.2,57.8 266.2,55.9 267.3,55.9 268.3,59.0 269.3,58.4 270.3,59.0 271.4,56.5 272.4,57.8 273.4,58.4 274.5,58.4 275.5,57.8 276.5,59.0 277.5,59.0 278.6,58.4 279.6,59.0 280.6,59.0 281.7,59.0 282.7,55.3 283.7,59.0 284.7,59.0 285.8,59.0 286.8,54.6 287.8,59.0 288.9,57.1 289.9,56.5 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">IDAHO FALLS HOLD ROOM<\/b><br>2075 NORTH BOULEVARD<br>IDAHO FALLS, ID<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 6<\/b> (2025-10-20)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 6<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,50.2 13.3,59.0 14.3,59.0 15.3,50.2 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,50.2 27.7,50.2 28.7,59.0 29.7,59.0 30.7,50.2 31.8,59.0 32.8,59.0 33.8,50.2 34.9,59.0 35.9,50.2 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,41.3 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,41.3 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,32.5 63.6,59.0 64.7,59.0 65.7,41.3 66.7,59.0 67.8,41.3 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,50.2 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,50.2 85.2,59.0 86.3,59.0 87.3,32.5 88.3,32.5 89.4,59.0 90.4,59.0 91.4,59.0 92.4,50.2 93.5,59.0 94.5,50.2 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,50.2 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,50.2 129.5,59.0 130.5,50.2 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,6.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,50.2 158.3,59.0 159.3,50.2 160.3,59.0 161.3,59.0 162.4,59.0 163.4,50.2 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,41.3 174.7,50.2 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,50.2 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,50.2 201.4,41.3 202.5,59.0 203.5,50.2 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,32.5 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,50.2 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,41.3 226.1,59.0 227.2,59.0 228.2,50.2 229.2,59.0 230.2,50.2 231.3,59.0 232.3,59.0 233.3,50.2 234.4,59.0 235.4,59.0 236.4,50.2 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,50.2 248.8,59.0 249.8,59.0 250.8,50.2 251.8,59.0 252.9,59.0 253.9,50.2 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,50.2 260.1,50.2 261.1,59.0 262.1,59.0 263.1,59.0 264.2,41.3 265.2,50.2 266.2,59.0 267.3,23.7 268.3,50.2 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,50.2 274.5,59.0 275.5,50.2 276.5,50.2 277.5,59.0 278.6,59.0 279.6,50.2 280.6,59.0 281.7,23.7 282.7,41.3 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,32.5 288.9,23.7 289.9,59.0 290.9,50.2 291.9,59.0 293.0,50.2 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">IMPERIAL SUB OFFICE HOLD ROOM<\/b><br>2409 La Brucherie Road, Suite 3<br>Imperial, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 62<\/b> (2025-12-19)&nbsp;&nbsp;<br><b>Mean:<\/b> 7/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 62<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,58.1 5.0,58.1 6.1,58.1 7.1,58.1 8.1,58.1 9.1,57.3 10.2,56.4 11.2,56.4 12.2,58.1 13.3,57.3 14.3,57.3 15.3,57.3 16.3,56.4 17.4,57.3 18.4,58.1 19.4,58.1 20.5,54.7 21.5,57.3 22.5,58.1 23.5,58.1 24.6,58.1 25.6,59.0 26.6,58.1 27.7,58.1 28.7,56.4 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,53.0 35.9,53.0 36.9,59.0 37.9,58.1 39.0,59.0 40.0,59.0 41.0,58.1 42.0,58.1 43.1,58.1 44.1,51.3 45.1,53.9 46.2,59.0 47.2,59.0 48.2,58.1 49.2,53.0 50.3,52.2 51.3,58.1 52.3,58.1 53.4,58.1 54.4,59.0 55.4,56.4 56.4,55.6 57.5,54.7 58.5,58.1 59.5,57.3 60.6,57.3 61.6,58.1 62.6,58.1 63.6,53.9 64.7,59.0 65.7,58.1 66.7,54.7 67.8,59.0 68.8,59.0 69.8,57.3 70.8,58.1 71.9,58.1 72.9,56.4 73.9,58.1 75.0,55.6 76.0,59.0 77.0,59.0 78.0,53.9 79.1,56.4 80.1,58.1 81.1,54.7 82.2,59.0 83.2,59.0 84.2,53.9 85.2,54.7 86.3,57.3 87.3,54.7 88.3,55.6 89.4,59.0 90.4,59.0 91.4,59.0 92.4,54.7 93.5,52.2 94.5,55.6 95.5,53.0 96.6,58.1 97.6,58.1 98.6,58.1 99.6,57.3 100.7,48.7 101.7,51.3 102.7,50.5 103.8,56.4 104.8,59.0 105.8,59.0 106.8,58.1 107.9,57.3 108.9,58.1 109.9,52.2 111.0,56.4 112.0,58.1 113.0,57.3 114.0,55.6 115.1,54.7 116.1,54.7 117.1,55.6 118.1,57.3 119.2,59.0 120.2,59.0 121.2,55.6 122.3,51.3 123.3,55.6 124.3,55.6 125.3,58.1 126.4,59.0 127.4,58.1 128.4,55.6 129.5,49.6 130.5,50.5 131.5,41.0 132.5,51.3 133.6,59.0 134.6,55.6 135.6,55.6 136.7,55.6 137.7,53.9 138.7,49.6 139.7,57.3 140.8,59.0 141.8,57.3 142.8,55.6 143.9,51.3 144.9,58.1 145.9,47.9 146.9,56.4 148.0,52.2 149.0,59.0 150.0,53.0 151.1,47.9 152.1,52.2 153.1,50.5 154.1,57.3 155.2,59.0 156.2,59.0 157.2,54.7 158.3,49.6 159.3,50.5 160.3,47.0 161.3,54.7 162.4,59.0 163.4,59.0 164.4,56.4 165.5,52.2 166.5,53.0 167.5,47.9 168.5,53.0 169.6,59.0 170.6,55.6 171.6,55.6 172.7,57.3 173.7,53.9 174.7,42.8 175.7,57.3 176.8,59.0 177.8,56.4 178.8,53.9 179.9,45.3 180.9,53.9 181.9,49.6 182.9,52.2 184.0,59.0 185.0,57.3 186.0,53.0 187.0,40.2 188.1,55.6 189.1,58.1 190.1,59.0 191.2,59.0 192.2,59.0 193.2,54.7 194.2,51.3 195.3,44.5 196.3,47.9 197.3,53.0 198.4,59.0 199.4,55.6 200.4,52.2 201.4,53.9 202.5,52.2 203.5,50.5 204.5,57.3 205.6,59.0 206.6,58.1 207.6,54.7 208.6,45.3 209.7,40.2 210.7,6.0 211.7,38.5 212.8,59.0 213.8,58.1 214.8,48.7 215.8,46.2 216.9,57.3 217.9,55.6 218.9,56.4 220.0,59.0 221.0,53.9 222.0,42.8 223.0,48.7 224.1,56.4 225.1,53.0 226.1,56.4 227.2,59.0 228.2,54.7 229.2,54.7 230.2,55.6 231.3,53.9 232.3,48.7 233.3,56.4 234.4,59.0 235.4,56.4 236.4,54.7 237.4,47.0 238.5,52.2 239.5,52.2 240.5,51.3 241.6,59.0 242.6,58.1 243.6,57.3 244.6,52.2 245.7,54.7 246.7,51.3 247.7,55.6 248.8,59.0 249.8,57.3 250.8,53.0 251.8,54.7 252.9,52.2 253.9,52.2 254.9,57.3 256.0,59.0 257.0,55.6 258.0,53.0 259.0,41.9 260.1,57.3 261.1,53.0 262.1,59.0 263.1,59.0 264.2,53.9 265.2,54.7 266.2,48.7 267.3,56.4 268.3,50.5 269.3,52.2 270.3,59.0 271.4,59.0 272.4,59.0 273.4,41.9 274.5,56.4 275.5,48.7 276.5,55.6 277.5,59.0 278.6,58.1 279.6,47.0 280.6,47.0 281.7,54.7 282.7,43.6 283.7,56.4 284.7,59.0 285.8,59.0 286.8,53.0 287.8,47.9 288.9,52.2 289.9,47.9 290.9,57.3 291.9,59.0 293.0,58.1 294.0,53.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">INDIANAPOLIS HOLD ROOM<\/b><br>40 S Alabama St<br>INDIANAPOLIS, IN<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 142<\/b> (2025-10-29)&nbsp;&nbsp;<br><b>Mean:<\/b> 43/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 142<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,58.3 5.0,53.8 6.1,48.9 7.1,45.9 8.1,49.7 9.1,53.4 10.2,57.9 11.2,57.5 12.2,54.9 13.3,53.8 14.3,45.6 15.3,40.0 16.3,53.4 17.4,58.3 18.4,57.5 19.4,54.9 20.5,53.4 21.5,53.0 22.5,47.1 23.5,48.5 24.6,49.3 25.6,45.9 26.6,48.5 27.7,51.9 28.7,52.3 29.7,47.4 30.7,49.7 31.8,51.9 32.8,50.8 33.8,44.8 34.9,51.2 35.9,53.4 36.9,56.0 37.9,57.9 39.0,57.5 40.0,57.5 41.0,56.0 42.0,53.8 43.1,53.8 44.1,44.8 45.1,55.3 46.2,57.9 47.2,57.5 48.2,54.1 49.2,54.1 50.3,54.5 51.3,56.0 52.3,55.6 53.4,58.6 54.4,57.1 55.4,56.4 56.4,47.8 57.5,51.9 58.5,52.7 59.5,52.3 60.6,56.4 61.6,54.5 62.6,54.5 63.6,51.2 64.7,56.0 65.7,48.9 66.7,53.0 67.8,56.0 68.8,57.1 69.8,52.3 70.8,52.7 71.9,53.4 72.9,52.3 73.9,50.8 75.0,53.8 76.0,46.7 77.0,31.8 78.0,31.8 79.1,44.8 80.1,49.7 81.1,48.9 82.2,53.4 83.2,45.9 84.2,31.0 85.2,52.3 86.3,53.4 87.3,49.3 88.3,55.3 89.4,59.0 90.4,55.6 91.4,35.1 92.4,54.1 93.5,54.5 94.5,51.9 95.5,53.8 96.6,57.5 97.6,56.4 98.6,36.6 99.6,54.5 100.7,28.0 101.7,49.7 102.7,25.4 103.8,57.5 104.8,56.4 105.8,32.9 106.8,54.1 107.9,31.0 108.9,55.3 109.9,26.9 111.0,57.9 112.0,54.5 113.0,32.9 114.0,55.6 115.1,25.4 116.1,51.9 117.1,10.5 118.1,58.3 119.2,53.8 120.2,35.1 121.2,52.7 122.3,31.0 123.3,51.9 124.3,18.7 125.3,59.0 126.4,57.1 127.4,44.4 128.4,57.5 129.5,32.5 130.5,45.6 131.5,26.2 132.5,59.0 133.6,58.3 134.6,32.5 135.6,54.9 136.7,17.2 137.7,52.7 138.7,54.5 139.7,59.0 140.8,56.0 141.8,33.6 142.8,54.9 143.9,16.5 144.9,52.7 145.9,28.0 146.9,59.0 148.0,56.8 149.0,36.2 150.0,56.4 151.1,22.8 152.1,56.4 153.1,24.3 154.1,59.0 155.2,56.8 156.2,15.7 157.2,54.9 158.3,6.0 159.3,54.1 160.3,21.7 161.3,58.3 162.4,55.3 163.4,26.2 164.4,53.4 165.5,22.0 166.5,54.5 167.5,28.0 168.5,59.0 169.6,56.0 170.6,41.5 171.6,55.3 172.7,15.0 173.7,53.4 174.7,39.2 175.7,59.0 176.8,55.3 177.8,29.5 178.8,53.4 179.9,28.8 180.9,54.5 181.9,21.3 182.9,58.3 184.0,56.4 185.0,18.7 186.0,53.8 187.0,23.9 188.1,57.5 189.1,40.0 190.1,57.5 191.2,56.8 192.2,26.5 193.2,56.8 194.2,29.1 195.3,45.2 196.3,27.6 197.3,57.5 198.4,54.9 199.4,30.3 200.4,54.5 201.4,30.3 202.5,54.5 203.5,13.8 204.5,58.3 205.6,56.4 206.6,13.8 207.6,54.5 208.6,33.2 209.7,54.9 210.7,10.9 211.7,56.4 212.8,56.0 213.8,13.8 214.8,54.9 215.8,37.4 216.9,58.3 217.9,30.6 218.9,58.3 220.0,56.0 221.0,55.6 222.0,25.8 223.0,55.3 224.1,56.8 225.1,32.9 226.1,58.6 227.2,55.6 228.2,33.2 229.2,53.8 230.2,34.4 231.3,53.0 232.3,22.4 233.3,57.1 234.4,54.9 235.4,25.0 236.4,52.3 237.4,25.0 238.5,51.5 239.5,29.5 240.5,41.1 241.6,57.9 242.6,22.8 243.6,56.0 244.6,29.1 245.7,53.8 246.7,26.9 247.7,55.3 248.8,57.9 249.8,43.7 250.8,56.0 251.8,10.1 252.9,54.5 253.9,21.3 254.9,57.1 256.0,31.0 257.0,28.8 258.0,56.8 259.0,23.5 260.1,54.1 261.1,7.9 262.1,57.9 263.1,57.1 264.2,15.7 265.2,54.5 266.2,17.6 267.3,52.3 268.3,20.9 269.3,57.5 270.3,54.5 271.4,17.9 272.4,52.3 273.4,23.2 274.5,53.4 275.5,15.7 276.5,56.0 277.5,54.5 278.6,23.5 279.6,53.0 280.6,22.8 281.7,52.7 282.7,16.8 283.7,56.4 284.7,55.6 285.8,17.2 286.8,50.4 287.8,29.5 288.9,53.0 289.9,7.5 290.9,55.6 291.9,55.6 293.0,23.9 294.0,52.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">AZ REM OP COORD CENTER (AROCC)<\/b><br>130 N Robson<br>MESA, AZ<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 777<\/b> (2026-01-28)&nbsp;&nbsp;<br><b>Mean:<\/b> 150/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 777<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,56.3 5.0,58.9 6.1,52.4 7.1,52.2 8.1,59.0 9.1,50.7 10.2,50.0 11.2,50.7 12.2,53.3 13.3,50.8 14.3,53.9 15.3,58.5 16.3,55.0 17.4,57.1 18.4,57.3 19.4,56.4 20.5,53.1 21.5,50.2 22.5,55.6 23.5,54.4 24.6,55.0 25.6,58.9 26.6,58.8 27.7,56.4 28.7,56.3 29.7,57.2 30.7,58.7 31.8,58.5 32.8,57.8 33.8,58.4 34.9,55.0 35.9,54.2 36.9,57.4 37.9,58.5 39.0,58.9 40.0,58.9 41.0,58.9 42.0,55.2 43.1,54.6 44.1,58.0 45.1,57.7 46.2,58.5 47.2,58.2 48.2,56.3 49.2,52.7 50.3,54.7 51.3,56.1 52.3,56.4 53.4,56.3 54.4,56.0 55.4,58.5 56.4,55.1 57.5,51.6 58.5,54.8 59.5,58.0 60.6,58.2 61.6,58.5 62.6,58.5 63.6,53.0 64.7,52.9 65.7,58.3 66.7,59.0 67.8,58.9 68.8,55.7 69.8,55.0 70.8,52.3 71.9,52.4 72.9,56.2 73.9,55.8 75.0,58.2 76.0,54.7 77.0,52.7 78.0,49.6 79.1,49.0 80.1,54.9 81.1,56.3 82.2,54.9 83.2,50.5 84.2,54.6 85.2,51.1 86.3,51.4 87.3,52.2 88.3,52.1 89.4,57.8 90.4,49.0 91.4,50.2 92.4,47.9 93.5,49.0 94.5,54.6 95.5,47.7 96.6,50.0 97.6,52.6 98.6,51.8 99.6,47.7 100.7,52.8 101.7,55.6 102.7,55.9 103.8,57.2 104.8,54.4 105.8,51.4 106.8,48.7 107.9,45.9 108.9,51.7 109.9,57.7 111.0,58.7 112.0,56.8 113.0,52.7 114.0,50.3 115.1,54.8 116.1,57.5 117.1,57.4 118.1,57.1 119.2,56.8 120.2,55.3 121.2,50.1 122.3,53.8 123.3,52.3 124.3,52.9 125.3,58.0 126.4,56.7 127.4,56.5 128.4,52.0 129.5,51.6 130.5,54.8 131.5,56.8 132.5,58.3 133.6,53.7 134.6,52.2 135.6,51.4 136.7,51.6 137.7,58.0 138.7,58.9 139.7,57.9 140.8,58.8 141.8,56.7 142.8,54.5 143.9,54.3 144.9,57.2 145.9,59.0 146.9,59.0 148.0,57.6 149.0,56.7 150.0,56.4 151.1,57.0 152.1,58.7 153.1,59.0 154.1,59.0 155.2,59.0 156.2,55.7 157.2,54.0 158.3,57.0 159.3,54.3 160.3,51.7 161.3,52.0 162.4,54.2 163.4,51.4 164.4,55.8 165.5,57.6 166.5,55.7 167.5,54.2 168.5,55.2 169.6,57.6 170.6,57.6 171.6,57.6 172.7,53.9 173.7,51.4 174.7,55.0 175.7,58.5 176.8,57.5 177.8,57.3 178.8,49.4 179.9,44.1 180.9,49.6 181.9,51.0 182.9,58.0 184.0,58.7 185.0,55.0 186.0,49.5 187.0,49.4 188.1,54.9 189.1,54.9 190.1,58.3 191.2,57.8 192.2,50.0 193.2,47.6 194.2,44.3 195.3,54.8 196.3,55.2 197.3,54.8 198.4,49.4 199.4,47.2 200.4,47.1 201.4,45.6 202.5,52.7 203.5,52.5 204.5,52.7 205.6,53.4 206.6,45.2 207.6,43.9 208.6,42.2 209.7,46.8 210.7,51.0 211.7,50.4 212.8,45.1 213.8,34.6 214.8,43.8 215.8,49.9 216.9,46.9 217.9,45.2 218.9,46.9 220.0,50.5 221.0,50.5 222.0,56.8 223.0,56.7 224.1,50.7 225.1,48.7 226.1,44.0 227.2,44.0 228.2,42.6 229.2,51.1 230.2,50.8 231.3,50.5 232.3,52.2 233.3,50.5 234.4,50.5 235.4,53.1 236.4,53.5 237.4,50.0 238.5,46.0 239.5,44.9 240.5,39.3 241.6,44.2 242.6,29.3 243.6,38.3 244.6,31.8 245.7,30.4 246.7,42.1 247.7,14.9 248.8,23.1 249.8,19.6 250.8,21.4 251.8,6.0 252.9,22.8 253.9,14.5 254.9,40.0 256.0,37.6 257.0,20.8 258.0,30.6 259.0,24.0 260.1,37.2 261.1,38.3 262.1,43.9 263.1,41.2 264.2,41.3 265.2,40.4 266.2,35.4 267.3,44.1 268.3,49.4 269.3,43.5 270.3,38.7 271.4,37.8 272.4,51.2 273.4,49.1 274.5,41.7 275.5,47.7 276.5,53.0 277.5,52.1 278.6,45.8 279.6,41.7 280.6,48.6 281.7,40.7 282.7,36.4 283.7,37.2 284.7,36.1 285.8,39.2 286.8,48.8 287.8,50.9 288.9,43.4 289.9,36.8 290.9,36.4 291.9,42.4 293.0,41.9 294.0,50.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">JACKSON MS HOLD ROOM<\/b><br>202 METROPLEX BLVD<br>PEARL, MS<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 19<\/b> (2025-12-08)&nbsp;&nbsp;<br><b>Mean:<\/b> 6/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 23<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,56.7 5.0,47.5 6.1,12.9 7.1,42.9 8.1,29.0 9.1,24.4 10.2,47.5 11.2,52.1 12.2,45.2 13.3,49.8 14.3,52.1 15.3,36.0 16.3,42.9 17.4,54.4 18.4,56.7 19.4,40.6 20.5,54.4 21.5,36.0 22.5,47.5 23.5,47.5 24.6,52.1 25.6,56.7 26.6,38.3 27.7,40.6 28.7,31.3 29.7,36.0 30.7,49.8 31.8,52.1 32.8,49.8 33.8,24.4 34.9,49.8 35.9,49.8 36.9,38.3 37.9,54.4 39.0,54.4 40.0,56.7 41.0,40.6 42.0,45.2 43.1,45.2 44.1,40.6 45.1,40.6 46.2,52.1 47.2,49.8 48.2,26.7 49.2,40.6 50.3,42.9 51.3,26.7 52.3,42.9 53.4,52.1 54.4,54.4 55.4,22.1 56.4,42.9 57.5,56.7 58.5,36.0 59.5,40.6 60.6,59.0 61.6,54.4 62.6,29.0 63.6,59.0 64.7,52.1 65.7,38.3 66.7,45.2 67.8,52.1 68.8,52.1 69.8,36.0 70.8,42.9 71.9,42.9 72.9,22.1 73.9,54.4 75.0,54.4 76.0,52.1 77.0,17.5 78.0,49.8 79.1,47.5 80.1,33.7 81.1,42.9 82.2,54.4 83.2,59.0 84.2,36.0 85.2,45.2 86.3,40.6 87.3,26.7 88.3,52.1 89.4,54.4 90.4,52.1 91.4,29.0 92.4,45.2 93.5,47.5 94.5,19.8 95.5,6.0 96.6,59.0 97.6,56.7 98.6,56.7 99.6,54.4 100.7,56.7 101.7,31.3 102.7,56.7 103.8,54.4 104.8,54.4 105.8,26.7 106.8,52.1 107.9,42.9 108.9,33.7 109.9,52.1 111.0,56.7 112.0,59.0 113.0,42.9 114.0,54.4 115.1,47.5 116.1,40.6 117.1,49.8 118.1,56.7 119.2,59.0 120.2,38.3 121.2,52.1 122.3,59.0 123.3,29.0 124.3,49.8 125.3,56.7 126.4,54.4 127.4,38.3 128.4,56.7 129.5,52.1 130.5,36.0 131.5,54.4 132.5,56.7 133.6,54.4 134.6,40.6 135.6,47.5 136.7,54.4 137.7,49.8 138.7,33.7 139.7,59.0 140.8,59.0 141.8,59.0 142.8,56.7 143.9,52.1 144.9,49.8 145.9,56.7 146.9,59.0 148.0,59.0 149.0,36.0 150.0,54.4 151.1,47.5 152.1,45.2 153.1,49.8 154.1,49.8 155.2,38.3 156.2,29.0 157.2,40.6 158.3,45.2 159.3,26.7 160.3,49.8 161.3,54.4 162.4,52.1 163.4,17.5 164.4,31.3 165.5,47.5 166.5,38.3 167.5,56.7 168.5,56.7 169.6,54.4 170.6,33.7 171.6,49.8 172.7,47.5 173.7,29.0 174.7,56.7 175.7,49.8 176.8,54.4 177.8,38.3 178.8,52.1 179.9,47.5 180.9,42.9 181.9,54.4 182.9,56.7 184.0,52.1 185.0,24.4 186.0,45.2 187.0,49.8 188.1,49.8 189.1,59.0 190.1,54.4 191.2,54.4 192.2,33.7 193.2,49.8 194.2,42.9 195.3,24.4 196.3,45.2 197.3,54.4 198.4,54.4 199.4,15.2 200.4,42.9 201.4,45.2 202.5,29.0 203.5,49.8 204.5,47.5 205.6,49.8 206.6,38.3 207.6,52.1 208.6,45.2 209.7,42.9 210.7,49.8 211.7,52.1 212.8,52.1 213.8,33.7 214.8,19.8 215.8,56.7 216.9,56.7 217.9,52.1 218.9,45.2 220.0,47.5 221.0,42.9 222.0,52.1 223.0,29.0 224.1,47.5 225.1,52.1 226.1,56.7 227.2,56.7 228.2,36.0 229.2,42.9 230.2,40.6 231.3,36.0 232.3,52.1 233.3,52.1 234.4,54.4 235.4,36.0 236.4,36.0 237.4,47.5 238.5,40.6 239.5,45.2 240.5,52.1 241.6,45.2 242.6,49.8 243.6,49.8 244.6,54.4 245.7,42.9 246.7,52.1 247.7,52.1 248.8,56.7 249.8,26.7 250.8,45.2 251.8,49.8 252.9,31.3 253.9,56.7 254.9,49.8 256.0,52.1 257.0,42.9 258.0,45.2 259.0,49.8 260.1,29.0 261.1,49.8 262.1,49.8 263.1,49.8 264.2,38.3 265.2,45.2 266.2,40.6 267.3,33.7 268.3,40.6 269.3,52.1 270.3,52.1 271.4,49.8 272.4,47.5 273.4,49.8 274.5,42.9 275.5,40.6 276.5,52.1 277.5,49.8 278.6,45.2 279.6,52.1 280.6,29.0 281.7,42.9 282.7,52.1 283.7,49.8 284.7,54.4 285.8,47.5 286.8,49.8 287.8,52.1 288.9,36.0 289.9,40.6 290.9,52.1 291.9,52.1 293.0,42.9 294.0,54.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">JACKSONVILLE SUB-OFFICE<\/b><br>4121 SOUTHPOINT BLVD<br>JACKSONVILLE, FL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 61<\/b> (2026-01-14)&nbsp;&nbsp;<br><b>Mean:<\/b> 13/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 61<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,50.3 5.0,54.7 6.1,41.6 7.1,53.8 8.1,59.0 9.1,56.4 10.2,55.5 11.2,48.6 12.2,57.3 13.3,52.0 14.3,51.2 15.3,46.0 16.3,48.6 17.4,46.8 18.4,53.8 19.4,54.7 20.5,50.3 21.5,53.8 22.5,50.3 23.5,51.2 24.6,54.7 25.6,48.6 26.6,52.0 27.7,46.8 28.7,41.6 29.7,54.7 30.7,58.1 31.8,54.7 32.8,52.9 33.8,57.3 34.9,48.6 35.9,55.5 36.9,56.4 37.9,52.0 39.0,49.4 40.0,55.5 41.0,55.5 42.0,56.4 43.1,56.4 44.1,52.9 45.1,54.7 46.2,56.4 47.2,55.5 48.2,58.1 49.2,47.7 50.3,50.3 51.3,41.6 52.3,57.3 53.4,54.7 54.4,53.8 55.4,58.1 56.4,44.2 57.5,53.8 58.5,50.3 59.5,52.0 60.6,53.8 61.6,52.9 62.6,58.1 63.6,48.6 64.7,42.5 65.7,38.1 66.7,54.7 67.8,55.5 68.8,55.5 69.8,54.7 70.8,52.0 71.9,47.7 72.9,47.7 73.9,49.4 75.0,46.8 76.0,51.2 77.0,51.2 78.0,30.3 79.1,38.1 80.1,40.8 81.1,33.8 82.2,49.4 83.2,48.6 84.2,44.2 85.2,43.4 86.3,43.4 87.3,45.1 88.3,53.8 89.4,53.8 90.4,52.0 91.4,55.5 92.4,53.8 93.5,42.5 94.5,44.2 95.5,46.0 96.6,54.7 97.6,48.6 98.6,48.6 99.6,48.6 100.7,45.1 101.7,52.0 102.7,52.9 103.8,49.4 104.8,46.0 105.8,49.4 106.8,42.5 107.9,46.8 108.9,52.0 109.9,51.2 111.0,52.0 112.0,57.3 113.0,53.8 114.0,46.0 115.1,47.7 116.1,38.1 117.1,46.8 118.1,39.0 119.2,46.0 120.2,52.9 121.2,36.4 122.3,29.5 123.3,47.7 124.3,37.3 125.3,41.6 126.4,52.0 127.4,54.7 128.4,53.8 129.5,42.5 130.5,46.8 131.5,48.6 132.5,47.7 133.6,49.4 134.6,51.2 135.6,39.9 136.7,50.3 137.7,52.0 138.7,46.0 139.7,56.4 140.8,57.3 141.8,53.8 142.8,54.7 143.9,43.4 144.9,48.6 145.9,50.3 146.9,49.4 148.0,57.3 149.0,57.3 150.0,52.0 151.1,48.6 152.1,42.5 153.1,49.4 154.1,42.5 155.2,39.0 156.2,52.0 157.2,51.2 158.3,50.3 159.3,51.2 160.3,56.4 161.3,50.3 162.4,45.1 163.4,53.8 164.4,51.2 165.5,42.5 166.5,47.7 167.5,52.0 168.5,51.2 169.6,50.3 170.6,51.2 171.6,53.8 172.7,49.4 173.7,46.8 174.7,50.3 175.7,39.9 176.8,50.3 177.8,56.4 178.8,52.0 179.9,40.8 180.9,53.8 181.9,46.8 182.9,51.2 184.0,49.4 185.0,55.5 186.0,50.3 187.0,53.8 188.1,52.0 189.1,55.5 190.1,46.8 191.2,46.0 192.2,51.2 193.2,46.0 194.2,45.1 195.3,41.6 196.3,52.0 197.3,49.4 198.4,44.2 199.4,46.0 200.4,50.3 201.4,46.8 202.5,48.6 203.5,48.6 204.5,44.2 205.6,51.2 206.6,44.2 207.6,46.0 208.6,40.8 209.7,43.4 210.7,48.6 211.7,39.9 212.8,50.3 213.8,52.0 214.8,42.5 215.8,46.8 216.9,51.2 217.9,51.2 218.9,52.0 220.0,46.8 221.0,52.0 222.0,52.0 223.0,40.8 224.1,48.6 225.1,52.0 226.1,49.4 227.2,44.2 228.2,50.3 229.2,49.4 230.2,50.3 231.3,52.0 232.3,50.3 233.3,52.0 234.4,52.0 235.4,54.7 236.4,14.7 237.4,6.0 238.5,8.6 239.5,36.4 240.5,42.5 241.6,52.0 242.6,45.1 243.6,51.2 244.6,44.2 245.7,51.2 246.7,43.4 247.7,40.8 248.8,52.0 249.8,49.4 250.8,48.6 251.8,43.4 252.9,48.6 253.9,46.0 254.9,52.9 256.0,48.6 257.0,51.2 258.0,47.7 259.0,44.2 260.1,50.3 261.1,41.6 262.1,48.6 263.1,49.4 264.2,50.3 265.2,48.6 266.2,40.8 267.3,46.8 268.3,52.9 269.3,48.6 270.3,52.9 271.4,49.4 272.4,53.8 273.4,48.6 274.5,43.4 275.5,46.8 276.5,48.6 277.5,45.1 278.6,47.7 279.6,44.2 280.6,26.9 281.7,38.1 282.7,40.8 283.7,48.6 284.7,46.8 285.8,56.4 286.8,52.0 287.8,46.8 288.9,50.3 289.9,49.4 290.9,49.4 291.9,51.2 293.0,55.5 294.0,50.3\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">JACK HARWELL DETENTION CENTER<\/b><br>3101 Marlin Hwy<br>Waco, TX<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 11<\/b> (2026-02-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 11<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,54.2 23.5,54.2 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,44.5 32.8,44.5 33.8,44.5 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,49.4 49.2,49.4 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,54.2 84.2,54.2 85.2,54.2 86.3,34.9 87.3,34.9 88.3,59.0 89.4,49.4 90.4,49.4 91.4,49.4 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,54.2 100.7,54.2 101.7,54.2 102.7,54.2 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,39.7 160.3,39.7 161.3,54.2 162.4,54.2 163.4,54.2 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,54.2 176.8,54.2 177.8,54.2 178.8,54.2 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,54.2 241.6,54.2 242.6,54.2 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,54.2 253.9,54.2 254.9,54.2 256.0,54.2 257.0,54.2 258.0,6.0 259.0,6.0 260.1,49.4 261.1,54.2 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,54.2 270.3,54.2 271.4,54.2 272.4,54.2 273.4,54.2 274.5,54.2 275.5,44.5 276.5,49.4 277.5,49.4 278.6,49.4 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,54.2 284.7,54.2 285.8,54.2 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">KARNES COUNTY CIVIL DET. FACILITY<\/b><br>409 Fm 1144<br>Karnes City, TX<br><span style=\"color:#666;\">Type: Family/Youth<\/span><br><b>Peak during FY26: 2<\/b> (2025-10-11)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 4<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,6.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,32.5 140.8,32.5 141.8,32.5 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,45.8 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,45.8 237.4,45.8 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,45.8 271.4,45.8 272.4,45.8 273.4,45.8 274.5,45.8 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">KINNEY COUNTY JAIL<\/b><br>109 North Street<br>Brackettville, TX<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 2<\/b> (2026-01-02)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,32.5 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,32.5 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,32.5 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,32.5 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,32.5 133.6,32.5 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,32.5 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,32.5 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,32.5 215.8,32.5 216.9,59.0 217.9,59.0 218.9,32.5 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,6.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,32.5 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,32.5 291.9,59.0 293.0,59.0 294.0,32.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">KNOXVILLE HOLD ROOM<\/b><br>324 Prosperity Drive<br>Knoxville, TN<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 30<\/b> (2026-01-30)&nbsp;&nbsp;<br><b>Mean:<\/b> 6/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 30<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,57.2 5.0,46.6 6.1,39.6 7.1,46.6 8.1,51.9 9.1,43.1 10.2,59.0 11.2,51.9 12.2,53.7 13.3,51.9 14.3,46.6 15.3,48.4 16.3,59.0 17.4,59.0 18.4,59.0 19.4,43.1 20.5,53.7 21.5,32.5 22.5,59.0 23.5,48.4 24.6,59.0 25.6,55.5 26.6,55.5 27.7,43.1 28.7,50.2 29.7,50.2 30.7,53.7 31.8,59.0 32.8,57.2 33.8,55.5 34.9,41.3 35.9,41.3 36.9,48.4 37.9,53.7 39.0,59.0 40.0,59.0 41.0,59.0 42.0,51.9 43.1,37.8 44.1,48.4 45.1,55.5 46.2,59.0 47.2,55.5 48.2,59.0 49.2,48.4 50.3,48.4 51.3,51.9 52.3,44.9 53.4,59.0 54.4,59.0 55.4,53.7 56.4,51.9 57.5,39.6 58.5,53.7 59.5,55.5 60.6,55.5 61.6,55.5 62.6,57.2 63.6,53.7 64.7,50.2 65.7,50.2 66.7,43.1 67.8,57.2 68.8,55.5 69.8,46.6 70.8,46.6 71.9,46.6 72.9,34.3 73.9,50.2 75.0,59.0 76.0,50.2 77.0,55.5 78.0,51.9 79.1,39.6 80.1,30.7 81.1,46.6 82.2,59.0 83.2,59.0 84.2,55.5 85.2,46.6 86.3,48.4 87.3,44.9 88.3,23.7 89.4,59.0 90.4,59.0 91.4,55.5 92.4,55.5 93.5,37.8 94.5,46.6 95.5,50.2 96.6,59.0 97.6,53.7 98.6,57.2 99.6,55.5 100.7,50.2 101.7,46.6 102.7,48.4 103.8,59.0 104.8,59.0 105.8,51.9 106.8,36.0 107.9,48.4 108.9,29.0 109.9,39.6 111.0,59.0 112.0,59.0 113.0,46.6 114.0,46.6 115.1,34.3 116.1,39.6 117.1,51.9 118.1,59.0 119.2,53.7 120.2,55.5 121.2,29.0 122.3,27.2 123.3,39.6 124.3,48.4 125.3,57.2 126.4,51.9 127.4,57.2 128.4,53.7 129.5,46.6 130.5,57.2 131.5,57.2 132.5,55.5 133.6,55.5 134.6,57.2 135.6,48.4 136.7,43.1 137.7,48.4 138.7,48.4 139.7,59.0 140.8,57.2 141.8,59.0 142.8,37.8 143.9,50.2 144.9,46.6 145.9,51.9 146.9,59.0 148.0,51.9 149.0,53.7 150.0,34.3 151.1,43.1 152.1,43.1 153.1,25.4 154.1,51.9 155.2,53.7 156.2,59.0 157.2,48.4 158.3,44.9 159.3,20.1 160.3,39.6 161.3,48.4 162.4,57.2 163.4,44.9 164.4,55.5 165.5,34.3 166.5,37.8 167.5,50.2 168.5,59.0 169.6,51.9 170.6,43.1 171.6,48.4 172.7,48.4 173.7,46.6 174.7,48.4 175.7,39.6 176.8,53.7 177.8,39.6 178.8,46.6 179.9,29.0 180.9,36.0 181.9,43.1 182.9,55.5 184.0,59.0 185.0,57.2 186.0,48.4 187.0,50.2 188.1,59.0 189.1,59.0 190.1,50.2 191.2,51.9 192.2,50.2 193.2,46.6 194.2,16.6 195.3,48.4 196.3,48.4 197.3,51.9 198.4,55.5 199.4,53.7 200.4,43.1 201.4,51.9 202.5,32.5 203.5,43.1 204.5,59.0 205.6,57.2 206.6,43.1 207.6,37.8 208.6,43.1 209.7,51.9 210.7,29.0 211.7,41.3 212.8,55.5 213.8,46.6 214.8,50.2 215.8,48.4 216.9,59.0 217.9,48.4 218.9,53.7 220.0,59.0 221.0,53.7 222.0,55.5 223.0,55.5 224.1,59.0 225.1,53.7 226.1,55.5 227.2,59.0 228.2,43.1 229.2,43.1 230.2,37.8 231.3,34.3 232.3,39.6 233.3,51.9 234.4,59.0 235.4,44.9 236.4,36.0 237.4,44.9 238.5,41.3 239.5,39.6 240.5,44.9 241.6,50.2 242.6,53.7 243.6,48.4 244.6,37.8 245.7,46.6 246.7,46.6 247.7,46.6 248.8,57.2 249.8,55.5 250.8,55.5 251.8,55.5 252.9,59.0 253.9,6.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,34.3 260.1,36.0 261.1,43.1 262.1,53.7 263.1,55.5 264.2,53.7 265.2,36.0 266.2,50.2 267.3,25.4 268.3,21.9 269.3,50.2 270.3,50.2 271.4,46.6 272.4,50.2 273.4,41.3 274.5,43.1 275.5,48.4 276.5,59.0 277.5,55.5 278.6,57.2 279.6,46.6 280.6,44.9 281.7,59.0 282.7,36.0 283.7,57.2 284.7,59.0 285.8,53.7 286.8,48.4 287.8,43.1 288.9,43.1 289.9,51.9 290.9,59.0 291.9,53.7 293.0,51.9 294.0,46.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">KROME/MIAMI HUB<\/b><br>CONCOURSE E SATELLITMIAMI INTERNATIONAL<br>MIAMI, FL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 17<\/b> (2025-12-15)&nbsp;&nbsp;<br><b>Mean:<\/b> 7/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 17<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,46.5 5.0,46.5 6.1,37.2 7.1,46.5 8.1,40.3 9.1,27.8 10.2,49.6 11.2,37.2 12.2,49.6 13.3,37.2 14.3,43.4 15.3,43.4 16.3,43.4 17.4,49.6 18.4,52.8 19.4,52.8 20.5,18.5 21.5,46.5 22.5,59.0 23.5,30.9 24.6,46.5 25.6,49.6 26.6,46.5 27.7,46.5 28.7,46.5 29.7,46.5 30.7,34.1 31.8,49.6 32.8,46.5 33.8,43.4 34.9,52.8 35.9,46.5 36.9,43.4 37.9,55.9 39.0,46.5 40.0,37.2 41.0,46.5 42.0,40.3 43.1,49.6 44.1,46.5 45.1,30.9 46.2,43.4 47.2,27.8 48.2,30.9 49.2,37.2 50.3,30.9 51.3,46.5 52.3,37.2 53.4,46.5 54.4,46.5 55.4,43.4 56.4,37.2 57.5,30.9 58.5,34.1 59.5,34.1 60.6,55.9 61.6,27.8 62.6,46.5 63.6,43.4 64.7,46.5 65.7,37.2 66.7,49.6 67.8,52.8 68.8,40.3 69.8,49.6 70.8,34.1 71.9,37.2 72.9,37.2 73.9,40.3 75.0,52.8 76.0,27.8 77.0,34.1 78.0,37.2 79.1,37.2 80.1,34.1 81.1,37.2 82.2,52.8 83.2,30.9 84.2,40.3 85.2,43.4 86.3,18.5 87.3,40.3 88.3,40.3 89.4,59.0 90.4,52.8 91.4,34.1 92.4,30.9 93.5,30.9 94.5,46.5 95.5,21.6 96.6,34.1 97.6,55.9 98.6,37.2 99.6,46.5 100.7,15.4 101.7,15.4 102.7,24.7 103.8,24.7 104.8,59.0 105.8,43.4 106.8,30.9 107.9,24.7 108.9,24.7 109.9,15.4 111.0,43.4 112.0,46.5 113.0,40.3 114.0,12.2 115.1,18.5 116.1,46.5 117.1,27.8 118.1,49.6 119.2,46.5 120.2,40.3 121.2,40.3 122.3,40.3 123.3,46.5 124.3,15.4 125.3,46.5 126.4,43.4 127.4,46.5 128.4,27.8 129.5,37.2 130.5,46.5 131.5,43.4 132.5,43.4 133.6,59.0 134.6,24.7 135.6,40.3 136.7,37.2 137.7,34.1 138.7,24.7 139.7,43.4 140.8,37.2 141.8,43.4 142.8,37.2 143.9,43.4 144.9,49.6 145.9,15.4 146.9,52.8 148.0,37.2 149.0,30.9 150.0,49.6 151.1,24.7 152.1,40.3 153.1,46.5 154.1,37.2 155.2,49.6 156.2,43.4 157.2,40.3 158.3,40.3 159.3,40.3 160.3,30.9 161.3,55.9 162.4,55.9 163.4,55.9 164.4,37.2 165.5,15.4 166.5,43.4 167.5,18.5 168.5,52.8 169.6,52.8 170.6,37.2 171.6,46.5 172.7,21.6 173.7,34.1 174.7,18.5 175.7,55.9 176.8,40.3 177.8,30.9 178.8,27.8 179.9,18.5 180.9,34.1 181.9,15.4 182.9,40.3 184.0,49.6 185.0,18.5 186.0,30.9 187.0,18.5 188.1,52.8 189.1,30.9 190.1,49.6 191.2,59.0 192.2,21.6 193.2,43.4 194.2,30.9 195.3,37.2 196.3,30.9 197.3,40.3 198.4,40.3 199.4,46.5 200.4,49.6 201.4,46.5 202.5,24.7 203.5,27.8 204.5,43.4 205.6,40.3 206.6,6.0 207.6,52.8 208.6,21.6 209.7,30.9 210.7,27.8 211.7,37.2 212.8,55.9 213.8,9.1 214.8,27.8 215.8,46.5 216.9,49.6 217.9,43.4 218.9,37.2 220.0,46.5 221.0,34.1 222.0,30.9 223.0,55.9 224.1,59.0 225.1,30.9 226.1,49.6 227.2,37.2 228.2,43.4 229.2,46.5 230.2,30.9 231.3,40.3 232.3,30.9 233.3,52.8 234.4,46.5 235.4,15.4 236.4,52.8 237.4,34.1 238.5,43.4 239.5,43.4 240.5,46.5 241.6,55.9 242.6,21.6 243.6,34.1 244.6,43.4 245.7,52.8 246.7,21.6 247.7,52.8 248.8,43.4 249.8,30.9 250.8,43.4 251.8,46.5 252.9,46.5 253.9,6.0 254.9,43.4 256.0,21.6 257.0,30.9 258.0,46.5 259.0,24.7 260.1,37.2 261.1,40.3 262.1,49.6 263.1,55.9 264.2,43.4 265.2,21.6 266.2,34.1 267.3,43.4 268.3,34.1 269.3,43.4 270.3,30.9 271.4,43.4 272.4,40.3 273.4,27.8 274.5,40.3 275.5,21.6 276.5,40.3 277.5,9.1 278.6,27.8 279.6,59.0 280.6,37.2 281.7,40.3 282.7,15.4 283.7,30.9 284.7,27.8 285.8,34.1 286.8,30.9 287.8,43.4 288.9,46.5 289.9,15.4 290.9,21.6 291.9,37.2 293.0,43.4 294.0,40.3\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">KROME HOLD ROOM<\/b><br>18201 SW 12TH ST<br>MIAMI, FL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 94<\/b> (2025-11-11)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 94<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,47.7 5.0,59.0 6.1,59.0 7.1,59.0 8.1,50.0 9.1,33.1 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,52.8 16.3,57.9 17.4,58.4 18.4,58.4 19.4,58.4 20.5,57.3 21.5,56.2 22.5,56.7 23.5,57.3 24.6,53.4 25.6,59.0 26.6,59.0 27.7,58.4 28.7,58.4 29.7,57.9 30.7,58.4 31.8,59.0 32.8,59.0 33.8,59.0 34.9,34.8 35.9,57.3 36.9,52.8 37.9,48.9 39.0,53.9 40.0,58.4 41.0,58.4 42.0,58.4 43.1,59.0 44.1,59.0 45.1,59.0 46.2,57.9 47.2,57.9 48.2,45.5 49.2,59.0 50.3,53.9 51.3,59.0 52.3,59.0 53.4,59.0 54.4,58.4 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,56.7 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,58.4 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,58.4 73.9,58.4 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,58.4 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,57.9 94.5,59.0 95.5,58.4 96.6,58.4 97.6,57.3 98.6,56.7 99.6,58.4 100.7,58.4 101.7,59.0 102.7,57.9 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,58.4 119.2,58.4 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,58.4 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,58.4 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,58.4 161.3,58.4 162.4,59.0 163.4,59.0 164.4,59.0 165.5,56.2 166.5,59.0 167.5,59.0 168.5,58.4 169.6,59.0 170.6,59.0 171.6,6.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,57.9 185.0,59.0 186.0,59.0 187.0,55.1 188.1,59.0 189.1,59.0 190.1,59.0 191.2,58.4 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,50.0 199.4,50.0 200.4,59.0 201.4,59.0 202.5,58.4 203.5,51.1 204.5,58.4 205.6,58.4 206.6,59.0 207.6,59.0 208.6,58.4 209.7,58.4 210.7,58.4 211.7,58.4 212.8,58.4 213.8,58.4 214.8,57.9 215.8,56.7 216.9,58.4 217.9,58.4 218.9,57.9 220.0,58.4 221.0,58.4 222.0,58.4 223.0,57.9 224.1,58.4 225.1,44.9 226.1,58.4 227.2,58.4 228.2,58.4 229.2,57.9 230.2,54.5 231.3,58.4 232.3,57.3 233.3,58.4 234.4,58.4 235.4,57.9 236.4,56.7 237.4,57.9 238.5,57.9 239.5,57.3 240.5,57.9 241.6,57.9 242.6,57.9 243.6,56.7 244.6,56.7 245.7,55.6 246.7,55.6 247.7,57.3 248.8,57.9 249.8,58.4 250.8,58.4 251.8,58.4 252.9,57.9 253.9,57.9 254.9,57.9 256.0,58.4 257.0,58.4 258.0,58.4 259.0,58.4 260.1,59.0 261.1,57.3 262.1,58.4 263.1,58.4 264.2,59.0 265.2,58.4 266.2,57.9 267.3,58.4 268.3,57.3 269.3,57.3 270.3,59.0 271.4,59.0 272.4,59.0 273.4,58.4 274.5,58.4 275.5,58.4 276.5,58.4 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,56.2 282.7,55.6 283.7,59.0 284.7,59.0 285.8,58.4 286.8,57.9 287.8,58.4 288.9,59.0 289.9,55.6 290.9,57.9 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LACKAWANA CNTY JAIL, PA<\/b><br>1371 North Washington Avenue<br>Scranton, PA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 2<\/b> (2025-10-30)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,32.5 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,32.5 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,32.5 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,6.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,32.5 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LAS CRUCES HOLD ROOM<\/b><br>1140 Commerce Drive, Suite B<br>Las Cruces, NM<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 2<\/b> (2025-11-18)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 7<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,43.9 8.1,51.4 9.1,51.4 10.2,36.3 11.2,59.0 12.2,43.9 13.3,59.0 14.3,59.0 15.3,51.4 16.3,59.0 17.4,59.0 18.4,59.0 19.4,51.4 20.5,51.4 21.5,51.4 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,51.4 27.7,59.0 28.7,43.9 29.7,59.0 30.7,51.4 31.8,51.4 32.8,59.0 33.8,43.9 34.9,59.0 35.9,59.0 36.9,51.4 37.9,59.0 39.0,59.0 40.0,59.0 41.0,51.4 42.0,59.0 43.1,59.0 44.1,51.4 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,51.4 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,51.4 63.6,59.0 64.7,59.0 65.7,51.4 66.7,51.4 67.8,59.0 68.8,59.0 69.8,59.0 70.8,6.0 71.9,59.0 72.9,51.4 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,51.4 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,51.4 92.4,51.4 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,51.4 103.8,59.0 104.8,59.0 105.8,51.4 106.8,51.4 107.9,51.4 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,51.4 121.2,59.0 122.3,59.0 123.3,59.0 124.3,36.3 125.3,51.4 126.4,51.4 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,51.4 132.5,51.4 133.6,51.4 134.6,51.4 135.6,51.4 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,51.4 141.8,59.0 142.8,51.4 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,51.4 150.0,59.0 151.1,51.4 152.1,59.0 153.1,59.0 154.1,51.4 155.2,51.4 156.2,59.0 157.2,59.0 158.3,51.4 159.3,51.4 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,51.4 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,43.9 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,51.4 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,43.9 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,51.4 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,51.4 228.2,59.0 229.2,51.4 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,51.4 237.4,51.4 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,51.4 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,51.4 279.6,59.0 280.6,59.0 281.7,59.0 282.7,51.4 283.7,59.0 284.7,59.0 285.8,51.4 286.8,51.4 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,51.4 294.0,51.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LUBBOCK HOLD ROOM<\/b><br>1205 TEXAS AVE, SUITE 605<br>LUBBOCK, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 17<\/b> (2025-10-10)&nbsp;&nbsp;<br><b>Mean:<\/b> 4/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 22<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,37.3 6.1,56.6 7.1,47.0 8.1,51.8 9.1,44.5 10.2,59.0 11.2,59.0 12.2,42.1 13.3,51.8 14.3,30.1 15.3,51.8 16.3,37.3 17.4,59.0 18.4,59.0 19.4,32.5 20.5,39.7 21.5,54.2 22.5,51.8 23.5,47.0 24.6,59.0 25.6,59.0 26.6,42.1 27.7,37.3 28.7,47.0 29.7,39.7 30.7,59.0 31.8,59.0 32.8,59.0 33.8,54.2 34.9,25.3 35.9,44.5 36.9,49.4 37.9,59.0 39.0,59.0 40.0,59.0 41.0,47.0 42.0,56.6 43.1,51.8 44.1,56.6 45.1,49.4 46.2,56.6 47.2,59.0 48.2,42.1 49.2,34.9 50.3,59.0 51.3,49.4 52.3,44.5 53.4,59.0 54.4,59.0 55.4,49.4 56.4,49.4 57.5,54.2 58.5,51.8 59.5,49.4 60.6,59.0 61.6,30.1 62.6,51.8 63.6,47.0 64.7,56.6 65.7,37.3 66.7,54.2 67.8,59.0 68.8,59.0 69.8,39.7 70.8,54.2 71.9,42.1 72.9,59.0 73.9,42.1 75.0,59.0 76.0,59.0 77.0,49.4 78.0,49.4 79.1,56.6 80.1,56.6 81.1,59.0 82.2,59.0 83.2,59.0 84.2,54.2 85.2,49.4 86.3,47.0 87.3,30.1 88.3,56.6 89.4,59.0 90.4,59.0 91.4,49.4 92.4,59.0 93.5,37.3 94.5,49.4 95.5,44.5 96.6,59.0 97.6,59.0 98.6,34.9 99.6,44.5 100.7,56.6 101.7,32.5 102.7,37.3 103.8,59.0 104.8,59.0 105.8,30.1 106.8,59.0 107.9,18.0 108.9,49.4 109.9,30.1 111.0,37.3 112.0,59.0 113.0,39.7 114.0,49.4 115.1,49.4 116.1,47.0 117.1,37.3 118.1,56.6 119.2,59.0 120.2,37.3 121.2,44.5 122.3,59.0 123.3,37.3 124.3,56.6 125.3,59.0 126.4,59.0 127.4,6.0 128.4,47.0 129.5,42.1 130.5,49.4 131.5,37.3 132.5,59.0 133.6,59.0 134.6,47.0 135.6,49.4 136.7,51.8 137.7,49.4 138.7,18.0 139.7,59.0 140.8,59.0 141.8,47.0 142.8,54.2 143.9,51.8 144.9,42.1 145.9,49.4 146.9,59.0 148.0,59.0 149.0,34.9 150.0,54.2 151.1,39.7 152.1,59.0 153.1,32.5 154.1,59.0 155.2,59.0 156.2,18.0 157.2,54.2 158.3,59.0 159.3,27.7 160.3,30.1 161.3,59.0 162.4,59.0 163.4,30.1 164.4,47.0 165.5,30.1 166.5,59.0 167.5,47.0 168.5,59.0 169.6,59.0 170.6,44.5 171.6,59.0 172.7,49.4 173.7,39.7 174.7,32.5 175.7,59.0 176.8,59.0 177.8,47.0 178.8,51.8 179.9,44.5 180.9,47.0 181.9,47.0 182.9,59.0 184.0,59.0 185.0,37.3 186.0,51.8 187.0,54.2 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,42.1 193.2,51.8 194.2,34.9 195.3,39.7 196.3,49.4 197.3,59.0 198.4,59.0 199.4,30.1 200.4,47.0 201.4,51.8 202.5,56.6 203.5,34.9 204.5,59.0 205.6,59.0 206.6,54.2 207.6,49.4 208.6,51.8 209.7,59.0 210.7,30.1 211.7,59.0 212.8,59.0 213.8,47.0 214.8,51.8 215.8,49.4 216.9,59.0 217.9,39.7 218.9,51.8 220.0,51.8 221.0,37.3 222.0,49.4 223.0,49.4 224.1,59.0 225.1,37.3 226.1,59.0 227.2,59.0 228.2,49.4 229.2,49.4 230.2,47.0 231.3,47.0 232.3,54.2 233.3,59.0 234.4,59.0 235.4,39.7 236.4,47.0 237.4,49.4 238.5,59.0 239.5,37.3 240.5,59.0 241.6,59.0 242.6,44.5 243.6,56.6 244.6,51.8 245.7,32.5 246.7,42.1 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,54.2 252.9,42.1 253.9,49.4 254.9,59.0 256.0,59.0 257.0,37.3 258.0,54.2 259.0,44.5 260.1,54.2 261.1,44.5 262.1,59.0 263.1,59.0 264.2,54.2 265.2,51.8 266.2,54.2 267.3,34.9 268.3,47.0 269.3,59.0 270.3,59.0 271.4,30.1 272.4,44.5 273.4,42.1 274.5,56.6 275.5,54.2 276.5,59.0 277.5,59.0 278.6,49.4 279.6,34.9 280.6,54.2 281.7,54.2 282.7,56.6 283.7,59.0 284.7,59.0 285.8,39.7 286.8,44.5 287.8,49.4 288.9,47.0 289.9,56.6 290.9,59.0 291.9,59.0 293.0,37.3 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LEVY COUNTY JAIL<\/b><br>9150 NE 80th Ave<br>Bronson, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 2<\/b> (2026-01-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,32.5 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,6.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LOS CUST CASE<\/b><br>300 North Los Angeles St., Room 7631<br>Los Angeles, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 208<\/b> (2025-12-18)&nbsp;&nbsp;<br><b>Mean:<\/b> 89/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 453<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,52.6 5.0,49.4 6.1,47.5 7.1,38.6 8.1,38.2 9.1,36.7 10.2,44.4 11.2,58.5 12.2,58.6 13.3,58.6 14.3,58.4 15.3,53.2 16.3,40.3 17.4,47.2 18.4,58.2 19.4,46.7 20.5,32.0 21.5,28.0 22.5,20.7 23.5,13.1 24.6,15.8 25.6,27.9 26.6,25.0 27.7,13.5 28.7,14.4 29.7,10.4 30.7,15.2 31.8,28.5 32.8,26.1 33.8,29.2 34.9,25.8 35.9,27.1 36.9,22.1 37.9,28.9 39.0,34.2 40.0,39.5 41.0,35.4 42.0,27.3 43.1,21.3 44.1,27.2 45.1,6.0 46.2,17.6 47.2,26.1 48.2,45.3 49.2,45.9 50.3,46.7 51.3,48.5 52.3,47.1 53.4,52.4 54.4,53.3 55.4,52.7 56.4,49.3 57.5,51.9 58.5,46.9 59.5,50.5 60.6,59.0 61.6,52.4 62.6,51.6 63.6,48.7 64.7,47.2 65.7,47.5 66.7,59.0 67.8,59.0 68.8,48.9 69.8,47.8 70.8,45.5 71.9,40.5 72.9,43.9 73.9,46.7 75.0,59.0 76.0,58.9 77.0,46.4 78.0,42.3 79.1,41.3 80.1,37.6 81.1,35.8 82.2,38.9 83.2,36.1 84.2,36.8 85.2,32.6 86.3,28.2 87.3,28.8 88.3,31.5 89.4,37.7 90.4,41.8 91.4,39.6 92.4,39.9 93.5,42.0 94.5,46.2 95.5,46.4 96.6,54.3 97.6,57.1 98.6,56.0 99.6,51.7 100.7,49.4 101.7,49.2 102.7,48.7 103.8,50.6 104.8,53.4 105.8,51.2 106.8,50.0 107.9,49.1 108.9,51.7 109.9,50.3 111.0,52.7 112.0,54.9 113.0,54.9 114.0,51.0 115.1,49.3 116.1,48.5 117.1,52.6 118.1,56.9 119.2,57.6 120.2,53.5 121.2,49.4 122.3,50.0 123.3,52.7 124.3,50.8 125.3,50.9 126.4,56.0 127.4,51.4 128.4,50.8 129.5,48.7 130.5,47.9 131.5,50.9 132.5,53.4 133.6,56.8 134.6,52.9 135.6,49.1 136.7,48.2 137.7,46.7 138.7,45.3 139.7,50.5 140.8,53.4 141.8,52.8 142.8,48.5 143.9,47.3 144.9,45.7 145.9,45.1 146.9,53.5 148.0,51.7 149.0,48.8 150.0,47.3 151.1,46.2 152.1,46.4 153.1,46.2 154.1,50.3 155.2,51.5 156.2,46.5 157.2,44.7 158.3,42.9 159.3,43.8 160.3,47.4 161.3,51.6 162.4,52.3 163.4,50.3 164.4,50.0 165.5,50.5 166.5,47.9 167.5,48.7 168.5,50.8 169.6,53.3 170.6,49.5 171.6,48.8 172.7,46.7 173.7,42.4 174.7,39.2 175.7,43.8 176.8,48.8 177.8,46.7 178.8,42.4 179.9,44.3 180.9,36.8 181.9,43.1 182.9,46.6 184.0,55.1 185.0,53.4 186.0,52.4 187.0,52.4 188.1,56.0 189.1,55.7 190.1,57.4 191.2,57.4 192.2,55.8 193.2,50.6 194.2,44.7 195.3,43.9 196.3,45.5 197.3,52.6 198.4,52.1 199.4,45.8 200.4,43.8 201.4,42.9 202.5,39.1 203.5,44.6 204.5,46.7 205.6,50.6 206.6,46.4 207.6,43.0 208.6,35.6 209.7,34.7 210.7,37.2 211.7,42.0 212.8,45.3 213.8,42.3 214.8,39.2 215.8,43.0 216.9,49.6 217.9,52.4 218.9,48.7 220.0,50.1 221.0,45.5 222.0,45.0 223.0,48.9 224.1,56.7 225.1,56.1 226.1,56.4 227.2,57.9 228.2,57.1 229.2,52.6 230.2,49.9 231.3,49.1 232.3,47.9 233.3,50.2 234.4,53.2 235.4,50.5 236.4,48.8 237.4,47.5 238.5,47.7 239.5,46.4 240.5,52.9 241.6,54.0 242.6,53.4 243.6,48.1 244.6,44.3 245.7,45.1 246.7,46.7 247.7,47.8 248.8,52.2 249.8,48.6 250.8,44.7 251.8,45.2 252.9,43.6 253.9,46.4 254.9,50.9 256.0,54.3 257.0,54.9 258.0,52.3 259.0,55.3 260.1,53.6 261.1,56.0 262.1,57.8 263.1,58.4 264.2,55.6 265.2,53.7 266.2,54.2 267.3,55.0 268.3,55.6 269.3,56.8 270.3,58.6 271.4,58.2 272.4,54.7 273.4,55.1 274.5,54.1 275.5,53.4 276.5,56.8 277.5,58.3 278.6,57.0 279.6,53.5 280.6,54.4 281.7,53.7 282.7,52.4 283.7,54.3 284.7,57.4 285.8,56.9 286.8,53.3 287.8,54.6 288.9,55.0 289.9,55.3 290.9,56.7 291.9,58.6 293.0,56.2 294.0,53.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LOUDOUN COUNTY<\/b><br>42035 Loudoun Center Place<br>Leesburg, VA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 4<\/b> (2025-11-05)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 4<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,45.8 89.4,45.8 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,45.8 95.5,32.5 96.6,32.5 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,19.2 103.8,59.0 104.8,45.8 105.8,45.8 106.8,45.8 107.9,6.0 108.9,45.8 109.9,45.8 111.0,45.8 112.0,45.8 113.0,32.5 114.0,19.2 115.1,45.8 116.1,45.8 117.1,32.5 118.1,59.0 119.2,59.0 120.2,59.0 121.2,45.8 122.3,45.8 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,45.8 128.4,45.8 129.5,45.8 130.5,59.0 131.5,32.5 132.5,32.5 133.6,59.0 134.6,59.0 135.6,45.8 136.7,59.0 137.7,45.8 138.7,45.8 139.7,45.8 140.8,45.8 141.8,45.8 142.8,45.8 143.9,45.8 144.9,19.2 145.9,59.0 146.9,59.0 148.0,59.0 149.0,45.8 150.0,19.2 151.1,32.5 152.1,45.8 153.1,45.8 154.1,59.0 155.2,59.0 156.2,59.0 157.2,45.8 158.3,45.8 159.3,59.0 160.3,59.0 161.3,45.8 162.4,45.8 163.4,45.8 164.4,45.8 165.5,6.0 166.5,6.0 167.5,45.8 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,45.8 174.7,45.8 175.7,59.0 176.8,19.2 177.8,6.0 178.8,45.8 179.9,32.5 180.9,45.8 181.9,19.2 182.9,45.8 184.0,59.0 185.0,59.0 186.0,32.5 187.0,32.5 188.1,45.8 189.1,45.8 190.1,32.5 191.2,32.5 192.2,59.0 193.2,59.0 194.2,59.0 195.3,32.5 196.3,32.5 197.3,32.5 198.4,45.8 199.4,45.8 200.4,45.8 201.4,45.8 202.5,45.8 203.5,45.8 204.5,45.8 205.6,32.5 206.6,59.0 207.6,59.0 208.6,59.0 209.7,32.5 210.7,32.5 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,32.5 218.9,45.8 220.0,32.5 221.0,59.0 222.0,45.8 223.0,45.8 224.1,59.0 225.1,45.8 226.1,59.0 227.2,45.8 228.2,45.8 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,32.5 238.5,19.2 239.5,45.8 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,45.8 252.9,59.0 253.9,59.0 254.9,59.0 256.0,45.8 257.0,45.8 258.0,45.8 259.0,32.5 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,45.8 280.6,59.0 281.7,59.0 282.7,45.8 283.7,59.0 284.7,59.0 285.8,59.0 286.8,32.5 287.8,45.8 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,45.8 294.0,45.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LOUISVILLE HOLD ROOM<\/b><br>400 S 6TH STREET<br>LOUISVILLE, KY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 6<\/b> (2025-11-04)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 20<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,56.3 6.1,51.0 7.1,6.0 8.1,40.5 9.1,59.0 10.2,59.0 11.2,59.0 12.2,53.7 13.3,45.8 14.3,59.0 15.3,45.8 16.3,56.3 17.4,59.0 18.4,59.0 19.4,51.0 20.5,56.3 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,56.3 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,56.3 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,56.3 42.0,45.8 43.1,59.0 44.1,56.3 45.1,59.0 46.2,59.0 47.2,59.0 48.2,56.3 49.2,59.0 50.3,59.0 51.3,56.3 52.3,59.0 53.4,59.0 54.4,59.0 55.4,56.3 56.4,59.0 57.5,56.3 58.5,53.7 59.5,56.3 60.6,59.0 61.6,59.0 62.6,59.0 63.6,56.3 64.7,53.7 65.7,59.0 66.7,56.3 67.8,59.0 68.8,59.0 69.8,56.3 70.8,56.3 71.9,59.0 72.9,53.7 73.9,56.3 75.0,59.0 76.0,59.0 77.0,56.3 78.0,59.0 79.1,59.0 80.1,56.3 81.1,59.0 82.2,59.0 83.2,59.0 84.2,53.7 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,53.7 93.5,59.0 94.5,53.7 95.5,59.0 96.6,59.0 97.6,53.7 98.6,53.7 99.6,56.3 100.7,56.3 101.7,56.3 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,56.3 108.9,53.7 109.9,59.0 111.0,59.0 112.0,59.0 113.0,53.7 114.0,59.0 115.1,53.7 116.1,59.0 117.1,48.4 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,53.7 125.3,59.0 126.4,59.0 127.4,53.7 128.4,53.7 129.5,48.4 130.5,51.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,56.3 135.6,48.4 136.7,56.3 137.7,51.0 138.7,51.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,56.3 143.9,59.0 144.9,56.3 145.9,59.0 146.9,59.0 148.0,56.3 149.0,59.0 150.0,59.0 151.1,59.0 152.1,56.3 153.1,51.0 154.1,59.0 155.2,53.7 156.2,48.4 157.2,53.7 158.3,48.4 159.3,56.3 160.3,56.3 161.3,59.0 162.4,59.0 163.4,56.3 164.4,43.1 165.5,53.7 166.5,48.4 167.5,53.7 168.5,59.0 169.6,56.3 170.6,59.0 171.6,51.0 172.7,56.3 173.7,59.0 174.7,56.3 175.7,59.0 176.8,51.0 177.8,48.4 178.8,53.7 179.9,51.0 180.9,56.3 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,51.0 187.0,53.7 188.1,59.0 189.1,59.0 190.1,59.0 191.2,56.3 192.2,53.7 193.2,51.0 194.2,53.7 195.3,56.3 196.3,56.3 197.3,59.0 198.4,59.0 199.4,59.0 200.4,56.3 201.4,56.3 202.5,53.7 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,51.0 208.6,53.7 209.7,53.7 210.7,51.0 211.7,56.3 212.8,59.0 213.8,56.3 214.8,51.0 215.8,53.7 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,48.4 222.0,51.0 223.0,56.3 224.1,59.0 225.1,53.7 226.1,59.0 227.2,53.7 228.2,48.4 229.2,51.0 230.2,53.7 231.3,48.4 232.3,56.3 233.3,59.0 234.4,51.0 235.4,59.0 236.4,48.4 237.4,53.7 238.5,59.0 239.5,56.3 240.5,56.3 241.6,48.4 242.6,53.7 243.6,48.4 244.6,45.8 245.7,51.0 246.7,51.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,53.7 251.8,59.0 252.9,53.7 253.9,53.7 254.9,59.0 256.0,59.0 257.0,56.3 258.0,51.0 259.0,51.0 260.1,56.3 261.1,59.0 262.1,59.0 263.1,45.8 264.2,56.3 265.2,37.8 266.2,53.7 267.3,48.4 268.3,53.7 269.3,59.0 270.3,53.7 271.4,56.3 272.4,35.2 273.4,45.8 274.5,45.8 275.5,53.7 276.5,51.0 277.5,53.7 278.6,51.0 279.6,53.7 280.6,48.4 281.7,48.4 282.7,53.7 283.7,56.3 284.7,51.0 285.8,48.4 286.8,43.1 287.8,27.2 288.9,40.5 289.9,53.7 290.9,53.7 291.9,56.3 293.0,53.7 294.0,43.1\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LITTLE ROCK HOLD ROOM<\/b><br>4501 E Roosevelt Road<br>Little Rock, AR<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 16<\/b> (2025-11-18)&nbsp;&nbsp;<br><b>Mean:<\/b> 5/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 18<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,44.3 5.0,47.2 6.1,11.9 7.1,38.4 8.1,38.4 9.1,6.0 10.2,47.2 11.2,59.0 12.2,29.6 13.3,56.1 14.3,47.2 15.3,41.3 16.3,47.2 17.4,53.1 18.4,59.0 19.4,23.7 20.5,44.3 21.5,53.1 22.5,38.4 23.5,44.3 24.6,59.0 25.6,59.0 26.6,41.3 27.7,41.3 28.7,44.3 29.7,59.0 30.7,47.2 31.8,50.2 32.8,59.0 33.8,44.3 34.9,29.6 35.9,32.5 36.9,50.2 37.9,59.0 39.0,47.2 40.0,59.0 41.0,26.6 42.0,35.4 43.1,56.1 44.1,35.4 45.1,32.5 46.2,53.1 47.2,59.0 48.2,47.2 49.2,53.1 50.3,26.6 51.3,29.6 52.3,23.7 53.4,50.2 54.4,59.0 55.4,32.5 56.4,11.9 57.5,29.6 58.5,47.2 59.5,47.2 60.6,59.0 61.6,59.0 62.6,47.2 63.6,47.2 64.7,38.4 65.7,38.4 66.7,38.4 67.8,59.0 68.8,59.0 69.8,47.2 70.8,50.2 71.9,44.3 72.9,35.4 73.9,6.0 75.0,50.2 76.0,59.0 77.0,44.3 78.0,44.3 79.1,47.2 80.1,41.3 81.1,38.4 82.2,59.0 83.2,50.2 84.2,38.4 85.2,38.4 86.3,35.4 87.3,23.7 88.3,38.4 89.4,47.2 90.4,59.0 91.4,41.3 92.4,23.7 93.5,29.6 94.5,44.3 95.5,35.4 96.6,59.0 97.6,53.1 98.6,53.1 99.6,50.2 100.7,32.5 101.7,26.6 102.7,26.6 103.8,53.1 104.8,56.1 105.8,44.3 106.8,44.3 107.9,32.5 108.9,44.3 109.9,23.7 111.0,53.1 112.0,53.1 113.0,53.1 114.0,26.6 115.1,26.6 116.1,17.8 117.1,35.4 118.1,41.3 119.2,56.1 120.2,47.2 121.2,17.8 122.3,35.4 123.3,41.3 124.3,35.4 125.3,53.1 126.4,53.1 127.4,44.3 128.4,47.2 129.5,41.3 130.5,47.2 131.5,29.6 132.5,50.2 133.6,56.1 134.6,50.2 135.6,53.1 136.7,35.4 137.7,50.2 138.7,44.3 139.7,53.1 140.8,53.1 141.8,56.1 142.8,41.3 143.9,35.4 144.9,44.3 145.9,26.6 146.9,47.2 148.0,44.3 149.0,38.4 150.0,29.6 151.1,23.7 152.1,44.3 153.1,32.5 154.1,44.3 155.2,29.6 156.2,41.3 157.2,41.3 158.3,17.8 159.3,35.4 160.3,20.7 161.3,44.3 162.4,50.2 163.4,35.4 164.4,29.6 165.5,20.7 166.5,38.4 167.5,26.6 168.5,50.2 169.6,50.2 170.6,50.2 171.6,44.3 172.7,29.6 173.7,17.8 174.7,41.3 175.7,50.2 176.8,44.3 177.8,35.4 178.8,11.9 179.9,47.2 180.9,44.3 181.9,44.3 182.9,47.2 184.0,47.2 185.0,50.2 186.0,26.6 187.0,41.3 188.1,53.1 189.1,44.3 190.1,56.1 191.2,53.1 192.2,41.3 193.2,35.4 194.2,35.4 195.3,44.3 196.3,41.3 197.3,44.3 198.4,47.2 199.4,50.2 200.4,29.6 201.4,44.3 202.5,47.2 203.5,41.3 204.5,47.2 205.6,47.2 206.6,47.2 207.6,29.6 208.6,41.3 209.7,47.2 210.7,41.3 211.7,38.4 212.8,59.0 213.8,56.1 214.8,38.4 215.8,29.6 216.9,56.1 217.9,29.6 218.9,53.1 220.0,53.1 221.0,53.1 222.0,38.4 223.0,53.1 224.1,38.4 225.1,47.2 226.1,50.2 227.2,53.1 228.2,38.4 229.2,50.2 230.2,50.2 231.3,44.3 232.3,41.3 233.3,41.3 234.4,32.5 235.4,41.3 236.4,50.2 237.4,32.5 238.5,20.7 239.5,26.6 240.5,50.2 241.6,53.1 242.6,53.1 243.6,41.3 244.6,29.6 245.7,38.4 246.7,44.3 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,50.2 252.9,56.1 253.9,56.1 254.9,59.0 256.0,56.1 257.0,56.1 258.0,38.4 259.0,50.2 260.1,35.4 261.1,23.7 262.1,50.2 263.1,47.2 264.2,44.3 265.2,35.4 266.2,44.3 267.3,20.7 268.3,41.3 269.3,53.1 270.3,53.1 271.4,50.2 272.4,32.5 273.4,26.6 274.5,26.6 275.5,44.3 276.5,35.4 277.5,50.2 278.6,38.4 279.6,35.4 280.6,23.7 281.7,50.2 282.7,47.2 283.7,56.1 284.7,56.1 285.8,59.0 286.8,38.4 287.8,35.4 288.9,26.6 289.9,32.5 290.9,44.3 291.9,53.1 293.0,32.5 294.0,41.3\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LAREDO DETENTION CENTER HOLD ROOM<\/b><br>4702 EAST SAUNDERS STREET<br>LAREDO, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 134<\/b> (2025-12-07)&nbsp;&nbsp;<br><b>Mean:<\/b> 27/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 134<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,58.6 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,58.6 23.5,59.0 24.6,58.2 25.6,59.0 26.6,59.0 27.7,58.2 28.7,58.2 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,50.7 67.8,51.5 68.8,49.1 69.8,54.6 70.8,50.3 71.9,50.7 72.9,54.3 73.9,55.4 75.0,53.1 76.0,49.1 77.0,50.7 78.0,55.4 79.1,52.7 80.1,54.3 81.1,55.8 82.2,49.9 83.2,42.0 84.2,49.9 85.2,51.1 86.3,54.3 87.3,54.3 88.3,54.6 89.4,51.1 90.4,45.9 91.4,54.3 92.4,55.4 93.5,51.5 94.5,52.7 95.5,55.8 96.6,48.3 97.6,41.6 98.6,45.2 99.6,49.9 100.7,54.6 101.7,55.4 102.7,50.7 103.8,45.9 104.8,53.5 105.8,50.7 106.8,48.7 107.9,49.1 108.9,54.6 109.9,54.3 111.0,51.1 112.0,38.8 113.0,51.9 114.0,55.0 115.1,49.5 116.1,53.5 117.1,53.5 118.1,50.7 119.2,53.1 120.2,48.7 121.2,50.7 122.3,51.9 123.3,56.6 124.3,46.7 125.3,51.9 126.4,45.2 127.4,50.7 128.4,48.7 129.5,54.3 130.5,51.9 131.5,52.7 132.5,48.3 133.6,52.3 134.6,53.5 135.6,52.7 136.7,53.1 137.7,56.2 138.7,55.0 139.7,48.3 140.8,40.0 141.8,45.9 142.8,49.5 143.9,53.5 144.9,54.6 145.9,52.3 146.9,49.9 148.0,53.5 149.0,51.5 150.0,49.5 151.1,46.3 152.1,49.1 153.1,57.0 154.1,51.9 155.2,27.8 156.2,51.1 157.2,51.1 158.3,47.1 159.3,53.1 160.3,53.1 161.3,40.0 162.4,41.6 163.4,49.1 164.4,49.9 165.5,52.3 166.5,54.3 167.5,55.0 168.5,48.7 169.6,38.4 170.6,46.7 171.6,40.4 172.7,50.3 173.7,51.1 174.7,53.5 175.7,44.4 176.8,32.5 177.8,46.7 178.8,39.2 179.9,49.9 180.9,54.3 181.9,55.4 182.9,42.8 184.0,39.6 185.0,42.0 186.0,46.7 187.0,55.8 188.1,45.6 189.1,47.9 190.1,31.3 191.2,17.9 192.2,51.9 193.2,43.6 194.2,51.1 195.3,42.8 196.3,50.3 197.3,24.6 198.4,6.0 199.4,39.6 200.4,46.7 201.4,56.2 202.5,57.0 203.5,51.9 204.5,36.5 205.6,23.0 206.6,45.2 207.6,29.7 208.6,47.5 209.7,40.4 210.7,50.3 211.7,36.9 212.8,28.1 213.8,46.3 214.8,36.9 215.8,55.8 216.9,53.9 217.9,52.3 218.9,42.8 220.0,32.5 221.0,48.7 222.0,38.4 223.0,55.4 224.1,52.7 225.1,56.2 226.1,53.1 227.2,53.1 228.2,53.5 229.2,49.9 230.2,54.3 231.3,51.9 232.3,55.4 233.3,54.3 234.4,50.3 235.4,53.9 236.4,51.9 237.4,56.6 238.5,55.0 239.5,56.2 240.5,53.1 241.6,52.3 242.6,52.7 243.6,56.6 244.6,54.6 245.7,54.6 246.7,56.6 247.7,55.0 248.8,56.2 249.8,56.2 250.8,57.0 251.8,51.1 252.9,53.1 253.9,47.5 254.9,53.9 256.0,43.2 257.0,55.8 258.0,51.5 259.0,55.8 260.1,50.7 261.1,55.4 262.1,51.9 263.1,42.4 264.2,55.0 265.2,52.3 266.2,51.1 267.3,53.1 268.3,55.4 269.3,55.0 270.3,53.5 271.4,52.7 272.4,44.8 273.4,52.7 274.5,55.4 275.5,56.6 276.5,52.7 277.5,46.3 278.6,54.6 279.6,53.5 280.6,54.3 281.7,55.4 282.7,55.4 283.7,51.9 284.7,40.8 285.8,49.1 286.8,50.3 287.8,54.6 288.9,53.5 289.9,55.8 290.9,54.3 291.9,48.3 293.0,50.3 294.0,49.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LUBBOCK COUNTY JAIL<\/b><br>811 Main Street<br>Lubbock, TX<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 18<\/b> (2025-10-27)&nbsp;&nbsp;<br><b>Mean:<\/b> 4/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 18<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,29.6 5.0,29.6 6.1,47.2 7.1,38.4 8.1,50.2 9.1,47.2 10.2,50.2 11.2,44.3 12.2,44.3 13.3,29.6 14.3,29.6 15.3,41.3 16.3,26.6 17.4,41.3 18.4,35.4 19.4,29.6 20.5,47.2 21.5,56.1 22.5,56.1 23.5,53.1 24.6,35.4 25.6,35.4 26.6,14.8 27.7,38.4 28.7,53.1 29.7,53.1 30.7,56.1 31.8,53.1 32.8,50.2 33.8,47.2 34.9,53.1 35.9,44.3 36.9,47.2 37.9,50.2 39.0,47.2 40.0,44.3 41.0,44.3 42.0,59.0 43.1,56.1 44.1,53.1 45.1,53.1 46.2,47.2 47.2,35.4 48.2,23.7 49.2,41.3 50.3,47.2 51.3,38.4 52.3,47.2 53.4,53.1 54.4,50.2 55.4,44.3 56.4,53.1 57.5,59.0 58.5,47.2 59.5,23.7 60.6,32.5 61.6,29.6 62.6,56.1 63.6,59.0 64.7,59.0 65.7,50.2 66.7,50.2 67.8,53.1 68.8,50.2 69.8,50.2 70.8,47.2 71.9,41.3 72.9,50.2 73.9,50.2 75.0,56.1 76.0,53.1 77.0,50.2 78.0,53.1 79.1,53.1 80.1,56.1 81.1,59.0 82.2,59.0 83.2,56.1 84.2,56.1 85.2,47.2 86.3,41.3 87.3,53.1 88.3,59.0 89.4,53.1 90.4,47.2 91.4,47.2 92.4,44.3 93.5,44.3 94.5,50.2 95.5,50.2 96.6,47.2 97.6,38.4 98.6,38.4 99.6,56.1 100.7,35.4 101.7,20.7 102.7,26.6 103.8,44.3 104.8,17.8 105.8,17.8 106.8,53.1 107.9,44.3 108.9,50.2 109.9,35.4 111.0,29.6 112.0,38.4 113.0,38.4 114.0,59.0 115.1,59.0 116.1,50.2 117.1,50.2 118.1,47.2 119.2,44.3 120.2,38.4 121.2,53.1 122.3,47.2 123.3,47.2 124.3,41.3 125.3,29.6 126.4,11.9 127.4,6.0 128.4,41.3 129.5,41.3 130.5,53.1 131.5,56.1 132.5,50.2 133.6,50.2 134.6,50.2 135.6,56.1 136.7,53.1 137.7,35.4 138.7,32.5 139.7,50.2 140.8,47.2 141.8,47.2 142.8,53.1 143.9,41.3 144.9,41.3 145.9,56.1 146.9,53.1 148.0,41.3 149.0,41.3 150.0,59.0 151.1,59.0 152.1,26.6 153.1,23.7 154.1,50.2 155.2,8.9 156.2,6.0 157.2,56.1 158.3,38.4 159.3,32.5 160.3,50.2 161.3,56.1 162.4,32.5 163.4,29.6 164.4,29.6 165.5,32.5 166.5,56.1 167.5,56.1 168.5,44.3 169.6,38.4 170.6,38.4 171.6,56.1 172.7,56.1 173.7,29.6 174.7,23.7 175.7,47.2 176.8,41.3 177.8,41.3 178.8,44.3 179.9,50.2 180.9,50.2 181.9,47.2 182.9,47.2 184.0,44.3 185.0,44.3 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,50.2 191.2,47.2 192.2,38.4 193.2,35.4 194.2,26.6 195.3,50.2 196.3,59.0 197.3,44.3 198.4,29.6 199.4,29.6 200.4,59.0 201.4,59.0 202.5,50.2 203.5,50.2 204.5,59.0 205.6,56.1 206.6,56.1 207.6,59.0 208.6,56.1 209.7,44.3 210.7,44.3 211.7,56.1 212.8,47.2 213.8,41.3 214.8,35.4 215.8,38.4 216.9,44.3 217.9,38.4 218.9,44.3 220.0,44.3 221.0,44.3 222.0,50.2 223.0,53.1 224.1,56.1 225.1,56.1 226.1,59.0 227.2,50.2 228.2,44.3 229.2,41.3 230.2,53.1 231.3,59.0 232.3,56.1 233.3,41.3 234.4,35.4 235.4,35.4 236.4,47.2 237.4,47.2 238.5,44.3 239.5,44.3 240.5,56.1 241.6,41.3 242.6,41.3 243.6,56.1 244.6,38.4 245.7,26.6 246.7,41.3 247.7,53.1 248.8,53.1 249.8,53.1 250.8,53.1 251.8,32.5 252.9,38.4 253.9,50.2 254.9,41.3 256.0,41.3 257.0,41.3 258.0,56.1 259.0,53.1 260.1,56.1 261.1,59.0 262.1,56.1 263.1,56.1 264.2,56.1 265.2,53.1 266.2,23.7 267.3,11.9 268.3,38.4 269.3,47.2 270.3,41.3 271.4,32.5 272.4,50.2 273.4,59.0 274.5,53.1 275.5,53.1 276.5,56.1 277.5,53.1 278.6,50.2 279.6,56.1 280.6,59.0 281.7,59.0 282.7,56.1 283.7,41.3 284.7,41.3 285.8,38.4 286.8,56.1 287.8,50.2 288.9,50.2 289.9,53.1 290.9,56.1 291.9,38.4 293.0,38.4 294.0,56.1\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LAS VEGAS HOLD ROOM<\/b><br>501 S. Las Vegas Boulevard, Suite 100<br>Las Vegas, NV<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 16<\/b> (2025-12-11)&nbsp;&nbsp;<br><b>Mean:<\/b> 5/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 17<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,37.2 5.0,46.5 6.1,37.2 7.1,37.2 8.1,37.2 9.1,49.6 10.2,43.4 11.2,43.4 12.2,43.4 13.3,27.8 14.3,37.2 15.3,30.9 16.3,43.4 17.4,46.5 18.4,40.3 19.4,49.6 20.5,52.8 21.5,40.3 22.5,30.9 23.5,52.8 24.6,34.1 25.6,55.9 26.6,52.8 27.7,37.2 28.7,52.8 29.7,9.1 30.7,40.3 31.8,43.4 32.8,40.3 33.8,40.3 34.9,21.6 35.9,24.7 36.9,18.5 37.9,46.5 39.0,52.8 40.0,49.6 41.0,43.4 42.0,24.7 43.1,18.5 44.1,43.4 45.1,46.5 46.2,52.8 47.2,43.4 48.2,43.4 49.2,27.8 50.3,30.9 51.3,30.9 52.3,40.3 53.4,52.8 54.4,52.8 55.4,37.2 56.4,46.5 57.5,34.1 58.5,40.3 59.5,59.0 60.6,55.9 61.6,55.9 62.6,30.9 63.6,49.6 64.7,43.4 65.7,49.6 66.7,49.6 67.8,49.6 68.8,52.8 69.8,46.5 70.8,46.5 71.9,52.8 72.9,49.6 73.9,52.8 75.0,49.6 76.0,49.6 77.0,40.3 78.0,34.1 79.1,24.7 80.1,40.3 81.1,46.5 82.2,43.4 83.2,46.5 84.2,37.2 85.2,21.6 86.3,30.9 87.3,27.8 88.3,40.3 89.4,37.2 90.4,40.3 91.4,43.4 92.4,37.2 93.5,49.6 94.5,40.3 95.5,43.4 96.6,52.8 97.6,40.3 98.6,46.5 99.6,30.9 100.7,18.5 101.7,18.5 102.7,34.1 103.8,49.6 104.8,43.4 105.8,34.1 106.8,6.0 107.9,15.4 108.9,49.6 109.9,43.4 111.0,43.4 112.0,49.6 113.0,30.9 114.0,21.6 115.1,34.1 116.1,43.4 117.1,55.9 118.1,46.5 119.2,37.2 120.2,46.5 121.2,46.5 122.3,34.1 123.3,40.3 124.3,43.4 125.3,49.6 126.4,55.9 127.4,21.6 128.4,27.8 129.5,46.5 130.5,37.2 131.5,43.4 132.5,40.3 133.6,49.6 134.6,55.9 135.6,27.8 136.7,30.9 137.7,37.2 138.7,52.8 139.7,55.9 140.8,55.9 141.8,46.5 142.8,27.8 143.9,40.3 144.9,43.4 145.9,46.5 146.9,52.8 148.0,55.9 149.0,34.1 150.0,43.4 151.1,34.1 152.1,46.5 153.1,43.4 154.1,52.8 155.2,46.5 156.2,52.8 157.2,27.8 158.3,37.2 159.3,43.4 160.3,40.3 161.3,59.0 162.4,43.4 163.4,55.9 164.4,37.2 165.5,27.8 166.5,40.3 167.5,49.6 168.5,46.5 169.6,37.2 170.6,43.4 171.6,52.8 172.7,49.6 173.7,37.2 174.7,43.4 175.7,46.5 176.8,52.8 177.8,46.5 178.8,49.6 179.9,43.4 180.9,30.9 181.9,52.8 182.9,49.6 184.0,59.0 185.0,49.6 186.0,49.6 187.0,30.9 188.1,52.8 189.1,49.6 190.1,52.8 191.2,49.6 192.2,46.5 193.2,43.4 194.2,40.3 195.3,49.6 196.3,59.0 197.3,59.0 198.4,49.6 199.4,40.3 200.4,30.9 201.4,27.8 202.5,9.1 203.5,52.8 204.5,49.6 205.6,52.8 206.6,34.1 207.6,34.1 208.6,24.7 209.7,34.1 210.7,52.8 211.7,49.6 212.8,40.3 213.8,52.8 214.8,40.3 215.8,30.9 216.9,52.8 217.9,49.6 218.9,40.3 220.0,55.9 221.0,43.4 222.0,40.3 223.0,49.6 224.1,37.2 225.1,46.5 226.1,46.5 227.2,30.9 228.2,43.4 229.2,40.3 230.2,46.5 231.3,49.6 232.3,52.8 233.3,46.5 234.4,43.4 235.4,43.4 236.4,24.7 237.4,34.1 238.5,24.7 239.5,40.3 240.5,43.4 241.6,43.4 242.6,43.4 243.6,34.1 244.6,46.5 245.7,37.2 246.7,43.4 247.7,40.3 248.8,46.5 249.8,43.4 250.8,34.1 251.8,43.4 252.9,43.4 253.9,46.5 254.9,52.8 256.0,37.2 257.0,49.6 258.0,34.1 259.0,55.9 260.1,43.4 261.1,43.4 262.1,55.9 263.1,46.5 264.2,46.5 265.2,43.4 266.2,34.1 267.3,46.5 268.3,46.5 269.3,52.8 270.3,49.6 271.4,27.8 272.4,37.2 273.4,43.4 274.5,52.8 275.5,37.2 276.5,49.6 277.5,34.1 278.6,49.6 279.6,37.2 280.6,34.1 281.7,21.6 282.7,34.1 283.7,43.4 284.7,40.3 285.8,37.2 286.8,18.5 287.8,18.5 288.9,40.3 289.9,49.6 290.9,49.6 291.9,49.6 293.0,27.8 294.0,21.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MANATEE COUNTY DETENTION-ANNEX<\/b><br>11490 Harlee Rd.<br>Palmetto, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 3<\/b> (2025-10-02)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 7<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,51.4 5.0,51.4 6.1,51.4 7.1,43.9 8.1,36.3 9.1,36.3 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,51.4 16.3,51.4 17.4,36.3 18.4,36.3 19.4,59.0 20.5,59.0 21.5,59.0 22.5,43.9 23.5,43.9 24.6,51.4 25.6,13.6 26.6,59.0 27.7,51.4 28.7,51.4 29.7,51.4 30.7,43.9 31.8,43.9 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,51.4 43.1,51.4 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,43.9 65.7,43.9 66.7,59.0 67.8,59.0 68.8,43.9 69.8,36.3 70.8,51.4 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,51.4 78.0,13.6 79.1,6.0 80.1,6.0 81.1,51.4 82.2,43.9 83.2,51.4 84.2,59.0 85.2,59.0 86.3,36.3 87.3,43.9 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,43.9 94.5,43.9 95.5,51.4 96.6,59.0 97.6,59.0 98.6,59.0 99.6,51.4 100.7,51.4 101.7,43.9 102.7,51.4 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,43.9 117.1,43.9 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,36.3 127.4,36.3 128.4,51.4 129.5,51.4 130.5,36.3 131.5,43.9 132.5,59.0 133.6,51.4 134.6,51.4 135.6,43.9 136.7,36.3 137.7,43.9 138.7,51.4 139.7,36.3 140.8,36.3 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,43.9 152.1,43.9 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,51.4 158.3,43.9 159.3,36.3 160.3,36.3 161.3,51.4 162.4,51.4 163.4,51.4 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,51.4 274.5,51.4 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MANCHESTER HOLDROOM<\/b><br>811 CANAL STREET<br>MANCHESTER, NH<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 6<\/b> (2025-12-10)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 6<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,41.3 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,50.2 15.3,59.0 16.3,59.0 17.4,59.0 18.4,50.2 19.4,59.0 20.5,59.0 21.5,41.3 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,23.7 29.7,50.2 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,23.7 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,50.2 43.1,41.3 44.1,41.3 45.1,50.2 46.2,59.0 47.2,50.2 48.2,59.0 49.2,59.0 50.3,6.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,50.2 56.4,59.0 57.5,59.0 58.5,59.0 59.5,50.2 60.6,59.0 61.6,59.0 62.6,59.0 63.6,50.2 64.7,50.2 65.7,50.2 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,50.2 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,41.3 79.1,59.0 80.1,41.3 81.1,50.2 82.2,59.0 83.2,59.0 84.2,59.0 85.2,32.5 86.3,59.0 87.3,50.2 88.3,50.2 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,50.2 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,41.3 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,50.2 116.1,59.0 117.1,50.2 118.1,59.0 119.2,59.0 120.2,59.0 121.2,41.3 122.3,59.0 123.3,59.0 124.3,50.2 125.3,59.0 126.4,59.0 127.4,50.2 128.4,50.2 129.5,50.2 130.5,50.2 131.5,59.0 132.5,59.0 133.6,59.0 134.6,32.5 135.6,41.3 136.7,50.2 137.7,50.2 138.7,41.3 139.7,50.2 140.8,50.2 141.8,50.2 142.8,50.2 143.9,41.3 144.9,50.2 145.9,41.3 146.9,41.3 148.0,41.3 149.0,41.3 150.0,14.8 151.1,41.3 152.1,41.3 153.1,50.2 154.1,50.2 155.2,50.2 156.2,41.3 157.2,41.3 158.3,41.3 159.3,41.3 160.3,50.2 161.3,41.3 162.4,50.2 163.4,50.2 164.4,23.7 165.5,23.7 166.5,23.7 167.5,50.2 168.5,41.3 169.6,50.2 170.6,50.2 171.6,50.2 172.7,50.2 173.7,32.5 174.7,41.3 175.7,32.5 176.8,50.2 177.8,50.2 178.8,32.5 179.9,50.2 180.9,41.3 181.9,41.3 182.9,50.2 184.0,50.2 185.0,41.3 186.0,14.8 187.0,41.3 188.1,41.3 189.1,32.5 190.1,41.3 191.2,41.3 192.2,41.3 193.2,41.3 194.2,23.7 195.3,41.3 196.3,41.3 197.3,50.2 198.4,50.2 199.4,50.2 200.4,32.5 201.4,6.0 202.5,50.2 203.5,32.5 204.5,50.2 205.6,41.3 206.6,50.2 207.6,50.2 208.6,32.5 209.7,50.2 210.7,50.2 211.7,32.5 212.8,32.5 213.8,32.5 214.8,14.8 215.8,32.5 216.9,50.2 217.9,50.2 218.9,50.2 220.0,50.2 221.0,50.2 222.0,50.2 223.0,41.3 224.1,50.2 225.1,41.3 226.1,50.2 227.2,50.2 228.2,50.2 229.2,23.7 230.2,23.7 231.3,32.5 232.3,32.5 233.3,41.3 234.4,41.3 235.4,41.3 236.4,50.2 237.4,41.3 238.5,6.0 239.5,41.3 240.5,41.3 241.6,23.7 242.6,41.3 243.6,23.7 244.6,32.5 245.7,41.3 246.7,41.3 247.7,50.2 248.8,50.2 249.8,50.2 250.8,50.2 251.8,50.2 252.9,32.5 253.9,41.3 254.9,50.2 256.0,50.2 257.0,50.2 258.0,32.5 259.0,41.3 260.1,41.3 261.1,50.2 262.1,50.2 263.1,50.2 264.2,41.3 265.2,23.7 266.2,50.2 267.3,50.2 268.3,59.0 269.3,59.0 270.3,59.0 271.4,50.2 272.4,50.2 273.4,41.3 274.5,50.2 275.5,50.2 276.5,59.0 277.5,50.2 278.6,59.0 279.6,50.2 280.6,50.2 281.7,41.3 282.7,50.2 283.7,59.0 284.7,59.0 285.8,32.5 286.8,41.3 287.8,14.8 288.9,50.2 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,50.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MARION COUNTY JAIL<\/b><br>3290 NW 10th St<br>Ocala, FL<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 2<\/b> (2026-01-21)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 9<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,41.3 6.1,41.3 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,53.1 12.2,53.1 13.3,59.0 14.3,59.0 15.3,53.1 16.3,47.2 17.4,47.2 18.4,47.2 19.4,53.1 20.5,47.2 21.5,41.3 22.5,53.1 23.5,41.3 24.6,47.2 25.6,41.3 26.6,47.2 27.7,47.2 28.7,59.0 29.7,53.1 30.7,47.2 31.8,47.2 32.8,41.3 33.8,41.3 34.9,41.3 35.9,53.1 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,17.8 44.1,6.0 45.1,6.0 46.2,41.3 47.2,53.1 48.2,53.1 49.2,53.1 50.3,53.1 51.3,47.2 52.3,47.2 53.4,53.1 54.4,47.2 55.4,53.1 56.4,47.2 57.5,47.2 58.5,47.2 59.5,59.0 60.6,53.1 61.6,47.2 62.6,41.3 63.6,53.1 64.7,47.2 65.7,47.2 66.7,47.2 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,53.1 72.9,47.2 73.9,53.1 75.0,59.0 76.0,53.1 77.0,47.2 78.0,53.1 79.1,41.3 80.1,35.4 81.1,53.1 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,53.1 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,53.1 178.8,53.1 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,53.1 187.0,59.0 188.1,59.0 189.1,53.1 190.1,53.1 191.2,53.1 192.2,53.1 193.2,53.1 194.2,53.1 195.3,53.1 196.3,53.1 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,53.1 230.2,53.1 231.3,53.1 232.3,59.0 233.3,59.0 234.4,59.0 235.4,53.1 236.4,53.1 237.4,53.1 238.5,53.1 239.5,53.1 240.5,53.1 241.6,53.1 242.6,53.1 243.6,53.1 244.6,47.2 245.7,47.2 246.7,47.2 247.7,47.2 248.8,53.1 249.8,53.1 250.8,53.1 251.8,53.1 252.9,53.1 253.9,53.1 254.9,53.1 256.0,53.1 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MAVERICK COUNTY JAIL<\/b><br>1051 Balboa Jones Boulevard<br>Eagle Pass, TX<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 3<\/b> (2025-10-12)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 3<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,41.3 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,41.3 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,41.3 137.7,41.3 138.7,59.0 139.7,59.0 140.8,6.0 141.8,59.0 142.8,59.0 143.9,41.3 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,41.3 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,41.3 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,41.3 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,41.3 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,41.3 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,41.3 235.4,41.3 236.4,41.3 237.4,59.0 238.5,59.0 239.5,41.3 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,41.3 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,41.3 277.5,59.0 278.6,59.0 279.6,59.0 280.6,41.3 281.7,41.3 282.7,59.0 283.7,41.3 284.7,59.0 285.8,59.0 286.8,41.3 287.8,41.3 288.9,59.0 289.9,59.0 290.9,41.3 291.9,41.3 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MCALLEN HOLD ROOM<\/b><br>2202 Cornerstone Blvd<br>Edinburg, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 47<\/b> (2026-01-17)&nbsp;&nbsp;<br><b>Mean:<\/b> 14/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 62<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,55.6 5.0,51.3 6.1,56.4 7.1,54.7 8.1,53.9 9.1,53.0 10.2,54.7 11.2,58.1 12.2,58.1 13.3,53.9 14.3,53.0 15.3,52.2 16.3,50.5 17.4,58.1 18.4,58.1 19.4,54.7 20.5,57.3 21.5,58.1 22.5,55.6 23.5,58.1 24.6,57.3 25.6,58.1 26.6,57.3 27.7,58.1 28.7,56.4 29.7,58.1 30.7,58.1 31.8,57.3 32.8,57.3 33.8,58.1 34.9,58.1 35.9,57.3 36.9,58.1 37.9,58.1 39.0,58.1 40.0,58.1 41.0,56.4 42.0,58.1 43.1,57.3 44.1,44.5 45.1,56.4 46.2,58.1 47.2,57.3 48.2,57.3 49.2,57.3 50.3,53.9 51.3,56.4 52.3,56.4 53.4,57.3 54.4,57.3 55.4,56.4 56.4,57.3 57.5,57.3 58.5,57.3 59.5,58.1 60.6,58.1 61.6,58.1 62.6,56.4 63.6,57.3 64.7,55.6 65.7,55.6 66.7,56.4 67.8,58.1 68.8,58.1 69.8,58.1 70.8,56.4 71.9,58.1 72.9,57.3 73.9,58.1 75.0,57.3 76.0,53.0 77.0,54.7 78.0,58.1 79.1,56.4 80.1,55.6 81.1,57.3 82.2,57.3 83.2,57.3 84.2,57.3 85.2,56.4 86.3,58.1 87.3,58.1 88.3,54.7 89.4,58.1 90.4,57.3 91.4,53.0 92.4,55.6 93.5,57.3 94.5,55.6 95.5,55.6 96.6,57.3 97.6,58.1 98.6,56.4 99.6,58.1 100.7,58.1 101.7,56.4 102.7,58.1 103.8,57.3 104.8,57.3 105.8,58.1 106.8,56.4 107.9,55.6 108.9,45.3 109.9,50.5 111.0,57.3 112.0,57.3 113.0,55.6 114.0,47.9 115.1,45.3 116.1,49.6 117.1,51.3 118.1,52.2 119.2,56.4 120.2,53.0 121.2,52.2 122.3,48.7 123.3,53.0 124.3,48.7 125.3,56.4 126.4,56.4 127.4,54.7 128.4,48.7 129.5,44.5 130.5,54.7 131.5,20.5 132.5,43.6 133.6,55.6 134.6,54.7 135.6,42.8 136.7,46.2 137.7,55.6 138.7,47.0 139.7,56.4 140.8,47.9 141.8,53.9 142.8,51.3 143.9,53.0 144.9,46.2 145.9,41.0 146.9,45.3 148.0,58.1 149.0,53.0 150.0,50.5 151.1,45.3 152.1,52.2 153.1,46.2 154.1,49.6 155.2,57.3 156.2,51.3 157.2,46.2 158.3,50.5 159.3,48.7 160.3,45.3 161.3,42.8 162.4,56.4 163.4,54.7 164.4,48.7 165.5,45.3 166.5,42.8 167.5,46.2 168.5,50.5 169.6,57.3 170.6,53.0 171.6,52.2 172.7,55.6 173.7,54.7 174.7,45.3 175.7,44.5 176.8,57.3 177.8,52.2 178.8,49.6 179.9,49.6 180.9,40.2 181.9,35.1 182.9,50.5 184.0,36.8 185.0,53.0 186.0,48.7 187.0,52.2 188.1,56.4 189.1,57.3 190.1,56.4 191.2,53.9 192.2,54.7 193.2,44.5 194.2,50.5 195.3,49.6 196.3,40.2 197.3,39.3 198.4,50.5 199.4,53.9 200.4,43.6 201.4,42.8 202.5,47.9 203.5,47.9 204.5,49.6 205.6,41.0 206.6,53.9 207.6,51.3 208.6,51.3 209.7,46.2 210.7,41.9 211.7,45.3 212.8,54.7 213.8,53.0 214.8,53.9 215.8,54.7 216.9,57.3 217.9,55.6 218.9,57.3 220.0,56.4 221.0,54.7 222.0,47.0 223.0,48.7 224.1,55.6 225.1,51.3 226.1,43.6 227.2,51.3 228.2,53.0 229.2,45.3 230.2,34.2 231.3,28.2 232.3,47.0 233.3,47.0 234.4,36.8 235.4,35.1 236.4,32.5 237.4,23.1 238.5,38.5 239.5,42.8 240.5,18.8 241.6,27.4 242.6,52.2 243.6,41.0 244.6,44.5 245.7,47.9 246.7,41.9 247.7,24.8 248.8,25.7 249.8,52.2 250.8,39.3 251.8,40.2 252.9,40.2 253.9,33.4 254.9,25.7 256.0,29.1 257.0,47.9 258.0,41.9 259.0,50.5 260.1,46.2 261.1,47.0 262.1,30.8 263.1,33.4 264.2,33.4 265.2,46.2 266.2,44.5 267.3,39.3 268.3,29.1 269.3,12.8 270.3,6.0 271.4,49.6 272.4,42.8 273.4,41.0 274.5,40.2 275.5,35.1 276.5,20.5 277.5,47.0 278.6,45.3 279.6,43.6 280.6,39.3 281.7,35.1 282.7,41.9 283.7,29.1 284.7,35.9 285.8,53.9 286.8,44.5 287.8,43.6 288.9,47.9 289.9,40.2 290.9,34.2 291.9,35.1 293.0,35.1 294.0,35.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MCLENNAN COUNTY JAIL<\/b><br>501 Washington Avenue<br>Waco, TX<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 8<\/b> (2025-10-29)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 8<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,52.4 16.3,52.4 17.4,59.0 18.4,59.0 19.4,52.4 20.5,52.4 21.5,52.4 22.5,52.4 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,52.4 28.7,52.4 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,45.8 56.4,45.8 57.5,59.0 58.5,52.4 59.5,52.4 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,45.8 65.7,45.8 66.7,52.4 67.8,52.4 68.8,52.4 69.8,52.4 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,52.4 83.2,52.4 84.2,52.4 85.2,52.4 86.3,52.4 87.3,52.4 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,52.4 107.9,52.4 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,45.8 128.4,45.8 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,52.4 145.9,52.4 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,32.5 152.1,32.5 153.1,59.0 154.1,59.0 155.2,59.0 156.2,45.8 157.2,25.9 158.3,6.0 159.3,25.9 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,52.4 166.5,52.4 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,39.1 172.7,39.1 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,25.9 179.9,19.2 180.9,39.1 181.9,52.4 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,52.4 193.2,52.4 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,45.8 207.6,45.8 208.6,39.1 209.7,39.1 210.7,52.4 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,52.4 223.0,52.4 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,52.4 229.2,39.1 230.2,45.8 231.3,39.1 232.3,39.1 233.3,45.8 234.4,45.8 235.4,25.9 236.4,39.1 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,52.4 242.6,52.4 243.6,45.8 244.6,45.8 245.7,45.8 246.7,45.8 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,25.9 253.9,25.9 254.9,59.0 256.0,59.0 257.0,59.0 258.0,45.8 259.0,25.9 260.1,39.1 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,52.4 267.3,45.8 268.3,52.4 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,45.8 275.5,45.8 276.5,59.0 277.5,59.0 278.6,45.8 279.6,45.8 280.6,59.0 281.7,32.5 282.7,32.5 283.7,59.0 284.7,59.0 285.8,45.8 286.8,45.8 287.8,59.0 288.9,52.4 289.9,52.4 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MEDFORD SUB-OFFICE<\/b><br>310 WEST 6TH STREET<br>MEDFORD, OR<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 4<\/b> (2025-12-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 14<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,55.2 8.1,55.2 9.1,59.0 10.2,59.0 11.2,55.2 12.2,59.0 13.3,59.0 14.3,55.2 15.3,55.2 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,51.4 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,6.0 65.7,47.6 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,43.9 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,55.2 87.3,55.2 88.3,59.0 89.4,59.0 90.4,59.0 91.4,55.2 92.4,55.2 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,40.1 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,51.4 122.3,55.2 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,51.4 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,55.2 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,43.9 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,51.4 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MEMPHIS HOLD ROOM<\/b><br>842 VIRGINIA RUN COVE<br>MEMPHIS, TN<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 48<\/b> (2025-11-10)&nbsp;&nbsp;<br><b>Mean:<\/b> 16/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 48<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,57.9 6.1,48.0 7.1,46.9 8.1,46.9 9.1,52.4 10.2,56.8 11.2,56.8 12.2,51.3 13.3,45.8 14.3,46.9 15.3,52.4 16.3,53.5 17.4,54.6 18.4,56.8 19.4,55.7 20.5,45.8 21.5,49.1 22.5,55.7 23.5,56.8 24.6,56.8 25.6,57.9 26.6,48.0 27.7,53.5 28.7,49.1 29.7,42.4 30.7,56.8 31.8,56.8 32.8,56.8 33.8,56.8 34.9,48.0 35.9,38.0 36.9,50.2 37.9,55.7 39.0,55.7 40.0,53.5 41.0,54.6 42.0,50.2 43.1,52.4 44.1,49.1 45.1,53.5 46.2,54.6 47.2,56.8 48.2,43.5 49.2,50.2 50.3,51.3 51.3,52.4 52.3,55.7 53.4,55.7 54.4,55.7 55.4,51.3 56.4,44.6 57.5,49.1 58.5,49.1 59.5,54.6 60.6,52.4 61.6,52.4 62.6,57.9 63.6,43.5 64.7,53.5 65.7,46.9 66.7,50.2 67.8,55.7 68.8,54.6 69.8,53.5 70.8,53.5 71.9,43.5 72.9,46.9 73.9,50.2 75.0,56.8 76.0,54.6 77.0,44.6 78.0,52.4 79.1,46.9 80.1,38.0 81.1,31.4 82.2,55.7 83.2,56.8 84.2,55.7 85.2,43.5 86.3,46.9 87.3,34.7 88.3,49.1 89.4,53.5 90.4,55.7 91.4,48.0 92.4,52.4 93.5,50.2 94.5,46.9 95.5,51.3 96.6,55.7 97.6,55.7 98.6,57.9 99.6,52.4 100.7,49.1 101.7,39.1 102.7,53.5 103.8,56.8 104.8,55.7 105.8,54.6 106.8,54.6 107.9,53.5 108.9,50.2 109.9,51.3 111.0,55.7 112.0,55.7 113.0,49.1 114.0,50.2 115.1,40.2 116.1,36.9 117.1,46.9 118.1,55.7 119.2,53.5 120.2,52.4 121.2,40.2 122.3,46.9 123.3,51.3 124.3,56.8 125.3,54.6 126.4,53.5 127.4,53.5 128.4,40.2 129.5,40.2 130.5,36.9 131.5,31.4 132.5,28.1 133.6,27.0 134.6,32.5 135.6,29.2 136.7,25.9 137.7,38.0 138.7,35.8 139.7,40.2 140.8,44.6 141.8,49.1 142.8,39.1 143.9,42.4 144.9,46.9 145.9,46.9 146.9,32.5 148.0,35.8 149.0,25.9 150.0,38.0 151.1,50.2 152.1,48.0 153.1,43.5 154.1,48.0 155.2,51.3 156.2,41.3 157.2,34.7 158.3,35.8 159.3,30.3 160.3,31.4 161.3,42.4 162.4,23.7 163.4,25.9 164.4,20.4 165.5,41.3 166.5,35.8 167.5,12.6 168.5,28.1 169.6,28.1 170.6,6.0 171.6,30.3 172.7,27.0 173.7,29.2 174.7,39.1 175.7,33.6 176.8,33.6 177.8,30.3 178.8,28.1 179.9,23.7 180.9,29.2 181.9,8.2 182.9,20.4 184.0,18.1 185.0,35.8 186.0,43.5 187.0,48.0 188.1,44.6 189.1,48.0 190.1,43.5 191.2,41.3 192.2,44.6 193.2,19.2 194.2,12.6 195.3,36.9 196.3,50.2 197.3,52.4 198.4,52.4 199.4,44.6 200.4,42.4 201.4,33.6 202.5,32.5 203.5,44.6 204.5,50.2 205.6,39.1 206.6,40.2 207.6,32.5 208.6,36.9 209.7,24.8 210.7,41.3 211.7,41.3 212.8,36.9 213.8,24.8 214.8,45.8 215.8,45.8 216.9,55.7 217.9,51.3 218.9,55.7 220.0,52.4 221.0,44.6 222.0,38.0 223.0,40.2 224.1,48.0 225.1,44.6 226.1,56.8 227.2,57.9 228.2,54.6 229.2,44.6 230.2,30.3 231.3,43.5 232.3,46.9 233.3,55.7 234.4,59.0 235.4,51.3 236.4,38.0 237.4,52.4 238.5,45.8 239.5,53.5 240.5,39.1 241.6,57.9 242.6,55.7 243.6,48.0 244.6,44.6 245.7,50.2 246.7,56.8 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,56.8 252.9,55.7 253.9,56.8 254.9,59.0 256.0,57.9 257.0,57.9 258.0,54.6 259.0,52.4 260.1,52.4 261.1,54.6 262.1,55.7 263.1,57.9 264.2,53.5 265.2,54.6 266.2,50.2 267.3,50.2 268.3,54.6 269.3,56.8 270.3,59.0 271.4,59.0 272.4,55.7 273.4,53.5 274.5,40.2 275.5,40.2 276.5,51.3 277.5,54.6 278.6,51.3 279.6,52.4 280.6,51.3 281.7,50.2 282.7,45.8 283.7,59.0 284.7,52.4 285.8,56.8 286.8,51.3 287.8,46.9 288.9,54.6 289.9,55.7 290.9,56.8 291.9,57.9 293.0,56.8 294.0,50.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MIAMI (MIRAMAR) HOLD ROOM<\/b><br>2805 SW 145th Ave<br>Miramar, FL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 108<\/b> (2025-11-21)&nbsp;&nbsp;<br><b>Mean:<\/b> 55/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 108<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,57.5 5.0,45.3 6.1,26.6 7.1,23.7 8.1,35.0 9.1,45.8 10.2,43.8 11.2,57.5 12.2,48.7 13.3,33.0 14.3,36.9 15.3,34.0 16.3,34.0 17.4,42.8 18.4,57.0 19.4,47.2 20.5,35.0 21.5,46.7 22.5,51.6 23.5,49.7 24.6,54.6 25.6,54.1 26.6,47.2 27.7,41.3 28.7,37.4 29.7,39.4 30.7,35.0 31.8,40.8 32.8,46.2 33.8,47.7 34.9,46.7 35.9,53.1 36.9,58.5 37.9,59.0 39.0,57.5 40.0,59.0 41.0,58.0 42.0,39.9 43.1,33.0 44.1,51.1 45.1,49.7 46.2,57.0 47.2,52.1 48.2,49.2 49.2,42.3 50.3,52.1 51.3,50.2 52.3,49.7 53.4,51.6 54.4,55.6 55.4,51.6 56.4,42.3 57.5,44.8 58.5,44.8 59.5,41.3 60.6,44.8 61.6,50.2 62.6,49.2 63.6,37.9 64.7,48.7 65.7,48.2 66.7,49.2 67.8,47.7 68.8,50.2 69.8,48.2 70.8,44.8 71.9,39.4 72.9,47.7 73.9,41.3 75.0,53.1 76.0,53.1 77.0,50.2 78.0,48.2 79.1,50.2 80.1,36.4 81.1,46.7 82.2,53.1 83.2,49.7 84.2,47.2 85.2,49.7 86.3,44.8 87.3,45.3 88.3,43.3 89.4,28.1 90.4,51.1 91.4,49.2 92.4,46.7 93.5,38.9 94.5,39.9 95.5,35.4 96.6,40.4 97.6,36.4 98.6,41.8 99.6,32.0 100.7,29.6 101.7,27.1 102.7,22.2 103.8,39.4 104.8,45.8 105.8,44.8 106.8,24.2 107.9,12.9 108.9,38.4 109.9,39.4 111.0,47.7 112.0,48.7 113.0,47.7 114.0,37.4 115.1,37.9 116.1,34.5 117.1,39.4 118.1,34.0 119.2,53.6 120.2,43.3 121.2,13.9 122.3,22.2 123.3,28.6 124.3,25.1 125.3,33.0 126.4,53.6 127.4,49.2 128.4,38.4 129.5,39.4 130.5,39.4 131.5,44.3 132.5,53.6 133.6,48.2 134.6,39.4 135.6,37.9 136.7,39.4 137.7,31.5 138.7,30.5 139.7,30.5 140.8,53.6 141.8,52.6 142.8,39.9 143.9,43.3 144.9,31.0 145.9,8.0 146.9,41.3 148.0,47.7 149.0,43.8 150.0,27.6 151.1,29.1 152.1,32.5 153.1,40.8 154.1,28.1 155.2,35.4 156.2,38.4 157.2,29.1 158.3,23.7 159.3,24.2 160.3,27.1 161.3,31.5 162.4,43.3 163.4,49.2 164.4,22.7 165.5,27.1 166.5,16.3 167.5,17.3 168.5,19.2 169.6,52.6 170.6,42.3 171.6,48.7 172.7,51.1 173.7,57.0 174.7,35.9 175.7,22.7 176.8,32.5 177.8,33.5 178.8,32.0 179.9,24.2 180.9,10.4 181.9,6.0 182.9,25.6 184.0,47.2 185.0,43.8 186.0,31.0 187.0,22.7 188.1,34.5 189.1,46.7 190.1,42.8 191.2,47.2 192.2,47.2 193.2,31.5 194.2,14.8 195.3,11.9 196.3,9.4 197.3,20.2 198.4,44.8 199.4,36.9 200.4,32.5 201.4,33.5 202.5,29.1 203.5,24.6 204.5,33.0 205.6,33.0 206.6,29.1 207.6,20.7 208.6,13.9 209.7,22.7 210.7,17.3 211.7,19.7 212.8,31.0 213.8,22.7 214.8,23.7 215.8,35.4 216.9,34.5 217.9,36.9 218.9,34.0 220.0,33.0 221.0,33.5 222.0,34.0 223.0,26.6 224.1,44.3 225.1,40.4 226.1,51.1 227.2,47.7 228.2,34.0 229.2,25.6 230.2,21.7 231.3,25.6 232.3,14.8 233.3,27.6 234.4,34.5 235.4,28.1 236.4,31.5 237.4,29.6 238.5,17.8 239.5,27.1 240.5,25.6 241.6,37.4 242.6,35.0 243.6,40.8 244.6,36.4 245.7,18.8 246.7,24.6 247.7,35.9 248.8,38.4 249.8,41.3 250.8,34.0 251.8,22.7 252.9,23.2 253.9,25.1 254.9,23.7 256.0,31.0 257.0,39.9 258.0,27.1 259.0,18.3 260.1,13.9 261.1,30.0 262.1,26.1 263.1,36.9 264.2,38.4 265.2,27.6 266.2,31.0 267.3,37.9 268.3,31.5 269.3,31.5 270.3,36.9 271.4,43.8 272.4,32.5 273.4,29.6 274.5,13.4 275.5,15.8 276.5,32.0 277.5,46.2 278.6,45.3 279.6,38.4 280.6,33.0 281.7,20.2 282.7,32.0 283.7,28.1 284.7,35.9 285.8,34.5 286.8,28.1 287.8,31.0 288.9,29.6 289.9,35.0 290.9,39.4 291.9,49.7 293.0,48.2 294.0,28.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MIDLAND DETENTION CENTER<\/b><br>400 S Main Street<br>Midland, TX<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 12<\/b> (2026-01-31)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 12<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,50.2 5.0,41.3 6.1,32.5 7.1,41.3 8.1,50.2 9.1,54.6 10.2,59.0 11.2,59.0 12.2,50.2 13.3,45.8 14.3,59.0 15.3,54.6 16.3,54.6 17.4,59.0 18.4,59.0 19.4,54.6 20.5,50.2 21.5,54.6 22.5,54.6 23.5,54.6 24.6,59.0 25.6,54.6 26.6,54.6 27.7,59.0 28.7,59.0 29.7,54.6 30.7,45.8 31.8,50.2 32.8,54.6 33.8,54.6 34.9,54.6 35.9,54.6 36.9,59.0 37.9,59.0 39.0,59.0 40.0,54.6 41.0,50.2 42.0,41.3 43.1,41.3 44.1,45.8 45.1,50.2 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,50.2 52.3,50.2 53.4,54.6 54.4,54.6 55.4,59.0 56.4,54.6 57.5,54.6 58.5,41.3 59.5,36.9 60.6,50.2 61.6,50.2 62.6,28.1 63.6,28.1 64.7,54.6 65.7,54.6 66.7,59.0 67.8,54.6 68.8,54.6 69.8,59.0 70.8,54.6 71.9,54.6 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,50.2 78.0,36.9 79.1,41.3 80.1,45.8 81.1,54.6 82.2,50.2 83.2,50.2 84.2,59.0 85.2,45.8 86.3,45.8 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,54.6 93.5,54.6 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,54.6 100.7,54.6 101.7,59.0 102.7,54.6 103.8,54.6 104.8,59.0 105.8,54.6 106.8,50.2 107.9,54.6 108.9,54.6 109.9,54.6 111.0,54.6 112.0,41.3 113.0,45.8 114.0,50.2 115.1,50.2 116.1,59.0 117.1,45.8 118.1,41.3 119.2,50.2 120.2,54.6 121.2,54.6 122.3,54.6 123.3,41.3 124.3,45.8 125.3,59.0 126.4,54.6 127.4,54.6 128.4,59.0 129.5,54.6 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,50.2 146.9,50.2 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,54.6 157.2,54.6 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,54.6 166.5,54.6 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,41.3 174.7,41.3 175.7,41.3 176.8,36.9 177.8,45.8 178.8,59.0 179.9,54.6 180.9,54.6 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,54.6 189.1,54.6 190.1,54.6 191.2,59.0 192.2,50.2 193.2,41.3 194.2,32.5 195.3,32.5 196.3,28.1 197.3,10.4 198.4,45.8 199.4,54.6 200.4,54.6 201.4,59.0 202.5,59.0 203.5,54.6 204.5,54.6 205.6,54.6 206.6,50.2 207.6,28.1 208.6,28.1 209.7,54.6 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,50.2 218.9,50.2 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,50.2 232.3,50.2 233.3,59.0 234.4,50.2 235.4,45.8 236.4,54.6 237.4,59.0 238.5,59.0 239.5,54.6 240.5,54.6 241.6,54.6 242.6,59.0 243.6,50.2 244.6,41.3 245.7,50.2 246.7,54.6 247.7,50.2 248.8,54.6 249.8,54.6 250.8,54.6 251.8,45.8 252.9,32.5 253.9,14.8 254.9,6.0 256.0,45.8 257.0,50.2 258.0,54.6 259.0,54.6 260.1,54.6 261.1,59.0 262.1,59.0 263.1,59.0 264.2,45.8 265.2,36.9 266.2,50.2 267.3,54.6 268.3,45.8 269.3,50.2 270.3,59.0 271.4,59.0 272.4,59.0 273.4,50.2 274.5,50.2 275.5,54.6 276.5,50.2 277.5,54.6 278.6,59.0 279.6,59.0 280.6,59.0 281.7,54.6 282.7,54.6 283.7,54.6 284.7,54.6 285.8,54.6 286.8,59.0 287.8,59.0 288.9,50.2 289.9,50.2 290.9,59.0 291.9,59.0 293.0,54.6 294.0,54.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MILWAUKEE HOLDROOM<\/b><br>310 E. KNAPP STREET<br>MILWAUKEE, WI<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 18<\/b> (2025-10-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 27<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,15.8 7.1,37.4 8.1,47.2 9.1,25.6 10.2,59.0 11.2,57.0 12.2,55.1 13.3,57.0 14.3,57.0 15.3,49.2 16.3,55.1 17.4,59.0 18.4,57.0 19.4,57.0 20.5,51.1 21.5,49.2 22.5,49.2 23.5,51.1 24.6,51.1 25.6,59.0 26.6,55.1 27.7,55.1 28.7,25.6 29.7,55.1 30.7,55.1 31.8,59.0 32.8,59.0 33.8,57.0 34.9,53.1 35.9,47.2 36.9,47.2 37.9,59.0 39.0,57.0 40.0,59.0 41.0,59.0 42.0,55.1 43.1,59.0 44.1,53.1 45.1,59.0 46.2,59.0 47.2,59.0 48.2,57.0 49.2,55.1 50.3,57.0 51.3,57.0 52.3,55.1 53.4,57.0 54.4,57.0 55.4,55.1 56.4,55.1 57.5,45.3 58.5,55.1 59.5,57.0 60.6,57.0 61.6,57.0 62.6,57.0 63.6,53.1 64.7,55.1 65.7,47.2 66.7,55.1 67.8,57.0 68.8,57.0 69.8,57.0 70.8,55.1 71.9,55.1 72.9,37.4 73.9,45.3 75.0,57.0 76.0,57.0 77.0,39.4 78.0,55.1 79.1,51.1 80.1,51.1 81.1,49.2 82.2,57.0 83.2,57.0 84.2,57.0 85.2,51.1 86.3,57.0 87.3,55.1 88.3,55.1 89.4,57.0 90.4,59.0 91.4,59.0 92.4,55.1 93.5,53.1 94.5,51.1 95.5,51.1 96.6,55.1 97.6,59.0 98.6,57.0 99.6,49.2 100.7,53.1 101.7,53.1 102.7,51.1 103.8,59.0 104.8,59.0 105.8,53.1 106.8,51.1 107.9,47.2 108.9,49.2 109.9,47.2 111.0,59.0 112.0,59.0 113.0,53.1 114.0,51.1 115.1,29.6 116.1,53.1 117.1,59.0 118.1,59.0 119.2,17.8 120.2,51.1 121.2,49.2 122.3,59.0 123.3,6.0 124.3,55.1 125.3,55.1 126.4,59.0 127.4,55.1 128.4,59.0 129.5,53.1 130.5,41.3 131.5,59.0 132.5,53.1 133.6,57.0 134.6,57.0 135.6,43.3 136.7,53.1 137.7,23.7 138.7,53.1 139.7,59.0 140.8,59.0 141.8,59.0 142.8,51.1 143.9,55.1 144.9,31.5 145.9,47.2 146.9,59.0 148.0,59.0 149.0,45.3 150.0,53.1 151.1,55.1 152.1,45.3 153.1,57.0 154.1,59.0 155.2,59.0 156.2,49.2 157.2,41.3 158.3,53.1 159.3,55.1 160.3,43.3 161.3,59.0 162.4,57.0 163.4,47.2 164.4,53.1 165.5,47.2 166.5,47.2 167.5,55.1 168.5,55.1 169.6,53.1 170.6,59.0 171.6,59.0 172.7,41.3 173.7,45.3 174.7,55.1 175.7,59.0 176.8,57.0 177.8,53.1 178.8,43.3 179.9,49.2 180.9,49.2 181.9,51.1 182.9,57.0 184.0,59.0 185.0,57.0 186.0,45.3 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,51.1 193.2,53.1 194.2,51.1 195.3,55.1 196.3,57.0 197.3,57.0 198.4,59.0 199.4,59.0 200.4,39.4 201.4,57.0 202.5,53.1 203.5,53.1 204.5,53.1 205.6,53.1 206.6,51.1 207.6,37.4 208.6,45.3 209.7,53.1 210.7,51.1 211.7,57.0 212.8,59.0 213.8,55.1 214.8,45.3 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,57.0 221.0,51.1 222.0,53.1 223.0,49.2 224.1,59.0 225.1,59.0 226.1,55.1 227.2,59.0 228.2,55.1 229.2,53.1 230.2,51.1 231.3,53.1 232.3,53.1 233.3,59.0 234.4,59.0 235.4,57.0 236.4,53.1 237.4,53.1 238.5,53.1 239.5,55.1 240.5,59.0 241.6,59.0 242.6,59.0 243.6,55.1 244.6,47.2 245.7,53.1 246.7,59.0 247.7,59.0 248.8,59.0 249.8,55.1 250.8,35.4 251.8,59.0 252.9,45.3 253.9,57.0 254.9,59.0 256.0,57.0 257.0,51.1 258.0,47.2 259.0,57.0 260.1,57.0 261.1,45.3 262.1,57.0 263.1,59.0 264.2,47.2 265.2,53.1 266.2,51.1 267.3,49.2 268.3,55.1 269.3,59.0 270.3,57.0 271.4,49.2 272.4,51.1 273.4,59.0 274.5,51.1 275.5,45.3 276.5,59.0 277.5,57.0 278.6,55.1 279.6,41.3 280.6,49.2 281.7,53.1 282.7,49.2 283.7,59.0 284.7,59.0 285.8,55.1 286.8,41.3 287.8,55.1 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,55.1 294.0,29.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MIDLAND, TX ERO HOLDROOM<\/b><br>400 S. MAIN STREET<br>MIDLAND, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 13<\/b> (2025-12-17)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 13<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,46.8 6.1,46.8 7.1,6.0 8.1,30.5 9.1,34.5 10.2,59.0 11.2,59.0 12.2,59.0 13.3,10.1 14.3,42.7 15.3,42.7 16.3,34.5 17.4,38.6 18.4,54.9 19.4,54.9 20.5,46.8 21.5,26.4 22.5,54.9 23.5,34.5 24.6,46.8 25.6,59.0 26.6,42.7 27.7,42.7 28.7,46.8 29.7,50.8 30.7,42.7 31.8,54.9 32.8,59.0 33.8,59.0 34.9,54.9 35.9,42.7 36.9,54.9 37.9,59.0 39.0,59.0 40.0,59.0 41.0,42.7 42.0,34.5 43.1,38.6 44.1,42.7 45.1,30.5 46.2,59.0 47.2,59.0 48.2,46.8 49.2,50.8 50.3,46.8 51.3,54.9 52.3,38.6 53.4,59.0 54.4,46.8 55.4,42.7 56.4,46.8 57.5,46.8 58.5,59.0 59.5,30.5 60.6,42.7 61.6,46.8 62.6,34.5 63.6,34.5 64.7,46.8 65.7,42.7 66.7,46.8 67.8,54.9 68.8,46.8 69.8,50.8 70.8,30.5 71.9,30.5 72.9,54.9 73.9,38.6 75.0,46.8 76.0,59.0 77.0,54.9 78.0,34.5 79.1,50.8 80.1,34.5 81.1,46.8 82.2,54.9 83.2,54.9 84.2,42.7 85.2,50.8 86.3,38.6 87.3,54.9 88.3,54.9 89.4,54.9 90.4,59.0 91.4,59.0 92.4,54.9 93.5,38.6 94.5,59.0 95.5,46.8 96.6,59.0 97.6,50.8 98.6,59.0 99.6,50.8 100.7,46.8 101.7,54.9 102.7,59.0 103.8,50.8 104.8,50.8 105.8,50.8 106.8,30.5 107.9,38.6 108.9,50.8 109.9,38.6 111.0,59.0 112.0,46.8 113.0,42.7 114.0,46.8 115.1,46.8 116.1,46.8 117.1,54.9 118.1,46.8 119.2,46.8 120.2,50.8 121.2,42.7 122.3,54.9 123.3,42.7 124.3,34.5 125.3,46.8 126.4,59.0 127.4,54.9 128.4,50.8 129.5,54.9 130.5,54.9 131.5,54.9 132.5,42.7 133.6,59.0 134.6,59.0 135.6,59.0 136.7,50.8 137.7,46.8 138.7,46.8 139.7,50.8 140.8,54.9 141.8,50.8 142.8,59.0 143.9,54.9 144.9,59.0 145.9,42.7 146.9,50.8 148.0,54.9 149.0,59.0 150.0,46.8 151.1,42.7 152.1,50.8 153.1,46.8 154.1,42.7 155.2,50.8 156.2,54.9 157.2,46.8 158.3,54.9 159.3,42.7 160.3,54.9 161.3,46.8 162.4,54.9 163.4,54.9 164.4,59.0 165.5,38.6 166.5,46.8 167.5,50.8 168.5,54.9 169.6,59.0 170.6,50.8 171.6,54.9 172.7,59.0 173.7,50.8 174.7,34.5 175.7,59.0 176.8,50.8 177.8,46.8 178.8,59.0 179.9,42.7 180.9,38.6 181.9,46.8 182.9,54.9 184.0,50.8 185.0,50.8 186.0,54.9 187.0,50.8 188.1,59.0 189.1,59.0 190.1,46.8 191.2,54.9 192.2,50.8 193.2,30.5 194.2,22.3 195.3,26.4 196.3,59.0 197.3,18.2 198.4,42.7 199.4,54.9 200.4,46.8 201.4,46.8 202.5,50.8 203.5,22.3 204.5,42.7 205.6,54.9 206.6,46.8 207.6,14.2 208.6,6.0 209.7,38.6 210.7,46.8 211.7,42.7 212.8,54.9 213.8,59.0 214.8,59.0 215.8,50.8 216.9,59.0 217.9,59.0 218.9,42.7 220.0,54.9 221.0,59.0 222.0,59.0 223.0,50.8 224.1,59.0 225.1,59.0 226.1,46.8 227.2,54.9 228.2,46.8 229.2,46.8 230.2,42.7 231.3,50.8 232.3,50.8 233.3,59.0 234.4,38.6 235.4,46.8 236.4,46.8 237.4,38.6 238.5,59.0 239.5,54.9 240.5,54.9 241.6,46.8 242.6,46.8 243.6,42.7 244.6,42.7 245.7,38.6 246.7,34.5 247.7,42.7 248.8,46.8 249.8,46.8 250.8,50.8 251.8,59.0 252.9,42.7 253.9,59.0 254.9,18.2 256.0,26.4 257.0,46.8 258.0,42.7 259.0,50.8 260.1,54.9 261.1,34.5 262.1,38.6 263.1,54.9 264.2,50.8 265.2,30.5 266.2,42.7 267.3,54.9 268.3,38.6 269.3,46.8 270.3,54.9 271.4,50.8 272.4,54.9 273.4,59.0 274.5,42.7 275.5,42.7 276.5,42.7 277.5,50.8 278.6,50.8 279.6,54.9 280.6,59.0 281.7,42.7 282.7,42.7 283.7,46.8 284.7,59.0 285.8,46.8 286.8,42.7 287.8,42.7 288.9,46.8 289.9,42.7 290.9,54.9 291.9,59.0 293.0,54.9 294.0,46.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MOUNT LAUREL HOLD ROOM<\/b><br>532 Fellowship Road, Suite A<br>Mount Laurel, NJ<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 20<\/b> (2025-12-15)&nbsp;&nbsp;<br><b>Mean:<\/b> 9/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 25<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,52.6 5.0,42.0 6.1,6.0 7.1,8.1 8.1,39.9 9.1,23.0 10.2,50.5 11.2,50.5 12.2,27.2 13.3,35.7 14.3,37.8 15.3,44.2 16.3,46.3 17.4,56.9 18.4,56.9 19.4,37.8 20.5,54.8 21.5,37.8 22.5,50.5 23.5,39.9 24.6,54.8 25.6,56.9 26.6,35.7 27.7,44.2 28.7,48.4 29.7,48.4 30.7,27.2 31.8,50.5 32.8,59.0 33.8,35.7 34.9,44.2 35.9,46.3 36.9,31.4 37.9,56.9 39.0,56.9 40.0,54.8 41.0,39.9 42.0,46.3 43.1,39.9 44.1,52.6 45.1,46.3 46.2,52.6 47.2,54.8 48.2,37.8 49.2,37.8 50.3,50.5 51.3,33.6 52.3,35.7 53.4,46.3 54.4,56.9 55.4,44.2 56.4,37.8 57.5,23.0 58.5,18.7 59.5,37.8 60.6,42.0 61.6,50.5 62.6,39.9 63.6,37.8 64.7,46.3 65.7,39.9 66.7,37.8 67.8,48.4 68.8,56.9 69.8,35.7 70.8,27.2 71.9,50.5 72.9,39.9 73.9,39.9 75.0,44.2 76.0,46.3 77.0,31.4 78.0,44.2 79.1,39.9 80.1,35.7 81.1,37.8 82.2,48.4 83.2,56.9 84.2,33.6 85.2,39.9 86.3,44.2 87.3,31.4 88.3,33.6 89.4,48.4 90.4,54.8 91.4,42.0 92.4,44.2 93.5,37.8 94.5,42.0 95.5,37.8 96.6,44.2 97.6,37.8 98.6,44.2 99.6,46.3 100.7,35.7 101.7,48.4 102.7,42.0 103.8,37.8 104.8,42.0 105.8,39.9 106.8,50.5 107.9,42.0 108.9,39.9 109.9,44.2 111.0,37.8 112.0,33.6 113.0,52.6 114.0,27.2 115.1,52.6 116.1,33.6 117.1,44.2 118.1,39.9 119.2,35.7 120.2,33.6 121.2,37.8 122.3,50.5 123.3,42.0 124.3,35.7 125.3,35.7 126.4,42.0 127.4,46.3 128.4,44.2 129.5,35.7 130.5,46.3 131.5,44.2 132.5,35.7 133.6,42.0 134.6,42.0 135.6,39.9 136.7,37.8 137.7,35.7 138.7,20.8 139.7,52.6 140.8,56.9 141.8,44.2 142.8,42.0 143.9,48.4 144.9,37.8 145.9,44.2 146.9,52.6 148.0,48.4 149.0,37.8 150.0,48.4 151.1,46.3 152.1,54.8 153.1,39.9 154.1,37.8 155.2,39.9 156.2,44.2 157.2,46.3 158.3,46.3 159.3,44.2 160.3,31.4 161.3,52.6 162.4,46.3 163.4,42.0 164.4,50.5 165.5,52.6 166.5,44.2 167.5,42.0 168.5,50.5 169.6,46.3 170.6,39.9 171.6,29.3 172.7,46.3 173.7,42.0 174.7,35.7 175.7,39.9 176.8,46.3 177.8,31.4 178.8,46.3 179.9,39.9 180.9,37.8 181.9,35.7 182.9,44.2 184.0,42.0 185.0,44.2 186.0,42.0 187.0,39.9 188.1,39.9 189.1,42.0 190.1,48.4 191.2,50.5 192.2,35.7 193.2,50.5 194.2,39.9 195.3,35.7 196.3,37.8 197.3,44.2 198.4,39.9 199.4,33.6 200.4,37.8 201.4,52.6 202.5,48.4 203.5,18.7 204.5,37.8 205.6,50.5 206.6,16.6 207.6,39.9 208.6,35.7 209.7,31.4 210.7,42.0 211.7,44.2 212.8,42.0 213.8,44.2 214.8,20.8 215.8,35.7 216.9,50.5 217.9,29.3 218.9,50.5 220.0,46.3 221.0,48.4 222.0,44.2 223.0,31.4 224.1,35.7 225.1,35.7 226.1,46.3 227.2,52.6 228.2,39.9 229.2,27.2 230.2,16.6 231.3,20.8 232.3,16.6 233.3,29.3 234.4,48.4 235.4,31.4 236.4,31.4 237.4,33.6 238.5,27.2 239.5,23.0 240.5,39.9 241.6,54.8 242.6,44.2 243.6,42.0 244.6,25.1 245.7,33.6 246.7,29.3 247.7,39.9 248.8,59.0 249.8,54.8 250.8,33.6 251.8,35.7 252.9,35.7 253.9,46.3 254.9,44.2 256.0,50.5 257.0,37.8 258.0,35.7 259.0,48.4 260.1,35.7 261.1,35.7 262.1,52.6 263.1,52.6 264.2,52.6 265.2,46.3 266.2,39.9 267.3,35.7 268.3,37.8 269.3,56.9 270.3,48.4 271.4,54.8 272.4,54.8 273.4,48.4 274.5,39.9 275.5,39.9 276.5,54.8 277.5,59.0 278.6,54.8 279.6,42.0 280.6,42.0 281.7,52.6 282.7,44.2 283.7,50.5 284.7,54.8 285.8,48.4 286.8,42.0 287.8,35.7 288.9,48.4 289.9,37.8 290.9,54.8 291.9,56.9 293.0,50.5 294.0,37.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MOBILE HOLDROOM<\/b><br>500 Interstate Park Drive, Suite 529<br>Mobile, AL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 23<\/b> (2026-01-22)&nbsp;&nbsp;<br><b>Mean:<\/b> 6/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 35<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,56.0 5.0,59.0 6.1,34.8 7.1,51.4 8.1,46.9 9.1,49.9 10.2,54.5 11.2,56.0 12.2,48.4 13.3,46.9 14.3,49.9 15.3,46.9 16.3,56.0 17.4,59.0 18.4,59.0 19.4,49.9 20.5,48.4 21.5,49.9 22.5,43.9 23.5,56.0 24.6,59.0 25.6,59.0 26.6,51.4 27.7,6.0 28.7,56.0 29.7,37.8 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,31.7 35.9,45.4 36.9,52.9 37.9,57.5 39.0,56.0 40.0,57.5 41.0,59.0 42.0,56.0 43.1,56.0 44.1,59.0 45.1,54.5 46.2,56.0 47.2,57.5 48.2,49.9 49.2,45.4 50.3,49.9 51.3,57.5 52.3,57.5 53.4,57.5 54.4,59.0 55.4,51.4 56.4,51.4 57.5,27.2 58.5,51.4 59.5,52.9 60.6,59.0 61.6,57.5 62.6,57.5 63.6,59.0 64.7,49.9 65.7,52.9 66.7,56.0 67.8,54.5 68.8,59.0 69.8,54.5 70.8,40.8 71.9,49.9 72.9,57.5 73.9,54.5 75.0,59.0 76.0,59.0 77.0,59.0 78.0,48.4 79.1,56.0 80.1,52.9 81.1,56.0 82.2,57.5 83.2,57.5 84.2,57.5 85.2,52.9 86.3,48.4 87.3,45.4 88.3,54.5 89.4,59.0 90.4,57.5 91.4,46.9 92.4,51.4 93.5,51.4 94.5,54.5 95.5,54.5 96.6,56.0 97.6,59.0 98.6,57.5 99.6,54.5 100.7,52.9 101.7,59.0 102.7,54.5 103.8,57.5 104.8,57.5 105.8,56.0 106.8,56.0 107.9,56.0 108.9,57.5 109.9,56.0 111.0,57.5 112.0,57.5 113.0,54.5 114.0,52.9 115.1,52.9 116.1,52.9 117.1,52.9 118.1,57.5 119.2,56.0 120.2,54.5 121.2,52.9 122.3,51.4 123.3,49.9 124.3,54.5 125.3,57.5 126.4,57.5 127.4,54.5 128.4,56.0 129.5,54.5 130.5,49.9 131.5,45.4 132.5,56.0 133.6,56.0 134.6,56.0 135.6,51.4 136.7,52.9 137.7,46.9 138.7,57.5 139.7,59.0 140.8,57.5 141.8,54.5 142.8,45.4 143.9,56.0 144.9,48.4 145.9,57.5 146.9,57.5 148.0,54.5 149.0,57.5 150.0,52.9 151.1,56.0 152.1,48.4 153.1,56.0 154.1,52.9 155.2,56.0 156.2,56.0 157.2,49.9 158.3,54.5 159.3,46.9 160.3,56.0 161.3,52.9 162.4,57.5 163.4,56.0 164.4,51.4 165.5,52.9 166.5,45.4 167.5,45.4 168.5,51.4 169.6,51.4 170.6,57.5 171.6,48.4 172.7,45.4 173.7,46.9 174.7,45.4 175.7,51.4 176.8,52.9 177.8,57.5 178.8,51.4 179.9,46.9 180.9,45.4 181.9,52.9 182.9,51.4 184.0,59.0 185.0,56.0 186.0,49.9 187.0,52.9 188.1,59.0 189.1,48.4 190.1,46.9 191.2,51.4 192.2,57.5 193.2,52.9 194.2,43.9 195.3,40.8 196.3,49.9 197.3,51.4 198.4,52.9 199.4,40.8 200.4,42.3 201.4,43.9 202.5,43.9 203.5,49.9 204.5,46.9 205.6,48.4 206.6,52.9 207.6,42.3 208.6,42.3 209.7,42.3 210.7,49.9 211.7,49.9 212.8,49.9 213.8,48.4 214.8,45.4 215.8,49.9 216.9,59.0 217.9,43.9 218.9,54.5 220.0,49.9 221.0,57.5 222.0,48.4 223.0,52.9 224.1,59.0 225.1,56.0 226.1,48.4 227.2,59.0 228.2,56.0 229.2,45.4 230.2,34.8 231.3,43.9 232.3,43.9 233.3,46.9 234.4,59.0 235.4,46.9 236.4,43.9 237.4,40.8 238.5,34.8 239.5,45.4 240.5,45.4 241.6,54.5 242.6,45.4 243.6,39.3 244.6,40.8 245.7,24.2 246.7,56.0 247.7,46.9 248.8,54.5 249.8,56.0 250.8,48.4 251.8,52.9 252.9,28.7 253.9,46.9 254.9,48.4 256.0,52.9 257.0,48.4 258.0,43.9 259.0,51.4 260.1,45.4 261.1,49.9 262.1,45.4 263.1,57.5 264.2,52.9 265.2,46.9 266.2,45.4 267.3,37.8 268.3,48.4 269.3,52.9 270.3,46.9 271.4,51.4 272.4,42.3 273.4,40.8 274.5,48.4 275.5,57.5 276.5,48.4 277.5,56.0 278.6,49.9 279.6,49.9 280.6,48.4 281.7,57.5 282.7,43.9 283.7,39.3 284.7,51.4 285.8,56.0 286.8,49.9 287.8,34.8 288.9,37.8 289.9,45.4 290.9,48.4 291.9,54.5 293.0,48.4 294.0,49.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MONROE COUNTY JAIL<\/b><br>5501 College Road<br>Key West, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 11<\/b> (2025-11-29)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 11<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,54.2 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,54.2 64.7,54.2 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,54.2 73.9,49.4 75.0,49.4 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,54.2 83.2,49.4 84.2,54.2 85.2,59.0 86.3,49.4 87.3,49.4 88.3,59.0 89.4,54.2 90.4,54.2 91.4,59.0 92.4,59.0 93.5,59.0 94.5,54.2 95.5,54.2 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,54.2 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,49.4 112.0,49.4 113.0,59.0 114.0,54.2 115.1,54.2 116.1,59.0 117.1,59.0 118.1,59.0 119.2,54.2 120.2,54.2 121.2,59.0 122.3,54.2 123.3,54.2 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,54.2 137.7,54.2 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,44.5 146.9,44.5 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,49.4 154.1,49.4 155.2,54.2 156.2,49.4 157.2,49.4 158.3,44.5 159.3,44.5 160.3,39.7 161.3,44.5 162.4,59.0 163.4,49.4 164.4,44.5 165.5,54.2 166.5,59.0 167.5,49.4 168.5,49.4 169.6,59.0 170.6,54.2 171.6,54.2 172.7,59.0 173.7,49.4 174.7,49.4 175.7,54.2 176.8,54.2 177.8,59.0 178.8,54.2 179.9,49.4 180.9,54.2 181.9,39.7 182.9,39.7 184.0,59.0 185.0,49.4 186.0,49.4 187.0,39.7 188.1,39.7 189.1,20.5 190.1,6.0 191.2,44.5 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,49.4 202.5,49.4 203.5,59.0 204.5,49.4 205.6,49.4 206.6,54.2 207.6,59.0 208.6,59.0 209.7,59.0 210.7,54.2 211.7,54.2 212.8,59.0 213.8,59.0 214.8,54.2 215.8,44.5 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,54.2 226.1,54.2 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,49.4 233.3,44.5 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,54.2 240.5,54.2 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,49.4 248.8,49.4 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,49.4 254.9,54.2 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,54.2 261.1,54.2 262.1,54.2 263.1,54.2 264.2,59.0 265.2,54.2 266.2,59.0 267.3,54.2 268.3,49.4 269.3,54.2 270.3,59.0 271.4,59.0 272.4,49.4 273.4,49.4 274.5,54.2 275.5,54.2 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,54.2 281.7,54.2 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,54.2 288.9,54.2 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MONTGOMERY COUNTY JAIL<\/b><br>Park Street<br>Fonda, NY<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 19<\/b> (2025-12-18)&nbsp;&nbsp;<br><b>Mean:<\/b> 6/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 19<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,56.2 5.0,42.3 6.1,22.7 7.1,28.3 8.1,11.6 9.1,36.7 10.2,33.9 11.2,33.9 12.2,33.9 13.3,33.9 14.3,53.4 15.3,50.6 16.3,39.5 17.4,33.9 18.4,33.9 19.4,33.9 20.5,47.8 21.5,50.6 22.5,56.2 23.5,56.2 24.6,56.2 25.6,56.2 26.6,28.3 27.7,22.7 28.7,19.9 29.7,42.3 30.7,42.3 31.8,47.8 32.8,36.7 33.8,33.9 34.9,42.3 35.9,36.7 36.9,50.6 37.9,50.6 39.0,47.8 40.0,47.8 41.0,47.8 42.0,50.6 43.1,31.1 44.1,28.3 45.1,53.4 46.2,50.6 47.2,47.8 48.2,47.8 49.2,19.9 50.3,28.3 51.3,28.3 52.3,42.3 53.4,33.9 54.4,33.9 55.4,25.5 56.4,36.7 57.5,33.9 58.5,25.5 59.5,50.6 60.6,45.1 61.6,45.1 62.6,45.1 63.6,47.8 64.7,42.3 65.7,42.3 66.7,53.4 67.8,56.2 68.8,53.4 69.8,53.4 70.8,47.8 71.9,31.1 72.9,31.1 73.9,39.5 75.0,36.7 76.0,36.7 77.0,33.9 78.0,39.5 79.1,36.7 80.1,50.6 81.1,42.3 82.2,39.5 83.2,36.7 84.2,19.9 85.2,14.4 86.3,45.1 87.3,19.9 88.3,33.9 89.4,45.1 90.4,59.0 91.4,50.6 92.4,45.1 93.5,47.8 94.5,50.6 95.5,53.4 96.6,50.6 97.6,50.6 98.6,50.6 99.6,47.8 100.7,47.8 101.7,45.1 102.7,42.3 103.8,36.7 104.8,36.7 105.8,42.3 106.8,28.3 107.9,33.9 108.9,28.3 109.9,53.4 111.0,53.4 112.0,53.4 113.0,45.1 114.0,25.5 115.1,28.3 116.1,22.7 117.1,45.1 118.1,39.5 119.2,39.5 120.2,33.9 121.2,14.4 122.3,25.5 123.3,22.7 124.3,39.5 125.3,39.5 126.4,39.5 127.4,31.1 128.4,28.3 129.5,33.9 130.5,33.9 131.5,17.2 132.5,36.7 133.6,28.3 134.6,28.3 135.6,56.2 136.7,36.7 137.7,36.7 138.7,36.7 139.7,53.4 140.8,53.4 141.8,53.4 142.8,50.6 143.9,50.6 144.9,47.8 145.9,45.1 146.9,56.2 148.0,56.2 149.0,56.2 150.0,59.0 151.1,56.2 152.1,25.5 153.1,25.5 154.1,47.8 155.2,45.1 156.2,39.5 157.2,45.1 158.3,45.1 159.3,53.4 160.3,50.6 161.3,56.2 162.4,53.4 163.4,53.4 164.4,59.0 165.5,50.6 166.5,39.5 167.5,39.5 168.5,59.0 169.6,59.0 170.6,59.0 171.6,47.8 172.7,36.7 173.7,33.9 174.7,22.7 175.7,45.1 176.8,42.3 177.8,42.3 178.8,31.1 179.9,28.3 180.9,36.7 181.9,33.9 182.9,53.4 184.0,53.4 185.0,50.6 186.0,53.4 187.0,59.0 188.1,53.4 189.1,53.4 190.1,53.4 191.2,53.4 192.2,53.4 193.2,45.1 194.2,33.9 195.3,28.3 196.3,25.5 197.3,45.1 198.4,42.3 199.4,31.1 200.4,33.9 201.4,22.7 202.5,45.1 203.5,53.4 204.5,56.2 205.6,53.4 206.6,45.1 207.6,36.7 208.6,17.2 209.7,6.0 210.7,28.3 211.7,39.5 212.8,28.3 213.8,8.8 214.8,33.9 215.8,33.9 216.9,56.2 217.9,56.2 218.9,59.0 220.0,53.4 221.0,53.4 222.0,53.4 223.0,47.8 224.1,45.1 225.1,42.3 226.1,53.4 227.2,47.8 228.2,36.7 229.2,22.7 230.2,14.4 231.3,36.7 232.3,36.7 233.3,33.9 234.4,31.1 235.4,11.6 236.4,28.3 237.4,36.7 238.5,45.1 239.5,33.9 240.5,39.5 241.6,39.5 242.6,39.5 243.6,39.5 244.6,39.5 245.7,39.5 246.7,39.5 247.7,50.6 248.8,50.6 249.8,47.8 250.8,39.5 251.8,47.8 252.9,56.2 253.9,53.4 254.9,53.4 256.0,47.8 257.0,42.3 258.0,53.4 259.0,53.4 260.1,56.2 261.1,56.2 262.1,53.4 263.1,42.3 264.2,39.5 265.2,45.1 266.2,45.1 267.3,56.2 268.3,45.1 269.3,45.1 270.3,42.3 271.4,36.7 272.4,53.4 273.4,50.6 274.5,47.8 275.5,47.8 276.5,56.2 277.5,56.2 278.6,59.0 279.6,45.1 280.6,39.5 281.7,47.8 282.7,47.8 283.7,50.6 284.7,50.6 285.8,45.1 286.8,36.7 287.8,28.3 288.9,42.3 289.9,45.1 290.9,53.4 291.9,53.4 293.0,47.8 294.0,53.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">MONTGOMERY HOLD RM<\/b><br>806 Hilbig Rd<br>Conroe, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 162<\/b> (2026-01-13)&nbsp;&nbsp;<br><b>Mean:<\/b> 78/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 221<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,47.7 5.0,45.1 6.1,45.6 7.1,37.2 8.1,43.2 9.1,45.6 10.2,48.9 11.2,48.4 12.2,49.4 13.3,46.0 14.3,41.7 15.3,40.1 16.3,41.5 17.4,46.3 18.4,51.6 19.4,50.6 20.5,45.6 21.5,44.4 22.5,46.3 23.5,50.8 24.6,50.6 25.6,52.3 26.6,51.6 27.7,48.0 28.7,45.3 29.7,43.4 30.7,46.0 31.8,44.1 32.8,42.0 33.8,49.9 34.9,45.1 35.9,45.6 36.9,43.2 37.9,44.1 39.0,53.0 40.0,52.0 41.0,51.1 42.0,47.0 43.1,48.7 44.1,48.0 45.1,47.5 46.2,48.4 47.2,50.1 48.2,47.7 49.2,40.5 50.3,35.5 51.3,35.5 52.3,33.3 53.4,51.8 54.4,54.0 55.4,49.2 56.4,46.3 57.5,40.5 58.5,45.6 59.5,43.2 60.6,46.3 61.6,47.7 62.6,54.9 63.6,49.2 64.7,44.6 65.7,45.6 66.7,44.9 67.8,47.5 68.8,46.5 69.8,45.3 70.8,39.1 71.9,39.1 72.9,36.0 73.9,42.7 75.0,29.0 76.0,39.1 77.0,39.6 78.0,28.8 79.1,23.5 80.1,20.6 81.1,22.1 82.2,20.6 83.2,26.1 84.2,31.9 85.2,17.3 86.3,9.4 87.3,6.0 88.3,20.1 89.4,25.4 90.4,28.3 91.4,25.4 92.4,24.9 93.5,28.1 94.5,37.9 95.5,37.2 96.6,39.6 97.6,46.3 98.6,46.5 99.6,42.2 100.7,33.1 101.7,24.5 102.7,27.1 103.8,25.9 104.8,37.4 105.8,39.3 106.8,36.2 107.9,37.4 108.9,37.7 109.9,24.5 111.0,31.7 112.0,44.1 113.0,45.6 114.0,36.9 115.1,33.6 116.1,30.9 117.1,29.5 118.1,24.9 119.2,38.1 120.2,43.9 121.2,36.9 122.3,29.3 123.3,28.8 124.3,22.3 125.3,25.4 126.4,39.1 127.4,36.7 128.4,41.5 129.5,33.6 130.5,34.8 131.5,33.6 132.5,33.8 133.6,43.9 134.6,48.2 135.6,41.0 136.7,35.3 137.7,40.5 138.7,32.9 139.7,33.8 140.8,43.4 141.8,51.6 142.8,48.2 143.9,41.7 144.9,40.5 145.9,41.5 146.9,41.5 148.0,43.9 149.0,50.1 150.0,48.4 151.1,40.1 152.1,38.1 153.1,29.0 154.1,33.8 155.2,34.1 156.2,27.3 157.2,26.1 158.3,33.3 159.3,21.8 160.3,24.7 161.3,33.1 162.4,48.2 163.4,45.3 164.4,43.4 165.5,43.4 166.5,38.4 167.5,38.9 168.5,39.8 169.6,41.5 170.6,40.3 171.6,40.3 172.7,31.7 173.7,21.3 174.7,20.9 175.7,23.7 176.8,29.0 177.8,37.7 178.8,32.9 179.9,34.8 180.9,32.9 181.9,28.5 182.9,30.7 184.0,38.4 185.0,47.5 186.0,47.7 187.0,47.0 188.1,53.7 189.1,53.2 190.1,55.9 191.2,54.2 192.2,50.4 193.2,45.3 194.2,34.5 195.3,33.1 196.3,30.7 197.3,37.4 198.4,42.0 199.4,43.4 200.4,43.2 201.4,40.5 202.5,37.4 203.5,44.4 204.5,42.2 205.6,46.8 206.6,48.4 207.6,42.9 208.6,41.5 209.7,40.3 210.7,38.6 211.7,45.3 212.8,44.9 213.8,42.9 214.8,38.1 215.8,46.3 216.9,54.4 217.9,48.9 218.9,41.7 220.0,48.0 221.0,48.4 222.0,46.8 223.0,48.7 224.1,50.1 225.1,42.0 226.1,43.4 227.2,49.2 228.2,49.6 229.2,41.7 230.2,41.3 231.3,37.7 232.3,34.8 233.3,34.3 234.4,41.7 235.4,34.3 236.4,20.1 237.4,32.6 238.5,32.1 239.5,38.1 240.5,37.9 241.6,42.0 242.6,40.5 243.6,43.4 244.6,39.3 245.7,35.5 246.7,38.9 247.7,49.9 248.8,57.6 249.8,52.0 250.8,39.6 251.8,35.5 252.9,36.0 253.9,40.8 254.9,42.7 256.0,46.5 257.0,43.4 258.0,40.8 259.0,39.1 260.1,42.2 261.1,44.4 262.1,46.8 263.1,46.0 264.2,46.0 265.2,44.6 266.2,49.9 267.3,52.0 268.3,49.4 269.3,50.6 270.3,50.4 271.4,50.1 272.4,45.6 273.4,43.9 274.5,46.5 275.5,50.6 276.5,50.6 277.5,53.7 278.6,49.2 279.6,37.7 280.6,42.0 281.7,47.7 282.7,52.0 283.7,48.7 284.7,53.5 285.8,49.9 286.8,46.5 287.8,45.1 288.9,48.9 289.9,48.7 290.9,48.4 291.9,54.0 293.0,50.6 294.0,47.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">NASSAU COUNTY JAIL<\/b><br>76212 Nicholas Cutinha Road<br>Yulee, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 4<\/b> (2026-01-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 4<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,6.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">NASSAU COUNTY ICE INTAKE<\/b><br>100 Carman Avenue<br>East Meadow, NY<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 30<\/b> (2026-01-22)&nbsp;&nbsp;<br><b>Mean:<\/b> 4/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 30<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,55.5 5.0,59.0 6.1,55.5 7.1,59.0 8.1,51.9 9.1,57.2 10.2,59.0 11.2,59.0 12.2,55.5 13.3,55.5 14.3,50.2 15.3,55.5 16.3,53.7 17.4,55.5 18.4,55.5 19.4,53.7 20.5,55.5 21.5,59.0 22.5,55.5 23.5,59.0 24.6,55.5 25.6,59.0 26.6,55.5 27.7,59.0 28.7,57.2 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,57.2 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,57.2 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,55.5 54.4,53.7 55.4,53.7 56.4,55.5 57.5,59.0 58.5,51.9 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,57.2 64.7,57.2 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,55.5 70.8,57.2 71.9,59.0 72.9,55.5 73.9,59.0 75.0,55.5 76.0,57.2 77.0,57.2 78.0,59.0 79.1,55.5 80.1,57.2 81.1,59.0 82.2,59.0 83.2,57.2 84.2,53.7 85.2,51.9 86.3,57.2 87.3,55.5 88.3,59.0 89.4,57.2 90.4,59.0 91.4,57.2 92.4,59.0 93.5,59.0 94.5,55.5 95.5,57.2 96.6,59.0 97.6,59.0 98.6,55.5 99.6,51.9 100.7,55.5 101.7,57.2 102.7,59.0 103.8,57.2 104.8,59.0 105.8,55.5 106.8,53.7 107.9,59.0 108.9,59.0 109.9,46.6 111.0,55.5 112.0,55.5 113.0,59.0 114.0,57.2 115.1,36.0 116.1,48.4 117.1,55.5 118.1,59.0 119.2,59.0 120.2,55.5 121.2,57.2 122.3,59.0 123.3,57.2 124.3,57.2 125.3,57.2 126.4,57.2 127.4,59.0 128.4,59.0 129.5,59.0 130.5,55.5 131.5,59.0 132.5,57.2 133.6,57.2 134.6,57.2 135.6,55.5 136.7,57.2 137.7,57.2 138.7,55.5 139.7,55.5 140.8,59.0 141.8,59.0 142.8,57.2 143.9,51.9 144.9,50.2 145.9,57.2 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,57.2 174.7,57.2 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,57.2 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,57.2 204.5,51.9 205.6,57.2 206.6,59.0 207.6,57.2 208.6,51.9 209.7,59.0 210.7,59.0 211.7,39.6 212.8,46.6 213.8,46.6 214.8,55.5 215.8,55.5 216.9,57.2 217.9,48.4 218.9,59.0 220.0,46.6 221.0,39.6 222.0,41.3 223.0,50.2 224.1,43.1 225.1,44.9 226.1,39.6 227.2,43.1 228.2,23.7 229.2,21.9 230.2,29.0 231.3,20.1 232.3,41.3 233.3,43.1 234.4,36.0 235.4,37.8 236.4,23.7 237.4,34.3 238.5,25.4 239.5,44.9 240.5,41.3 241.6,39.6 242.6,23.7 243.6,34.3 244.6,37.8 245.7,6.0 246.7,20.1 247.7,53.7 248.8,59.0 249.8,59.0 250.8,59.0 251.8,57.2 252.9,55.5 253.9,57.2 254.9,46.6 256.0,41.3 257.0,36.0 258.0,34.3 259.0,57.2 260.1,59.0 261.1,46.6 262.1,50.2 263.1,48.4 264.2,44.9 265.2,44.9 266.2,29.0 267.3,30.7 268.3,48.4 269.3,50.2 270.3,46.6 271.4,50.2 272.4,51.9 273.4,37.8 274.5,46.6 275.5,43.1 276.5,37.8 277.5,53.7 278.6,57.2 279.6,46.6 280.6,51.9 281.7,46.6 282.7,37.8 283.7,27.2 284.7,57.2 285.8,43.1 286.8,39.6 287.8,34.3 288.9,32.5 289.9,43.1 290.9,41.3 291.9,50.2 293.0,41.3 294.0,36.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">NEWBURGH HOLDING<\/b><br>15 Governor Drive<br>Newburgh, NY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 10<\/b> (2025-11-07)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 10<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,37.8 5.0,43.1 6.1,59.0 7.1,53.7 8.1,27.2 9.1,53.7 10.2,59.0 11.2,59.0 12.2,48.4 13.3,32.5 14.3,43.1 15.3,53.7 16.3,59.0 17.4,59.0 18.4,59.0 19.4,27.2 20.5,53.7 21.5,53.7 22.5,37.8 23.5,43.1 24.6,43.1 25.6,59.0 26.6,37.8 27.7,53.7 28.7,53.7 29.7,53.7 30.7,43.1 31.8,59.0 32.8,53.7 33.8,59.0 34.9,48.4 35.9,43.1 36.9,32.5 37.9,59.0 39.0,53.7 40.0,43.1 41.0,43.1 42.0,48.4 43.1,53.7 44.1,43.1 45.1,27.2 46.2,59.0 47.2,59.0 48.2,53.7 49.2,32.5 50.3,37.8 51.3,48.4 52.3,48.4 53.4,53.7 54.4,48.4 55.4,27.2 56.4,48.4 57.5,48.4 58.5,37.8 59.5,37.8 60.6,43.1 61.6,59.0 62.6,48.4 63.6,6.0 64.7,32.5 65.7,59.0 66.7,48.4 67.8,48.4 68.8,43.1 69.8,21.9 70.8,11.3 71.9,6.0 72.9,43.1 73.9,37.8 75.0,43.1 76.0,53.7 77.0,48.4 78.0,37.8 79.1,48.4 80.1,37.8 81.1,48.4 82.2,37.8 83.2,48.4 84.2,43.1 85.2,32.5 86.3,27.2 87.3,53.7 88.3,21.9 89.4,48.4 90.4,53.7 91.4,43.1 92.4,53.7 93.5,32.5 94.5,37.8 95.5,37.8 96.6,53.7 97.6,59.0 98.6,48.4 99.6,48.4 100.7,48.4 101.7,32.5 102.7,43.1 103.8,43.1 104.8,59.0 105.8,48.4 106.8,53.7 107.9,53.7 108.9,48.4 109.9,48.4 111.0,59.0 112.0,59.0 113.0,53.7 114.0,37.8 115.1,43.1 116.1,43.1 117.1,53.7 118.1,59.0 119.2,59.0 120.2,43.1 121.2,37.8 122.3,43.1 123.3,48.4 124.3,43.1 125.3,53.7 126.4,53.7 127.4,53.7 128.4,43.1 129.5,43.1 130.5,48.4 131.5,43.1 132.5,59.0 133.6,59.0 134.6,32.5 135.6,53.7 136.7,53.7 137.7,48.4 138.7,48.4 139.7,59.0 140.8,53.7 141.8,48.4 142.8,37.8 143.9,21.9 144.9,53.7 145.9,48.4 146.9,59.0 148.0,53.7 149.0,59.0 150.0,32.5 151.1,48.4 152.1,37.8 153.1,53.7 154.1,48.4 155.2,37.8 156.2,32.5 157.2,27.2 158.3,37.8 159.3,37.8 160.3,43.1 161.3,27.2 162.4,27.2 163.4,21.9 164.4,27.2 165.5,21.9 166.5,32.5 167.5,6.0 168.5,16.6 169.6,27.2 170.6,11.3 171.6,6.0 172.7,43.1 173.7,32.5 174.7,37.8 175.7,43.1 176.8,43.1 177.8,48.4 178.8,37.8 179.9,32.5 180.9,43.1 181.9,48.4 182.9,48.4 184.0,53.7 185.0,43.1 186.0,32.5 187.0,27.2 188.1,59.0 189.1,48.4 190.1,59.0 191.2,59.0 192.2,48.4 193.2,59.0 194.2,37.8 195.3,21.9 196.3,16.6 197.3,32.5 198.4,53.7 199.4,48.4 200.4,11.3 201.4,21.9 202.5,48.4 203.5,48.4 204.5,48.4 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,53.7 210.7,53.7 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,53.7 216.9,59.0 217.9,59.0 218.9,59.0 220.0,53.7 221.0,53.7 222.0,53.7 223.0,48.4 224.1,59.0 225.1,43.1 226.1,48.4 227.2,48.4 228.2,43.1 229.2,48.4 230.2,32.5 231.3,48.4 232.3,43.1 233.3,48.4 234.4,53.7 235.4,43.1 236.4,48.4 237.4,43.1 238.5,59.0 239.5,43.1 240.5,53.7 241.6,59.0 242.6,48.4 243.6,48.4 244.6,48.4 245.7,37.8 246.7,37.8 247.7,53.7 248.8,59.0 249.8,59.0 250.8,48.4 251.8,27.2 252.9,53.7 253.9,59.0 254.9,48.4 256.0,53.7 257.0,37.8 258.0,27.2 259.0,37.8 260.1,32.5 261.1,59.0 262.1,53.7 263.1,53.7 264.2,48.4 265.2,48.4 266.2,48.4 267.3,48.4 268.3,53.7 269.3,53.7 270.3,59.0 271.4,59.0 272.4,53.7 273.4,43.1 274.5,48.4 275.5,37.8 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,37.8 281.7,53.7 282.7,53.7 283.7,59.0 284.7,48.4 285.8,59.0 286.8,53.7 287.8,48.4 288.9,53.7 289.9,48.4 290.9,59.0 291.9,59.0 293.0,53.7 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">NEW/INS OS HOLD ROOM<\/b><br>970 Broad St., 11th Floor<br>Newark, NJ<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 13<\/b> (2025-11-08)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 13<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,50.8 6.1,42.7 7.1,46.8 8.1,54.9 9.1,59.0 10.2,59.0 11.2,54.9 12.2,42.7 13.3,54.9 14.3,59.0 15.3,54.9 16.3,59.0 17.4,59.0 18.4,59.0 19.4,54.9 20.5,54.9 21.5,46.8 22.5,54.9 23.5,54.9 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,54.9 29.7,50.8 30.7,54.9 31.8,54.9 32.8,59.0 33.8,54.9 34.9,54.9 35.9,54.9 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,50.8 43.1,54.9 44.1,59.0 45.1,59.0 46.2,42.7 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,54.9 52.3,50.8 53.4,59.0 54.4,59.0 55.4,54.9 56.4,38.6 57.5,59.0 58.5,59.0 59.5,54.9 60.6,59.0 61.6,54.9 62.6,54.9 63.6,59.0 64.7,59.0 65.7,54.9 66.7,59.0 67.8,46.8 68.8,59.0 69.8,59.0 70.8,50.8 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,54.9 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,54.9 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,54.9 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,54.9 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,34.5 108.9,59.0 109.9,54.9 111.0,59.0 112.0,54.9 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,54.9 124.3,59.0 125.3,54.9 126.4,59.0 127.4,59.0 128.4,54.9 129.5,59.0 130.5,59.0 131.5,59.0 132.5,54.9 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,54.9 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,22.3 155.2,46.8 156.2,54.9 157.2,54.9 158.3,59.0 159.3,59.0 160.3,59.0 161.3,46.8 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,6.0 169.6,38.6 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,34.5 177.8,50.8 178.8,54.9 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,46.8 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,54.9 191.2,59.0 192.2,46.8 193.2,59.0 194.2,59.0 195.3,59.0 196.3,50.8 197.3,26.4 198.4,54.9 199.4,54.9 200.4,54.9 201.4,50.8 202.5,54.9 203.5,54.9 204.5,54.9 205.6,46.8 206.6,54.9 207.6,54.9 208.6,50.8 209.7,54.9 210.7,54.9 211.7,54.9 212.8,46.8 213.8,54.9 214.8,54.9 215.8,54.9 216.9,54.9 217.9,54.9 218.9,54.9 220.0,50.8 221.0,54.9 222.0,54.9 223.0,54.9 224.1,54.9 225.1,54.9 226.1,54.9 227.2,54.9 228.2,46.8 229.2,54.9 230.2,59.0 231.3,59.0 232.3,38.6 233.3,59.0 234.4,59.0 235.4,59.0 236.4,50.8 237.4,59.0 238.5,59.0 239.5,46.8 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,50.8 259.0,46.8 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,54.9 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">NEW ORLEANS HOLD ROOM<\/b><br>181 James Drive W<br>St. Rose, LA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 23<\/b> (2025-12-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 23<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,54.4 7.1,56.7 8.1,49.8 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,54.4 14.3,47.5 15.3,52.1 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,56.7 21.5,54.4 22.5,59.0 23.5,54.4 24.6,56.7 25.6,59.0 26.6,59.0 27.7,47.5 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,54.4 56.4,59.0 57.5,59.0 58.5,59.0 59.5,56.7 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,52.1 66.7,49.8 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,56.7 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,54.4 93.5,59.0 94.5,52.1 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,56.7 101.7,47.5 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,54.4 109.9,59.0 111.0,59.0 112.0,59.0 113.0,54.4 114.0,59.0 115.1,56.7 116.1,56.7 117.1,56.7 118.1,59.0 119.2,59.0 120.2,56.7 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,47.5 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,56.7 135.6,59.0 136.7,59.0 137.7,59.0 138.7,56.7 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,45.2 144.9,56.7 145.9,56.7 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,52.1 157.2,54.4 158.3,47.5 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,56.7 171.6,59.0 172.7,59.0 173.7,54.4 174.7,54.4 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,56.7 182.9,59.0 184.0,59.0 185.0,59.0 186.0,54.4 187.0,56.7 188.1,56.7 189.1,56.7 190.1,59.0 191.2,59.0 192.2,59.0 193.2,47.5 194.2,59.0 195.3,33.7 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,56.7 201.4,12.9 202.5,12.9 203.5,45.2 204.5,45.2 205.6,54.4 206.6,29.0 207.6,6.0 208.6,24.4 209.7,12.9 210.7,40.6 211.7,56.7 212.8,56.7 213.8,42.9 214.8,47.5 215.8,52.1 216.9,54.4 217.9,54.4 218.9,56.7 220.0,56.7 221.0,54.4 222.0,29.0 223.0,52.1 224.1,59.0 225.1,52.1 226.1,59.0 227.2,59.0 228.2,47.5 229.2,56.7 230.2,59.0 231.3,54.4 232.3,54.4 233.3,54.4 234.4,59.0 235.4,54.4 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,56.7 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,54.4 251.8,47.5 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,54.4 258.0,59.0 259.0,59.0 260.1,56.7 261.1,54.4 262.1,59.0 263.1,59.0 264.2,56.7 265.2,59.0 266.2,59.0 267.3,59.0 268.3,56.7 269.3,59.0 270.3,59.0 271.4,54.4 272.4,59.0 273.4,52.1 274.5,54.4 275.5,52.1 276.5,54.4 277.5,59.0 278.6,56.7 279.6,56.7 280.6,47.5 281.7,54.4 282.7,56.7 283.7,59.0 284.7,59.0 285.8,54.4 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">NORFOLK SUB-OFFICE HOLD<\/b><br>5280 HENNEMAN DRIVE<br>NORFOLK, VA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 15<\/b> (2026-01-30)&nbsp;&nbsp;<br><b>Mean:<\/b> 4/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 16<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,49.1 6.1,42.4 7.1,49.1 8.1,42.4 9.1,45.8 10.2,45.8 11.2,59.0 12.2,49.1 13.3,49.1 14.3,42.4 15.3,52.4 16.3,52.4 17.4,55.7 18.4,59.0 19.4,42.4 20.5,49.1 21.5,59.0 22.5,42.4 23.5,39.1 24.6,49.1 25.6,55.7 26.6,49.1 27.7,55.7 28.7,45.8 29.7,49.1 30.7,42.4 31.8,52.4 32.8,59.0 33.8,49.1 34.9,42.4 35.9,52.4 36.9,52.4 37.9,49.1 39.0,55.7 40.0,55.7 41.0,55.7 42.0,42.4 43.1,42.4 44.1,55.7 45.1,22.6 46.2,52.4 47.2,59.0 48.2,45.8 49.2,39.1 50.3,55.7 51.3,49.1 52.3,42.4 53.4,45.8 54.4,59.0 55.4,55.7 56.4,52.4 57.5,52.4 58.5,49.1 59.5,55.7 60.6,55.7 61.6,52.4 62.6,42.4 63.6,42.4 64.7,52.4 65.7,55.7 66.7,52.4 67.8,49.1 68.8,59.0 69.8,45.8 70.8,35.8 71.9,42.4 72.9,49.1 73.9,45.8 75.0,52.4 76.0,59.0 77.0,49.1 78.0,55.7 79.1,55.7 80.1,39.1 81.1,45.8 82.2,52.4 83.2,55.7 84.2,49.1 85.2,49.1 86.3,35.8 87.3,6.0 88.3,59.0 89.4,49.1 90.4,55.7 91.4,49.1 92.4,39.1 93.5,9.3 94.5,55.7 95.5,52.4 96.6,55.7 97.6,59.0 98.6,59.0 99.6,55.7 100.7,45.8 101.7,52.4 102.7,49.1 103.8,45.8 104.8,49.1 105.8,22.6 106.8,35.8 107.9,22.6 108.9,52.4 109.9,52.4 111.0,49.1 112.0,59.0 113.0,45.8 114.0,55.7 115.1,59.0 116.1,39.1 117.1,22.6 118.1,39.1 119.2,49.1 120.2,32.5 121.2,39.1 122.3,32.5 123.3,19.2 124.3,42.4 125.3,59.0 126.4,59.0 127.4,52.4 128.4,45.8 129.5,49.1 130.5,52.4 131.5,35.8 132.5,52.4 133.6,59.0 134.6,22.6 135.6,45.8 136.7,35.8 137.7,42.4 138.7,45.8 139.7,55.7 140.8,59.0 141.8,59.0 142.8,42.4 143.9,39.1 144.9,49.1 145.9,45.8 146.9,52.4 148.0,59.0 149.0,39.1 150.0,32.5 151.1,42.4 152.1,45.8 153.1,35.8 154.1,52.4 155.2,52.4 156.2,52.4 157.2,49.1 158.3,29.2 159.3,39.1 160.3,45.8 161.3,49.1 162.4,52.4 163.4,39.1 164.4,35.8 165.5,45.8 166.5,25.9 167.5,45.8 168.5,55.7 169.6,39.1 170.6,49.1 171.6,55.7 172.7,39.1 173.7,35.8 174.7,52.4 175.7,49.1 176.8,52.4 177.8,39.1 178.8,45.8 179.9,49.1 180.9,45.8 181.9,35.8 182.9,49.1 184.0,49.1 185.0,45.8 186.0,45.8 187.0,42.4 188.1,49.1 189.1,35.8 190.1,55.7 191.2,55.7 192.2,45.8 193.2,35.8 194.2,39.1 195.3,35.8 196.3,32.5 197.3,52.4 198.4,52.4 199.4,55.7 200.4,52.4 201.4,49.1 202.5,45.8 203.5,39.1 204.5,42.4 205.6,52.4 206.6,39.1 207.6,42.4 208.6,42.4 209.7,35.8 210.7,39.1 211.7,52.4 212.8,55.7 213.8,49.1 214.8,35.8 215.8,45.8 216.9,45.8 217.9,39.1 218.9,59.0 220.0,52.4 221.0,52.4 222.0,59.0 223.0,42.4 224.1,52.4 225.1,25.9 226.1,49.1 227.2,55.7 228.2,55.7 229.2,39.1 230.2,35.8 231.3,52.4 232.3,45.8 233.3,49.1 234.4,52.4 235.4,45.8 236.4,45.8 237.4,32.5 238.5,22.6 239.5,45.8 240.5,55.7 241.6,52.4 242.6,45.8 243.6,52.4 244.6,59.0 245.7,35.8 246.7,35.8 247.7,52.4 248.8,59.0 249.8,52.4 250.8,55.7 251.8,39.1 252.9,39.1 253.9,9.3 254.9,52.4 256.0,59.0 257.0,19.2 258.0,45.8 259.0,25.9 260.1,49.1 261.1,35.8 262.1,59.0 263.1,55.7 264.2,39.1 265.2,42.4 266.2,29.2 267.3,29.2 268.3,55.7 269.3,42.4 270.3,49.1 271.4,35.8 272.4,19.2 273.4,35.8 274.5,22.6 275.5,59.0 276.5,52.4 277.5,59.0 278.6,55.7 279.6,55.7 280.6,45.8 281.7,52.4 282.7,55.7 283.7,55.7 284.7,55.7 285.8,42.4 286.8,59.0 287.8,49.1 288.9,35.8 289.9,52.4 290.9,55.7 291.9,55.7 293.0,35.8 294.0,55.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">NW REG JUV DET CTR<\/b><br>145 Fort Collier Rd.<br>Winchester, VA<br><span style=\"color:#666;\">Type: Family/Youth<\/span><br><b>Peak during FY26: 6<\/b> (2025-10-24)&nbsp;&nbsp;<br><b>Mean:<\/b> 4/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 7<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,13.6 5.0,13.6 6.1,13.6 7.1,13.6 8.1,13.6 9.1,13.6 10.2,13.6 11.2,13.6 12.2,13.6 13.3,13.6 14.3,13.6 15.3,13.6 16.3,13.6 17.4,13.6 18.4,13.6 19.4,13.6 20.5,13.6 21.5,13.6 22.5,21.1 23.5,21.1 24.6,21.1 25.6,21.1 26.6,21.1 27.7,21.1 28.7,21.1 29.7,21.1 30.7,21.1 31.8,21.1 32.8,21.1 33.8,21.1 34.9,21.1 35.9,21.1 36.9,21.1 37.9,21.1 39.0,21.1 40.0,21.1 41.0,21.1 42.0,21.1 43.1,21.1 44.1,21.1 45.1,21.1 46.2,21.1 47.2,21.1 48.2,21.1 49.2,21.1 50.3,21.1 51.3,21.1 52.3,21.1 53.4,21.1 54.4,21.1 55.4,21.1 56.4,21.1 57.5,21.1 58.5,21.1 59.5,21.1 60.6,21.1 61.6,21.1 62.6,21.1 63.6,21.1 64.7,6.0 65.7,6.0 66.7,6.0 67.8,13.6 68.8,13.6 69.8,13.6 70.8,13.6 71.9,13.6 72.9,13.6 73.9,13.6 75.0,13.6 76.0,13.6 77.0,13.6 78.0,13.6 79.1,13.6 80.1,13.6 81.1,13.6 82.2,13.6 83.2,13.6 84.2,13.6 85.2,13.6 86.3,13.6 87.3,13.6 88.3,13.6 89.4,21.1 90.4,21.1 91.4,21.1 92.4,21.1 93.5,21.1 94.5,21.1 95.5,28.7 96.6,28.7 97.6,28.7 98.6,28.7 99.6,28.7 100.7,36.3 101.7,36.3 102.7,36.3 103.8,36.3 104.8,36.3 105.8,36.3 106.8,43.9 107.9,43.9 108.9,43.9 109.9,43.9 111.0,43.9 112.0,43.9 113.0,43.9 114.0,43.9 115.1,43.9 116.1,43.9 117.1,43.9 118.1,43.9 119.2,43.9 120.2,43.9 121.2,43.9 122.3,43.9 123.3,43.9 124.3,43.9 125.3,43.9 126.4,36.3 127.4,36.3 128.4,36.3 129.5,36.3 130.5,36.3 131.5,36.3 132.5,36.3 133.6,36.3 134.6,36.3 135.6,36.3 136.7,36.3 137.7,36.3 138.7,28.7 139.7,28.7 140.8,28.7 141.8,28.7 142.8,28.7 143.9,28.7 144.9,28.7 145.9,28.7 146.9,28.7 148.0,28.7 149.0,28.7 150.0,28.7 151.1,28.7 152.1,28.7 153.1,13.6 154.1,13.6 155.2,13.6 156.2,13.6 157.2,13.6 158.3,13.6 159.3,13.6 160.3,13.6 161.3,13.6 162.4,13.6 163.4,13.6 164.4,13.6 165.5,13.6 166.5,13.6 167.5,13.6 168.5,13.6 169.6,13.6 170.6,21.1 171.6,21.1 172.7,21.1 173.7,21.1 174.7,21.1 175.7,21.1 176.8,21.1 177.8,21.1 178.8,21.1 179.9,21.1 180.9,28.7 181.9,28.7 182.9,28.7 184.0,28.7 185.0,28.7 186.0,28.7 187.0,28.7 188.1,28.7 189.1,28.7 190.1,28.7 191.2,28.7 192.2,28.7 193.2,28.7 194.2,28.7 195.3,28.7 196.3,28.7 197.3,28.7 198.4,28.7 199.4,36.3 200.4,36.3 201.4,36.3 202.5,36.3 203.5,36.3 204.5,36.3 205.6,36.3 206.6,36.3 207.6,36.3 208.6,36.3 209.7,36.3 210.7,36.3 211.7,36.3 212.8,36.3 213.8,36.3 214.8,36.3 215.8,36.3 216.9,36.3 217.9,36.3 218.9,36.3 220.0,36.3 221.0,36.3 222.0,36.3 223.0,36.3 224.1,36.3 225.1,36.3 226.1,43.9 227.2,43.9 228.2,43.9 229.2,51.4 230.2,43.9 231.3,43.9 232.3,43.9 233.3,43.9 234.4,43.9 235.4,43.9 236.4,43.9 237.4,43.9 238.5,43.9 239.5,43.9 240.5,43.9 241.6,43.9 242.6,43.9 243.6,43.9 244.6,43.9 245.7,43.9 246.7,43.9 247.7,43.9 248.8,43.9 249.8,43.9 250.8,43.9 251.8,43.9 252.9,43.9 253.9,43.9 254.9,43.9 256.0,43.9 257.0,43.9 258.0,43.9 259.0,43.9 260.1,43.9 261.1,43.9 262.1,43.9 263.1,43.9 264.2,43.9 265.2,43.9 266.2,43.9 267.3,43.9 268.3,43.9 269.3,51.4 270.3,51.4 271.4,51.4 272.4,43.9 273.4,43.9 274.5,43.9 275.5,43.9 276.5,43.9 277.5,43.9 278.6,43.9 279.6,43.9 280.6,43.9 281.7,43.9 282.7,43.9 283.7,43.9 284.7,43.9 285.8,43.9 286.8,43.9 287.8,43.9 288.9,43.9 289.9,43.9 290.9,43.9 291.9,43.9 293.0,43.9 294.0,43.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">NASHVILLE HOLD ROOM<\/b><br>501 Brick Church Park Drive<br>Nashville, TN<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 37<\/b> (2025-12-04)&nbsp;&nbsp;<br><b>Mean:<\/b> 9/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 37<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,57.6 5.0,57.6 6.1,50.4 7.1,57.6 8.1,57.6 9.1,56.1 10.2,57.6 11.2,57.6 12.2,57.6 13.3,51.8 14.3,57.6 15.3,57.6 16.3,57.6 17.4,57.6 18.4,57.6 19.4,40.4 20.5,47.5 21.5,49.0 22.5,57.6 23.5,57.6 24.6,57.6 25.6,57.6 26.6,57.6 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,56.1 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,57.6 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,57.6 115.1,59.0 116.1,59.0 117.1,56.1 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,54.7 129.5,59.0 130.5,59.0 131.5,57.6 132.5,59.0 133.6,57.6 134.6,47.5 135.6,23.2 136.7,50.4 137.7,56.1 138.7,57.6 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,57.6 145.9,59.0 146.9,59.0 148.0,57.6 149.0,57.6 150.0,54.7 151.1,59.0 152.1,49.0 153.1,46.1 154.1,44.7 155.2,46.1 156.2,54.7 157.2,37.5 158.3,30.4 159.3,31.8 160.3,31.8 161.3,57.6 162.4,59.0 163.4,37.5 164.4,43.2 165.5,40.4 166.5,34.6 167.5,44.7 168.5,59.0 169.6,59.0 170.6,50.4 171.6,49.0 172.7,54.7 173.7,47.5 174.7,34.6 175.7,59.0 176.8,53.3 177.8,49.0 178.8,34.6 179.9,30.4 180.9,14.6 181.9,41.8 182.9,59.0 184.0,54.7 185.0,51.8 186.0,49.0 187.0,28.9 188.1,50.4 189.1,44.7 190.1,51.8 191.2,57.6 192.2,43.2 193.2,51.8 194.2,27.5 195.3,6.0 196.3,38.9 197.3,44.7 198.4,43.2 199.4,38.9 200.4,37.5 201.4,24.6 202.5,31.8 203.5,37.5 204.5,28.9 205.6,49.0 206.6,30.4 207.6,38.9 208.6,40.4 209.7,27.5 210.7,34.6 211.7,50.4 212.8,51.8 213.8,47.5 214.8,46.1 215.8,37.5 216.9,59.0 217.9,51.8 218.9,57.6 220.0,49.0 221.0,51.8 222.0,41.8 223.0,37.5 224.1,57.6 225.1,47.5 226.1,49.0 227.2,54.7 228.2,43.2 229.2,37.5 230.2,40.4 231.3,31.8 232.3,37.5 233.3,44.7 234.4,46.1 235.4,47.5 236.4,47.5 237.4,44.7 238.5,34.6 239.5,41.8 240.5,41.8 241.6,51.8 242.6,50.4 243.6,44.7 244.6,46.1 245.7,33.2 246.7,28.9 247.7,50.4 248.8,59.0 249.8,59.0 250.8,47.5 251.8,50.4 252.9,44.7 253.9,33.2 254.9,54.7 256.0,43.2 257.0,44.7 258.0,41.8 259.0,28.9 260.1,34.6 261.1,27.5 262.1,40.4 263.1,49.0 264.2,38.9 265.2,41.8 266.2,41.8 267.3,30.4 268.3,27.5 269.3,46.1 270.3,38.9 271.4,46.1 272.4,43.2 273.4,26.1 274.5,17.5 275.5,33.2 276.5,43.2 277.5,41.8 278.6,33.2 279.6,38.9 280.6,31.8 281.7,40.4 282.7,38.9 283.7,36.1 284.7,43.2 285.8,34.6 286.8,40.4 287.8,8.9 288.9,36.1 289.9,31.8 290.9,41.8 291.9,50.4 293.0,53.3 294.0,44.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">NORTHWEST REG. ADULT DET.<\/b><br>141 Fort Collier Road<br>Winchester, VA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 2<\/b> (2025-10-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 6<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,50.2 6.1,6.0 7.1,14.8 8.1,41.3 9.1,50.2 10.2,50.2 11.2,50.2 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,50.2 17.4,50.2 18.4,50.2 19.4,41.3 20.5,50.2 21.5,41.3 22.5,50.2 23.5,50.2 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,50.2 29.7,50.2 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,50.2 39.0,50.2 40.0,50.2 41.0,50.2 42.0,32.5 43.1,41.3 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,50.2 50.3,50.2 51.3,50.2 52.3,50.2 53.4,50.2 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,41.3 59.5,32.5 60.6,41.3 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,50.2 78.0,50.2 79.1,59.0 80.1,50.2 81.1,50.2 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,50.2 93.5,50.2 94.5,50.2 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,50.2 100.7,50.2 101.7,50.2 102.7,50.2 103.8,41.3 104.8,32.5 105.8,32.5 106.8,59.0 107.9,59.0 108.9,59.0 109.9,50.2 111.0,50.2 112.0,50.2 113.0,50.2 114.0,50.2 115.1,50.2 116.1,59.0 117.1,59.0 118.1,50.2 119.2,50.2 120.2,50.2 121.2,59.0 122.3,50.2 123.3,50.2 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,41.3 132.5,41.3 133.6,59.0 134.6,59.0 135.6,59.0 136.7,50.2 137.7,50.2 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,41.3 145.9,41.3 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,50.2 152.1,50.2 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,50.2 179.9,50.2 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,50.2 196.3,50.2 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,41.3 202.5,41.3 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,50.2 212.8,50.2 213.8,50.2 214.8,59.0 215.8,50.2 216.9,50.2 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,50.2 267.3,32.5 268.3,41.3 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,50.2 275.5,50.2 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,50.2 294.0,41.3\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">NYC HOLD ROOM<\/b><br>26 Federal Plaza, 9th Floor<br>New York, NY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 76<\/b> (2025-12-11)&nbsp;&nbsp;<br><b>Mean:<\/b> 39/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 228<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,51.1 5.0,43.4 6.1,20.6 7.1,9.7 8.1,6.0 9.1,10.4 10.2,28.5 11.2,41.1 12.2,43.2 13.3,29.5 14.3,26.9 15.3,19.9 16.3,26.5 17.4,40.6 18.4,38.3 19.4,23.9 20.5,24.8 21.5,35.5 22.5,39.7 23.5,33.2 24.6,44.4 25.6,47.4 26.6,42.7 27.7,32.7 28.7,27.4 29.7,12.0 30.7,11.3 31.8,27.6 32.8,29.5 33.8,24.8 34.9,18.8 35.9,7.6 36.9,11.3 37.9,17.2 39.0,32.7 40.0,26.5 41.0,27.6 42.0,24.6 43.1,21.1 44.1,29.5 45.1,18.1 46.2,30.2 47.2,32.0 48.2,27.9 49.2,18.1 50.3,14.6 51.3,12.3 52.3,24.1 53.4,27.4 54.4,40.6 55.4,42.0 56.4,39.5 57.5,32.3 58.5,24.8 59.5,19.7 60.6,22.7 61.6,22.7 62.6,25.5 63.6,29.0 64.7,18.3 65.7,19.7 66.7,12.3 67.8,23.7 68.8,29.0 69.8,23.0 70.8,19.9 71.9,23.7 72.9,20.9 73.9,15.8 75.0,34.6 76.0,33.7 77.0,33.7 78.0,35.5 79.1,43.4 80.1,43.2 81.1,48.5 82.2,48.1 83.2,47.1 84.2,40.2 85.2,39.2 86.3,44.1 87.3,42.3 88.3,42.0 89.4,54.6 90.4,51.6 91.4,53.9 92.4,51.1 93.5,51.1 94.5,51.1 95.5,52.5 96.6,53.0 97.6,55.0 98.6,55.7 99.6,53.2 100.7,48.3 101.7,48.8 102.7,48.5 103.8,55.3 104.8,53.7 105.8,47.1 106.8,49.2 107.9,49.7 108.9,50.6 109.9,53.0 111.0,51.8 112.0,53.2 113.0,52.7 114.0,50.2 115.1,51.3 116.1,51.3 117.1,51.8 118.1,53.4 119.2,56.0 120.2,52.3 121.2,47.4 122.3,50.9 123.3,50.6 124.3,52.3 125.3,56.7 126.4,56.2 127.4,52.3 128.4,51.8 129.5,49.0 130.5,50.6 131.5,51.8 132.5,55.3 133.6,57.4 134.6,52.3 135.6,46.7 136.7,49.5 137.7,48.3 138.7,46.4 139.7,52.7 140.8,55.7 141.8,55.7 142.8,49.9 143.9,48.3 144.9,49.9 145.9,49.2 146.9,52.5 148.0,53.4 149.0,51.6 150.0,48.8 151.1,51.3 152.1,46.7 153.1,50.2 154.1,54.6 155.2,45.5 156.2,46.0 157.2,45.3 158.3,44.8 159.3,44.4 160.3,45.3 161.3,47.4 162.4,46.9 163.4,48.1 164.4,44.8 165.5,45.3 166.5,48.1 167.5,48.1 168.5,46.7 169.6,49.9 170.6,46.2 171.6,49.5 172.7,45.8 173.7,48.5 174.7,48.5 175.7,50.4 176.8,50.6 177.8,47.4 178.8,43.0 179.9,44.1 180.9,47.1 181.9,48.8 182.9,54.4 184.0,50.9 185.0,49.0 186.0,44.6 187.0,46.4 188.1,54.4 189.1,55.3 190.1,56.0 191.2,56.9 192.2,49.0 193.2,46.7 194.2,47.6 195.3,45.8 196.3,46.9 197.3,52.0 198.4,51.3 199.4,47.6 200.4,45.5 201.4,49.0 202.5,41.3 203.5,43.2 204.5,51.8 205.6,50.6 206.6,46.2 207.6,46.9 208.6,47.1 209.7,48.8 210.7,50.6 211.7,50.4 212.8,49.2 213.8,48.8 214.8,48.8 215.8,50.9 216.9,56.7 217.9,53.4 218.9,56.7 220.0,55.5 221.0,47.8 222.0,46.2 223.0,47.6 224.1,52.0 225.1,51.6 226.1,49.0 227.2,56.2 228.2,51.3 229.2,51.3 230.2,52.5 231.3,49.5 232.3,50.2 233.3,53.4 234.4,52.3 235.4,51.6 236.4,49.0 237.4,50.4 238.5,51.1 239.5,51.3 240.5,53.0 241.6,54.1 242.6,51.6 243.6,51.6 244.6,49.2 245.7,50.2 246.7,52.0 247.7,51.8 248.8,54.8 249.8,57.6 250.8,52.0 251.8,51.3 252.9,47.1 253.9,54.8 254.9,51.8 256.0,53.9 257.0,51.8 258.0,52.5 259.0,53.9 260.1,50.4 261.1,50.4 262.1,55.5 263.1,57.4 264.2,55.0 265.2,53.4 266.2,49.5 267.3,51.3 268.3,51.8 269.3,53.9 270.3,55.5 271.4,55.3 272.4,52.7 273.4,54.4 274.5,52.5 275.5,53.7 276.5,54.8 277.5,57.1 278.6,58.3 279.6,55.5 280.6,50.6 281.7,51.6 282.7,53.4 283.7,55.5 284.7,55.0 285.8,52.0 286.8,51.8 287.8,52.3 288.9,47.4 289.9,50.9 290.9,55.0 291.9,56.2 293.0,51.6 294.0,49.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">OAKDALE HOLDING ROOM<\/b><br>1010 E WHATLEY ROAD<br>OAKDALE, LA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 48<\/b> (2025-12-12)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 48<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,53.5 26.6,53.5 27.7,59.0 28.7,59.0 29.7,57.9 30.7,57.9 31.8,59.0 32.8,57.9 33.8,59.0 34.9,57.9 35.9,57.9 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,56.8 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,56.8 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,57.9 107.9,57.9 108.9,59.0 109.9,43.5 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,57.9 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,56.8 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,57.9 159.3,57.9 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,56.8 169.6,59.0 170.6,59.0 171.6,57.9 172.7,56.8 173.7,59.0 174.7,57.9 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,53.5 180.9,56.8 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,52.4 195.3,59.0 196.3,57.9 197.3,57.9 198.4,56.8 199.4,59.0 200.4,59.0 201.4,57.9 202.5,59.0 203.5,6.0 204.5,30.3 205.6,59.0 206.6,56.8 207.6,54.6 208.6,55.7 209.7,54.6 210.7,55.7 211.7,57.9 212.8,59.0 213.8,54.6 214.8,53.5 215.8,59.0 216.9,59.0 217.9,52.4 218.9,59.0 220.0,59.0 221.0,57.9 222.0,53.5 223.0,54.6 224.1,59.0 225.1,56.8 226.1,57.9 227.2,57.9 228.2,57.9 229.2,56.8 230.2,52.4 231.3,57.9 232.3,56.8 233.3,55.7 234.4,57.9 235.4,54.6 236.4,57.9 237.4,52.4 238.5,57.9 239.5,56.8 240.5,59.0 241.6,57.9 242.6,51.3 243.6,49.1 244.6,54.6 245.7,57.9 246.7,56.8 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,45.8 253.9,56.8 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,57.9 261.1,53.5 262.1,59.0 263.1,59.0 264.2,52.4 265.2,59.0 266.2,57.9 267.3,57.9 268.3,54.6 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,55.7 274.5,57.9 275.5,55.7 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,57.9 282.7,55.7 283.7,59.0 284.7,59.0 285.8,59.0 286.8,57.9 287.8,56.8 288.9,54.6 289.9,54.6 290.9,59.0 291.9,59.0 293.0,59.0 294.0,55.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">OGDEN HOLD ROOM<\/b><br>2487 S. 1620 W., UNIT E.<br>OGDEN, UT<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 9<\/b> (2025-12-23)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 13<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,46.8 6.1,46.8 7.1,46.8 8.1,59.0 9.1,54.9 10.2,59.0 11.2,59.0 12.2,59.0 13.3,46.8 14.3,54.9 15.3,46.8 16.3,50.8 17.4,59.0 18.4,50.8 19.4,59.0 20.5,59.0 21.5,50.8 22.5,42.7 23.5,46.8 24.6,54.9 25.6,59.0 26.6,54.9 27.7,46.8 28.7,50.8 29.7,38.6 30.7,34.5 31.8,59.0 32.8,54.9 33.8,42.7 34.9,42.7 35.9,50.8 36.9,54.9 37.9,59.0 39.0,59.0 40.0,59.0 41.0,50.8 42.0,59.0 43.1,38.6 44.1,46.8 45.1,42.7 46.2,59.0 47.2,59.0 48.2,50.8 49.2,50.8 50.3,46.8 51.3,50.8 52.3,30.5 53.4,59.0 54.4,59.0 55.4,54.9 56.4,54.9 57.5,46.8 58.5,50.8 59.5,38.6 60.6,59.0 61.6,54.9 62.6,54.9 63.6,59.0 64.7,50.8 65.7,46.8 66.7,38.6 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,50.8 72.9,38.6 73.9,38.6 75.0,59.0 76.0,38.6 77.0,42.7 78.0,42.7 79.1,50.8 80.1,42.7 81.1,59.0 82.2,59.0 83.2,59.0 84.2,50.8 85.2,38.6 86.3,34.5 87.3,46.8 88.3,38.6 89.4,59.0 90.4,46.8 91.4,59.0 92.4,34.5 93.5,50.8 94.5,54.9 95.5,50.8 96.6,54.9 97.6,46.8 98.6,50.8 99.6,54.9 100.7,50.8 101.7,38.6 102.7,59.0 103.8,59.0 104.8,50.8 105.8,54.9 106.8,59.0 107.9,42.7 108.9,50.8 109.9,54.9 111.0,59.0 112.0,54.9 113.0,42.7 114.0,59.0 115.1,50.8 116.1,42.7 117.1,54.9 118.1,59.0 119.2,54.9 120.2,38.6 121.2,6.0 122.3,14.2 123.3,59.0 124.3,54.9 125.3,59.0 126.4,50.8 127.4,42.7 128.4,54.9 129.5,42.7 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,50.8 135.6,54.9 136.7,54.9 137.7,54.9 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,54.9 143.9,50.8 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,54.9 150.0,46.8 151.1,46.8 152.1,54.9 153.1,46.8 154.1,42.7 155.2,54.9 156.2,26.4 157.2,54.9 158.3,59.0 159.3,42.7 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,50.8 165.5,50.8 166.5,34.5 167.5,54.9 168.5,59.0 169.6,59.0 170.6,50.8 171.6,50.8 172.7,50.8 173.7,50.8 174.7,59.0 175.7,59.0 176.8,59.0 177.8,54.9 178.8,50.8 179.9,46.8 180.9,54.9 181.9,42.7 182.9,59.0 184.0,59.0 185.0,46.8 186.0,34.5 187.0,50.8 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,54.9 193.2,50.8 194.2,42.7 195.3,38.6 196.3,50.8 197.3,54.9 198.4,59.0 199.4,42.7 200.4,50.8 201.4,50.8 202.5,54.9 203.5,59.0 204.5,59.0 205.6,59.0 206.6,54.9 207.6,46.8 208.6,50.8 209.7,42.7 210.7,46.8 211.7,59.0 212.8,59.0 213.8,42.7 214.8,22.3 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,46.8 222.0,54.9 223.0,54.9 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,54.9 229.2,59.0 230.2,54.9 231.3,42.7 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,54.9 237.4,46.8 238.5,50.8 239.5,54.9 240.5,59.0 241.6,59.0 242.6,54.9 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,54.9 249.8,54.9 250.8,59.0 251.8,50.8 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,46.8 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,54.9 265.2,59.0 266.2,54.9 267.3,50.8 268.3,59.0 269.3,59.0 270.3,59.0 271.4,54.9 272.4,59.0 273.4,54.9 274.5,59.0 275.5,50.8 276.5,59.0 277.5,59.0 278.6,54.9 279.6,42.7 280.6,59.0 281.7,50.8 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,42.7 289.9,50.8 290.9,54.9 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">OKLAHOMA CITY HOLD ROOM.<\/b><br>4400 SW 44TH STREET<br>OKLAHOMA CITY, OK<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 74<\/b> (2025-11-17)&nbsp;&nbsp;<br><b>Mean:<\/b> 19/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 79<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,53.6 6.1,50.9 7.1,37.5 8.1,44.9 9.1,51.6 10.2,56.3 11.2,57.7 12.2,52.3 13.3,46.9 14.3,48.3 15.3,53.6 16.3,52.3 17.4,56.3 18.4,53.6 19.4,50.3 20.5,45.6 21.5,51.6 22.5,54.3 23.5,45.6 24.6,51.6 25.6,47.6 26.6,38.9 27.7,53.6 28.7,50.9 29.7,47.6 30.7,54.3 31.8,55.0 32.8,55.0 33.8,53.0 34.9,46.9 35.9,49.6 36.9,48.9 37.9,57.0 39.0,55.0 40.0,57.7 41.0,53.6 42.0,55.0 43.1,48.9 44.1,51.6 45.1,48.9 46.2,54.3 47.2,59.0 48.2,50.3 49.2,53.6 50.3,52.3 51.3,48.9 52.3,48.9 53.4,59.0 54.4,58.3 55.4,51.6 56.4,49.6 57.5,45.6 58.5,47.6 59.5,48.9 60.6,55.0 61.6,57.0 62.6,45.6 63.6,53.6 64.7,48.3 65.7,50.3 66.7,50.3 67.8,58.3 68.8,57.0 69.8,56.3 70.8,46.3 71.9,46.3 72.9,49.6 73.9,53.0 75.0,59.0 76.0,58.3 77.0,51.6 78.0,53.0 79.1,42.9 80.1,40.9 81.1,44.9 82.2,55.6 83.2,57.0 84.2,52.3 85.2,42.9 86.3,50.3 87.3,44.9 88.3,50.9 89.4,57.0 90.4,58.3 91.4,52.3 92.4,47.6 93.5,46.3 94.5,50.9 95.5,47.6 96.6,57.7 97.6,59.0 98.6,46.3 99.6,47.6 100.7,40.9 101.7,32.8 102.7,43.6 103.8,57.0 104.8,50.9 105.8,38.2 106.8,45.6 107.9,36.2 108.9,38.2 109.9,40.9 111.0,54.3 112.0,54.3 113.0,48.3 114.0,26.8 115.1,43.6 116.1,46.9 117.1,48.3 118.1,59.0 119.2,58.3 120.2,47.6 121.2,14.7 122.3,6.0 123.3,15.4 124.3,47.6 125.3,59.0 126.4,57.0 127.4,43.6 128.4,36.2 129.5,45.6 130.5,47.6 131.5,54.3 132.5,55.6 133.6,55.6 134.6,43.6 135.6,50.3 136.7,34.2 137.7,46.9 138.7,41.6 139.7,58.3 140.8,57.0 141.8,37.5 142.8,44.2 143.9,44.9 144.9,48.9 145.9,47.6 146.9,57.7 148.0,58.3 149.0,42.2 150.0,40.2 151.1,26.8 152.1,42.2 153.1,41.6 154.1,56.3 155.2,57.0 156.2,38.2 157.2,40.9 158.3,39.5 159.3,27.5 160.3,48.3 161.3,53.0 162.4,53.6 163.4,42.9 164.4,31.5 165.5,40.9 166.5,40.2 167.5,46.3 168.5,55.0 169.6,55.6 170.6,38.2 171.6,48.9 172.7,44.9 173.7,40.9 174.7,48.9 175.7,55.6 176.8,57.7 177.8,9.4 178.8,16.1 179.9,38.2 180.9,41.6 181.9,46.9 182.9,55.0 184.0,54.3 185.0,38.2 186.0,42.2 187.0,41.6 188.1,51.6 189.1,54.3 190.1,57.7 191.2,56.3 192.2,38.9 193.2,39.5 194.2,49.6 195.3,46.9 196.3,48.9 197.3,54.3 198.4,57.0 199.4,43.6 200.4,34.8 201.4,41.6 202.5,40.2 203.5,48.9 204.5,57.7 205.6,56.3 206.6,42.9 207.6,48.9 208.6,39.5 209.7,40.2 210.7,46.3 211.7,53.0 212.8,55.6 213.8,44.2 214.8,48.9 215.8,50.3 216.9,57.7 217.9,50.9 218.9,56.3 220.0,55.6 221.0,40.2 222.0,39.5 223.0,39.5 224.1,36.9 225.1,50.9 226.1,57.0 227.2,54.3 228.2,42.9 229.2,48.3 230.2,46.9 231.3,49.6 232.3,44.2 233.3,54.3 234.4,55.0 235.4,37.5 236.4,44.9 237.4,26.8 238.5,12.0 239.5,37.5 240.5,52.3 241.6,49.6 242.6,38.9 243.6,48.9 244.6,53.0 245.7,46.9 246.7,45.6 247.7,57.0 248.8,57.0 249.8,57.0 250.8,57.0 251.8,44.2 252.9,44.2 253.9,44.9 254.9,48.9 256.0,55.6 257.0,31.5 258.0,42.2 259.0,49.6 260.1,48.9 261.1,46.9 262.1,53.6 263.1,57.0 264.2,40.2 265.2,42.2 266.2,46.3 267.3,38.2 268.3,41.6 269.3,52.3 270.3,54.3 271.4,32.8 272.4,26.8 273.4,50.9 274.5,42.9 275.5,50.3 276.5,55.6 277.5,56.3 278.6,38.9 279.6,48.9 280.6,47.6 281.7,42.9 282.7,47.6 283.7,54.3 284.7,57.7 285.8,31.5 286.8,48.3 287.8,43.6 288.9,46.9 289.9,48.3 290.9,55.0 291.9,57.7 293.0,40.9 294.0,39.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">LASALLE CORR CTR OLLA<\/b><br>15976 Hwy 165<br>Olla, LA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 2<\/b> (2025-12-14)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,32.5 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,6.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">OMAHA FO HOLD<\/b><br>2323 AVENUE J<br>OMAHA, NE<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 72<\/b> (2025-11-08)&nbsp;&nbsp;<br><b>Mean:<\/b> 14/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 72<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,34.0 5.0,57.5 6.1,59.0 7.1,22.9 8.1,52.4 9.1,59.0 10.2,59.0 11.2,36.9 12.2,58.3 13.3,15.6 14.3,7.5 15.3,14.8 16.3,59.0 17.4,59.0 18.4,18.5 19.4,58.3 20.5,58.3 21.5,31.8 22.5,59.0 23.5,59.0 24.6,59.0 25.6,36.2 26.6,59.0 27.7,59.0 28.7,36.2 29.7,56.8 30.7,59.0 31.8,59.0 32.8,59.0 33.8,21.5 34.9,58.3 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,17.8 41.0,54.6 42.0,58.3 43.1,37.7 44.1,59.0 45.1,59.0 46.2,59.0 47.2,32.5 48.2,54.6 49.2,59.0 50.3,39.1 51.3,59.0 52.3,59.0 53.4,59.0 54.4,25.9 55.4,59.0 56.4,59.0 57.5,42.1 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,33.2 65.7,56.8 66.7,59.0 67.8,39.1 68.8,59.0 69.8,58.3 70.8,58.3 71.9,25.1 72.9,59.0 73.9,59.0 75.0,26.6 76.0,56.8 77.0,56.8 78.0,53.1 79.1,20.7 80.1,53.1 81.1,55.3 82.2,24.4 83.2,55.3 84.2,55.3 85.2,57.5 86.3,24.4 87.3,59.0 88.3,59.0 89.4,59.0 90.4,20.0 91.4,58.3 92.4,58.3 93.5,36.2 94.5,59.0 95.5,59.0 96.6,26.6 97.6,58.3 98.6,59.0 99.6,58.3 100.7,38.4 101.7,58.3 102.7,58.3 103.8,19.2 104.8,58.3 105.8,59.0 106.8,57.5 107.9,15.6 108.9,59.0 109.9,59.0 111.0,16.3 112.0,59.0 113.0,59.0 114.0,56.8 115.1,25.9 116.1,56.8 117.1,57.5 118.1,25.9 119.2,59.0 120.2,59.0 121.2,57.5 122.3,19.2 123.3,59.0 124.3,59.0 125.3,43.5 126.4,59.0 127.4,58.3 128.4,59.0 129.5,25.9 130.5,59.0 131.5,59.0 132.5,36.2 133.6,59.0 134.6,59.0 135.6,59.0 136.7,30.3 137.7,59.0 138.7,59.0 139.7,25.1 140.8,59.0 141.8,59.0 142.8,59.0 143.9,42.8 144.9,59.0 145.9,59.0 146.9,19.2 148.0,59.0 149.0,59.0 150.0,59.0 151.1,57.5 152.1,59.0 153.1,59.0 154.1,11.9 155.2,59.0 156.2,58.3 157.2,59.0 158.3,41.3 159.3,59.0 160.3,59.0 161.3,25.9 162.4,59.0 163.4,59.0 164.4,42.8 165.5,43.5 166.5,57.5 167.5,57.5 168.5,6.0 169.6,59.0 170.6,52.4 171.6,59.0 172.7,43.5 173.7,58.3 174.7,59.0 175.7,13.4 176.8,42.8 177.8,56.8 178.8,58.3 179.9,46.5 180.9,53.8 181.9,57.5 182.9,11.9 184.0,19.2 185.0,59.0 186.0,15.6 187.0,31.0 188.1,59.0 189.1,59.0 190.1,58.3 191.2,58.3 192.2,59.0 193.2,30.3 194.2,58.3 195.3,59.0 196.3,31.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,36.2 201.4,59.0 202.5,59.0 203.5,17.8 204.5,58.3 205.6,59.0 206.6,31.8 207.6,26.6 208.6,56.8 209.7,56.8 210.7,22.9 211.7,39.1 212.8,58.3 213.8,58.3 214.8,28.1 215.8,59.0 216.9,59.0 217.9,42.1 218.9,58.3 220.0,58.3 221.0,58.3 222.0,40.6 223.0,58.3 224.1,58.3 225.1,25.9 226.1,58.3 227.2,58.3 228.2,59.0 229.2,28.1 230.2,58.3 231.3,59.0 232.3,9.7 233.3,38.4 234.4,58.3 235.4,57.5 236.4,22.9 237.4,57.5 238.5,58.3 239.5,29.6 240.5,46.5 241.6,59.0 242.6,58.3 243.6,23.7 244.6,59.0 245.7,59.0 246.7,6.7 247.7,58.3 248.8,59.0 249.8,59.0 250.8,33.2 251.8,59.0 252.9,58.3 253.9,20.0 254.9,56.1 256.0,56.8 257.0,56.1 258.0,36.2 259.0,58.3 260.1,58.3 261.1,18.5 262.1,56.1 263.1,59.0 264.2,56.8 265.2,29.6 266.2,58.3 267.3,59.0 268.3,22.2 269.3,59.0 270.3,59.0 271.4,52.4 272.4,29.6 273.4,58.3 274.5,59.0 275.5,59.0 276.5,59.0 277.5,20.0 278.6,52.4 279.6,26.6 280.6,59.0 281.7,55.3 282.7,26.6 283.7,58.3 284.7,59.0 285.8,59.0 286.8,36.2 287.8,58.3 288.9,59.0 289.9,11.9 290.9,59.0 291.9,59.0 293.0,59.0 294.0,32.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ORLANDO HOLD ROOM<\/b><br>9403 TRADEPORT DRIVE<br>ORLANDO, FL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 100<\/b> (2025-12-19)&nbsp;&nbsp;<br><b>Mean:<\/b> 48/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 126<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,52.3 5.0,49.3 6.1,22.8 7.1,6.0 8.1,29.1 9.1,40.5 10.2,47.6 11.2,51.8 12.2,42.6 13.3,51.0 14.3,44.3 15.3,54.8 16.3,44.7 17.4,56.9 18.4,59.0 19.4,51.8 20.5,46.4 21.5,48.1 22.5,47.2 23.5,47.2 24.6,49.7 25.6,47.6 26.6,45.1 27.7,45.1 28.7,46.4 29.7,48.1 30.7,46.4 31.8,57.3 32.8,48.9 33.8,41.3 34.9,40.5 35.9,41.3 36.9,42.6 37.9,35.9 39.0,49.3 40.0,44.7 41.0,38.4 42.0,40.5 43.1,52.3 44.1,41.3 45.1,41.3 46.2,27.0 47.2,40.5 48.2,52.3 49.2,34.2 50.3,41.3 51.3,40.9 52.3,37.5 53.4,45.5 54.4,45.5 55.4,27.9 56.4,37.1 57.5,40.1 58.5,28.3 59.5,38.0 60.6,48.5 61.6,50.2 62.6,42.6 63.6,51.0 64.7,40.1 65.7,43.0 66.7,47.2 67.8,46.0 68.8,47.6 69.8,42.2 70.8,44.7 71.9,44.7 72.9,40.9 73.9,36.3 75.0,40.5 76.0,48.9 77.0,50.6 78.0,51.4 79.1,51.8 80.1,43.0 81.1,40.9 82.2,46.0 83.2,53.5 84.2,51.0 85.2,49.3 86.3,45.5 87.3,30.0 88.3,35.4 89.4,53.1 90.4,46.8 91.4,50.2 92.4,50.2 93.5,48.5 94.5,43.0 95.5,34.2 96.6,47.2 97.6,47.6 98.6,32.5 99.6,40.5 100.7,47.2 101.7,44.3 102.7,42.6 103.8,43.9 104.8,44.7 105.8,37.5 106.8,51.8 107.9,35.0 108.9,38.0 109.9,43.9 111.0,47.2 112.0,44.7 113.0,46.4 114.0,50.2 115.1,41.3 116.1,50.2 117.1,39.7 118.1,51.0 119.2,50.6 120.2,43.9 121.2,37.5 122.3,35.4 123.3,41.3 124.3,38.0 125.3,23.2 126.4,51.4 127.4,45.1 128.4,44.7 129.5,43.4 130.5,43.0 131.5,41.8 132.5,52.3 133.6,48.1 134.6,50.2 135.6,41.3 136.7,49.3 137.7,44.7 138.7,44.7 139.7,54.8 140.8,53.1 141.8,45.5 142.8,48.1 143.9,43.4 144.9,47.6 145.9,38.4 146.9,49.7 148.0,47.6 149.0,48.9 150.0,45.1 151.1,44.3 152.1,45.5 153.1,40.1 154.1,40.1 155.2,41.3 156.2,45.1 157.2,46.8 158.3,37.5 159.3,47.6 160.3,40.9 161.3,45.5 162.4,55.2 163.4,40.9 164.4,41.3 165.5,45.1 166.5,35.4 167.5,47.6 168.5,38.8 169.6,51.4 170.6,36.7 171.6,35.4 172.7,31.2 173.7,35.4 174.7,32.5 175.7,51.4 176.8,50.2 177.8,36.7 178.8,49.7 179.9,42.6 180.9,47.6 181.9,43.0 182.9,39.7 184.0,43.0 185.0,28.3 186.0,42.2 187.0,36.3 188.1,54.4 189.1,36.7 190.1,36.7 191.2,44.7 192.2,46.8 193.2,49.7 194.2,45.5 195.3,40.5 196.3,38.4 197.3,45.5 198.4,41.8 199.4,46.8 200.4,39.7 201.4,35.0 202.5,30.8 203.5,32.5 204.5,36.7 205.6,34.2 206.6,22.8 207.6,33.8 208.6,27.5 209.7,40.5 210.7,16.9 211.7,38.4 212.8,34.6 213.8,25.3 214.8,42.6 215.8,33.8 216.9,36.7 217.9,47.2 218.9,43.9 220.0,42.6 221.0,47.6 222.0,45.1 223.0,46.4 224.1,50.2 225.1,38.4 226.1,40.5 227.2,42.6 228.2,34.6 229.2,38.4 230.2,36.7 231.3,45.1 232.3,26.2 233.3,31.7 234.4,34.2 235.4,21.1 236.4,35.9 237.4,24.1 238.5,22.8 239.5,30.8 240.5,28.7 241.6,32.9 242.6,37.5 243.6,22.8 244.6,32.1 245.7,34.6 246.7,19.9 247.7,25.3 248.8,27.5 249.8,24.5 250.8,31.7 251.8,30.4 252.9,29.6 253.9,25.3 254.9,28.3 256.0,32.1 257.0,25.3 258.0,27.5 259.0,25.8 260.1,35.0 261.1,33.3 262.1,46.8 263.1,43.0 264.2,41.3 265.2,42.2 266.2,36.7 267.3,46.0 268.3,39.7 269.3,48.9 270.3,40.5 271.4,43.4 272.4,51.0 273.4,49.3 274.5,46.4 275.5,47.6 276.5,51.0 277.5,45.5 278.6,49.7 279.6,49.3 280.6,40.9 281.7,38.0 282.7,39.2 283.7,42.2 284.7,49.7 285.8,45.5 286.8,49.3 287.8,39.2 288.9,48.5 289.9,35.9 290.9,49.7 291.9,41.3 293.0,44.7 294.0,46.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">OSCEOLA COUNTY JAIL<\/b><br>402 Simpson Road<br>Kissimmee, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 6<\/b> (2025-11-18)&nbsp;&nbsp;<br><b>Mean:<\/b> 4/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 14<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,47.6 5.0,43.9 6.1,36.3 7.1,36.3 8.1,24.9 9.1,32.5 10.2,28.7 11.2,43.9 12.2,43.9 13.3,43.9 14.3,28.7 15.3,36.3 16.3,32.5 17.4,51.4 18.4,47.6 19.4,43.9 20.5,40.1 21.5,43.9 22.5,32.5 23.5,21.1 24.6,6.0 25.6,17.4 26.6,43.9 27.7,32.5 28.7,32.5 29.7,28.7 30.7,43.9 31.8,43.9 32.8,40.1 33.8,36.3 34.9,28.7 35.9,32.5 36.9,36.3 37.9,40.1 39.0,40.1 40.0,47.6 41.0,40.1 42.0,32.5 43.1,36.3 44.1,36.3 45.1,43.9 46.2,43.9 47.2,47.6 48.2,36.3 49.2,36.3 50.3,47.6 51.3,40.1 52.3,40.1 53.4,47.6 54.4,43.9 55.4,40.1 56.4,36.3 57.5,47.6 58.5,36.3 59.5,32.5 60.6,32.5 61.6,43.9 62.6,47.6 63.6,47.6 64.7,40.1 65.7,13.6 66.7,17.4 67.8,13.6 68.8,43.9 69.8,43.9 70.8,40.1 71.9,43.9 72.9,43.9 73.9,43.9 75.0,43.9 76.0,43.9 77.0,47.6 78.0,47.6 79.1,47.6 80.1,36.3 81.1,32.5 82.2,40.1 83.2,36.3 84.2,40.1 85.2,47.6 86.3,36.3 87.3,28.7 88.3,36.3 89.4,32.5 90.4,43.9 91.4,43.9 92.4,47.6 93.5,43.9 94.5,28.7 95.5,24.9 96.6,43.9 97.6,40.1 98.6,43.9 99.6,40.1 100.7,28.7 101.7,21.1 102.7,21.1 103.8,28.7 104.8,28.7 105.8,43.9 106.8,47.6 107.9,47.6 108.9,47.6 109.9,47.6 111.0,47.6 112.0,47.6 113.0,47.6 114.0,47.6 115.1,47.6 116.1,47.6 117.1,47.6 118.1,47.6 119.2,47.6 120.2,47.6 121.2,47.6 122.3,47.6 123.3,47.6 124.3,47.6 125.3,47.6 126.4,47.6 127.4,47.6 128.4,47.6 129.5,47.6 130.5,43.9 131.5,43.9 132.5,43.9 133.6,43.9 134.6,43.9 135.6,43.9 136.7,43.9 137.7,43.9 138.7,43.9 139.7,43.9 140.8,43.9 141.8,43.9 142.8,43.9 143.9,43.9 144.9,43.9 145.9,43.9 146.9,43.9 148.0,43.9 149.0,43.9 150.0,43.9 151.1,43.9 152.1,43.9 153.1,40.1 154.1,43.9 155.2,43.9 156.2,43.9 157.2,43.9 158.3,43.9 159.3,43.9 160.3,43.9 161.3,43.9 162.4,43.9 163.4,43.9 164.4,43.9 165.5,43.9 166.5,43.9 167.5,43.9 168.5,43.9 169.6,43.9 170.6,43.9 171.6,43.9 172.7,43.9 173.7,43.9 174.7,43.9 175.7,43.9 176.8,40.1 177.8,40.1 178.8,36.3 179.9,36.3 180.9,36.3 181.9,36.3 182.9,43.9 184.0,43.9 185.0,43.9 186.0,47.6 187.0,47.6 188.1,47.6 189.1,47.6 190.1,47.6 191.2,47.6 192.2,47.6 193.2,47.6 194.2,47.6 195.3,47.6 196.3,47.6 197.3,47.6 198.4,47.6 199.4,47.6 200.4,47.6 201.4,47.6 202.5,47.6 203.5,47.6 204.5,47.6 205.6,47.6 206.6,47.6 207.6,47.6 208.6,47.6 209.7,43.9 210.7,43.9 211.7,43.9 212.8,47.6 213.8,47.6 214.8,47.6 215.8,47.6 216.9,47.6 217.9,47.6 218.9,47.6 220.0,47.6 221.0,47.6 222.0,47.6 223.0,43.9 224.1,43.9 225.1,40.1 226.1,40.1 227.2,43.9 228.2,43.9 229.2,47.6 230.2,47.6 231.3,47.6 232.3,47.6 233.3,47.6 234.4,47.6 235.4,47.6 236.4,47.6 237.4,47.6 238.5,47.6 239.5,43.9 240.5,43.9 241.6,43.9 242.6,43.9 243.6,47.6 244.6,47.6 245.7,47.6 246.7,47.6 247.7,43.9 248.8,43.9 249.8,43.9 250.8,43.9 251.8,40.1 252.9,40.1 253.9,40.1 254.9,36.3 256.0,47.6 257.0,47.6 258.0,47.6 259.0,47.6 260.1,47.6 261.1,47.6 262.1,47.6 263.1,47.6 264.2,47.6 265.2,47.6 266.2,47.6 267.3,47.6 268.3,47.6 269.3,47.6 270.3,47.6 271.4,47.6 272.4,47.6 273.4,47.6 274.5,47.6 275.5,47.6 276.5,47.6 277.5,47.6 278.6,47.6 279.6,47.6 280.6,47.6 281.7,47.6 282.7,47.6 283.7,47.6 284.7,47.6 285.8,47.6 286.8,47.6 287.8,47.6 288.9,47.6 289.9,47.6 290.9,47.6 291.9,47.6 293.0,47.6 294.0,47.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PALM BEACH COUNTY JAIL<\/b><br>3228 Gun Club Road<br>West Palm Beach, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 9<\/b> (2026-01-04)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 9<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,35.4 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,47.2 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,41.3 75.0,47.2 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,6.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,47.2 242.6,47.2 243.6,47.2 244.6,53.1 245.7,53.1 246.7,53.1 247.7,53.1 248.8,53.1 249.8,53.1 250.8,53.1 251.8,53.1 252.9,53.1 253.9,53.1 254.9,53.1 256.0,53.1 257.0,53.1 258.0,53.1 259.0,53.1 260.1,53.1 261.1,53.1 262.1,53.1 263.1,53.1 264.2,53.1 265.2,53.1 266.2,53.1 267.3,53.1 268.3,53.1 269.3,53.1 270.3,53.1 271.4,53.1 272.4,53.1 273.4,53.1 274.5,53.1 275.5,53.1 276.5,53.1 277.5,53.1 278.6,53.1 279.6,53.1 280.6,53.1 281.7,53.1 282.7,53.1 283.7,53.1 284.7,53.1 285.8,53.1 286.8,53.1 287.8,53.1 288.9,53.1 289.9,53.1 290.9,53.1 291.9,53.1 293.0,53.1 294.0,53.1\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PECOS HOLD ROOM<\/b><br>250 EAST PALMER ROAD<br>PECOS, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 15<\/b> (2025-12-12)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 28<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,32.5 6.1,59.0 7.1,40.1 8.1,51.4 9.1,55.2 10.2,59.0 11.2,59.0 12.2,57.1 13.3,57.1 14.3,59.0 15.3,57.1 16.3,55.2 17.4,59.0 18.4,59.0 19.4,55.2 20.5,51.4 21.5,59.0 22.5,59.0 23.5,55.2 24.6,59.0 25.6,59.0 26.6,45.8 27.7,59.0 28.7,59.0 29.7,57.1 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,57.1 35.9,55.2 36.9,57.1 37.9,59.0 39.0,59.0 40.0,59.0 41.0,57.1 42.0,57.1 43.1,59.0 44.1,51.4 45.1,57.1 46.2,59.0 47.2,59.0 48.2,57.1 49.2,49.5 50.3,55.2 51.3,49.5 52.3,53.3 53.4,59.0 54.4,59.0 55.4,55.2 56.4,55.2 57.5,57.1 58.5,51.4 59.5,59.0 60.6,59.0 61.6,59.0 62.6,55.2 63.6,59.0 64.7,59.0 65.7,55.2 66.7,6.0 67.8,57.1 68.8,59.0 69.8,55.2 70.8,59.0 71.9,55.2 72.9,57.1 73.9,59.0 75.0,59.0 76.0,59.0 77.0,57.1 78.0,57.1 79.1,59.0 80.1,55.2 81.1,57.1 82.2,57.1 83.2,59.0 84.2,59.0 85.2,45.8 86.3,59.0 87.3,59.0 88.3,55.2 89.4,59.0 90.4,59.0 91.4,55.2 92.4,59.0 93.5,59.0 94.5,26.8 95.5,57.1 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,57.1 101.7,57.1 102.7,59.0 103.8,57.1 104.8,59.0 105.8,59.0 106.8,57.1 107.9,59.0 108.9,53.3 109.9,59.0 111.0,57.1 112.0,57.1 113.0,55.2 114.0,59.0 115.1,55.2 116.1,59.0 117.1,53.3 118.1,59.0 119.2,53.3 120.2,57.1 121.2,59.0 122.3,49.5 123.3,59.0 124.3,49.5 125.3,59.0 126.4,59.0 127.4,57.1 128.4,57.1 129.5,57.1 130.5,57.1 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,55.2 138.7,55.2 139.7,55.2 140.8,59.0 141.8,59.0 142.8,55.2 143.9,57.1 144.9,53.3 145.9,42.0 146.9,55.2 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,57.1 153.1,57.1 154.1,59.0 155.2,59.0 156.2,53.3 157.2,57.1 158.3,47.6 159.3,57.1 160.3,57.1 161.3,59.0 162.4,59.0 163.4,55.2 164.4,59.0 165.5,55.2 166.5,59.0 167.5,34.4 168.5,59.0 169.6,59.0 170.6,49.5 171.6,59.0 172.7,57.1 173.7,55.2 174.7,51.4 175.7,59.0 176.8,57.1 177.8,59.0 178.8,59.0 179.9,57.1 180.9,55.2 181.9,59.0 182.9,59.0 184.0,59.0 185.0,55.2 186.0,59.0 187.0,57.1 188.1,57.1 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,57.1 196.3,55.2 197.3,59.0 198.4,53.3 199.4,38.2 200.4,59.0 201.4,57.1 202.5,53.3 203.5,30.6 204.5,57.1 205.6,59.0 206.6,59.0 207.6,59.0 208.6,53.3 209.7,57.1 210.7,59.0 211.7,57.1 212.8,59.0 213.8,55.2 214.8,59.0 215.8,57.1 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,57.1 224.1,59.0 225.1,51.4 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,57.1 231.3,57.1 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,51.4 237.4,55.2 238.5,57.1 239.5,57.1 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,57.1 251.8,59.0 252.9,59.0 253.9,42.0 254.9,57.1 256.0,49.5 257.0,53.3 258.0,59.0 259.0,59.0 260.1,59.0 261.1,57.1 262.1,59.0 263.1,59.0 264.2,57.1 265.2,59.0 266.2,57.1 267.3,57.1 268.3,59.0 269.3,59.0 270.3,53.3 271.4,59.0 272.4,55.2 273.4,57.1 274.5,57.1 275.5,59.0 276.5,55.2 277.5,59.0 278.6,59.0 279.6,55.2 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,57.1 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,57.1\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PHI DISTRICT OFFICE<\/b><br>114 North 8th Street<br>Philadelphia, PA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 31<\/b> (2025-12-18)&nbsp;&nbsp;<br><b>Mean:<\/b> 14/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 33<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,30.1 5.0,12.4 6.1,18.8 7.1,10.8 8.1,6.0 9.1,23.7 10.2,41.3 11.2,49.4 12.2,41.3 13.3,36.5 14.3,26.9 15.3,39.7 16.3,47.8 17.4,57.4 18.4,52.6 19.4,36.5 20.5,30.1 21.5,46.2 22.5,47.8 23.5,39.7 24.6,33.3 25.6,39.7 26.6,39.7 27.7,41.3 28.7,36.5 29.7,36.5 30.7,54.2 31.8,55.8 32.8,57.4 33.8,34.9 34.9,46.2 35.9,41.3 36.9,39.7 37.9,55.8 39.0,52.6 40.0,42.9 41.0,34.9 42.0,42.9 43.1,44.5 44.1,34.9 45.1,44.5 46.2,49.4 47.2,47.8 48.2,44.5 49.2,39.7 50.3,25.3 51.3,42.9 52.3,51.0 53.4,49.4 54.4,59.0 55.4,38.1 56.4,42.9 57.5,41.3 58.5,38.1 59.5,41.3 60.6,51.0 61.6,54.2 62.6,39.7 63.6,33.3 64.7,36.5 65.7,44.5 66.7,42.9 67.8,51.0 68.8,54.2 69.8,49.4 70.8,41.3 71.9,47.8 72.9,41.3 73.9,47.8 75.0,59.0 76.0,59.0 77.0,36.5 78.0,47.8 79.1,39.7 80.1,42.9 81.1,49.4 82.2,44.5 83.2,47.8 84.2,47.8 85.2,42.9 86.3,49.4 87.3,44.5 88.3,47.8 89.4,52.6 90.4,55.8 91.4,44.5 92.4,39.7 93.5,52.6 94.5,46.2 95.5,46.2 96.6,57.4 97.6,51.0 98.6,42.9 99.6,42.9 100.7,36.5 101.7,17.2 102.7,15.6 103.8,33.3 104.8,39.7 105.8,20.5 106.8,20.5 107.9,30.1 108.9,28.5 109.9,30.1 111.0,51.0 112.0,52.6 113.0,17.2 114.0,31.7 115.1,33.3 116.1,42.9 117.1,25.3 118.1,51.0 119.2,47.8 120.2,34.9 121.2,33.3 122.3,31.7 123.3,34.9 124.3,44.5 125.3,46.2 126.4,47.8 127.4,22.1 128.4,33.3 129.5,38.1 130.5,41.3 131.5,30.1 132.5,51.0 133.6,52.6 134.6,33.3 135.6,20.5 136.7,23.7 137.7,34.9 138.7,25.3 139.7,51.0 140.8,55.8 141.8,49.4 142.8,41.3 143.9,22.1 144.9,41.3 145.9,47.8 146.9,52.6 148.0,57.4 149.0,25.3 150.0,34.9 151.1,12.4 152.1,28.5 153.1,25.3 154.1,47.8 155.2,52.6 156.2,31.7 157.2,30.1 158.3,18.8 159.3,36.5 160.3,46.2 161.3,51.0 162.4,51.0 163.4,22.1 164.4,31.7 165.5,22.1 166.5,28.5 167.5,42.9 168.5,42.9 169.6,44.5 170.6,36.5 171.6,42.9 172.7,39.7 173.7,22.1 174.7,36.5 175.7,51.0 176.8,47.8 177.8,22.1 178.8,31.7 179.9,28.5 180.9,41.3 181.9,36.5 182.9,51.0 184.0,44.5 185.0,31.7 186.0,33.3 187.0,26.9 188.1,42.9 189.1,30.1 190.1,47.8 191.2,54.2 192.2,41.3 193.2,34.9 194.2,25.3 195.3,12.4 196.3,41.3 197.3,44.5 198.4,51.0 199.4,42.9 200.4,20.5 201.4,20.5 202.5,22.1 203.5,34.9 204.5,46.2 205.6,57.4 206.6,28.5 207.6,25.3 208.6,25.3 209.7,9.2 210.7,20.5 211.7,34.9 212.8,46.2 213.8,23.7 214.8,26.9 215.8,46.2 216.9,52.6 217.9,25.3 218.9,47.8 220.0,52.6 221.0,38.1 222.0,14.0 223.0,39.7 224.1,51.0 225.1,23.7 226.1,46.2 227.2,47.8 228.2,30.1 229.2,25.3 230.2,20.5 231.3,30.1 232.3,39.7 233.3,49.4 234.4,51.0 235.4,25.3 236.4,28.5 237.4,31.7 238.5,36.5 239.5,36.5 240.5,51.0 241.6,52.6 242.6,46.2 243.6,31.7 244.6,30.1 245.7,17.2 246.7,38.1 247.7,49.4 248.8,59.0 249.8,59.0 250.8,30.1 251.8,15.6 252.9,31.7 253.9,34.9 254.9,47.8 256.0,55.8 257.0,18.8 258.0,34.9 259.0,28.5 260.1,30.1 261.1,41.3 262.1,55.8 263.1,55.8 264.2,47.8 265.2,46.2 266.2,39.7 267.3,36.5 268.3,44.5 269.3,55.8 270.3,54.2 271.4,57.4 272.4,36.5 273.4,34.9 274.5,51.0 275.5,42.9 276.5,55.8 277.5,57.4 278.6,59.0 279.6,26.9 280.6,41.3 281.7,44.5 282.7,42.9 283.7,57.4 284.7,57.4 285.8,28.5 286.8,38.1 287.8,36.5 288.9,44.5 289.9,38.1 290.9,59.0 291.9,59.0 293.0,39.7 294.0,33.3\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PHOENIX DIST OFFICE<\/b><br>2035 N. Central Avenue<br>Phoenix, AZ<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 155<\/b> (2025-12-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 64/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 155<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,52.5 5.0,50.5 6.1,47.7 7.1,46.7 8.1,38.8 9.1,44.6 10.2,51.1 11.2,49.4 12.2,39.9 13.3,43.3 14.3,39.5 15.3,43.6 16.3,45.3 17.4,53.9 18.4,51.8 19.4,47.0 20.5,48.4 21.5,49.8 22.5,45.0 23.5,47.4 24.6,51.5 25.6,52.5 26.6,47.4 27.7,46.0 28.7,40.9 29.7,47.0 30.7,52.5 31.8,51.1 32.8,52.5 33.8,47.0 34.9,46.3 35.9,46.3 36.9,48.7 37.9,51.1 39.0,52.2 40.0,50.5 41.0,43.3 42.0,42.2 43.1,45.7 44.1,46.0 45.1,42.6 46.2,54.2 47.2,54.9 48.2,50.8 49.2,46.7 50.3,44.3 51.3,46.0 52.3,49.1 53.4,53.2 54.4,53.5 55.4,50.5 56.4,50.5 57.5,49.8 58.5,48.1 59.5,50.1 60.6,53.5 61.6,49.8 62.6,44.6 63.6,42.6 64.7,41.6 65.7,42.2 66.7,44.3 67.8,50.8 68.8,49.8 69.8,42.9 70.8,45.7 71.9,42.6 72.9,44.0 73.9,45.0 75.0,52.5 76.0,53.9 77.0,49.4 78.0,46.7 79.1,46.3 80.1,45.3 81.1,45.0 82.2,49.8 83.2,48.7 84.2,42.2 85.2,41.6 86.3,44.3 87.3,44.3 88.3,49.4 89.4,53.2 90.4,51.8 91.4,48.4 92.4,46.3 93.5,40.9 94.5,39.9 95.5,47.7 96.6,49.4 97.6,48.1 98.6,41.2 99.6,38.5 100.7,45.3 101.7,37.5 102.7,41.6 103.8,42.2 104.8,45.3 105.8,35.4 106.8,40.5 107.9,39.2 108.9,42.6 109.9,42.6 111.0,42.9 112.0,43.3 113.0,38.8 114.0,45.0 115.1,44.6 116.1,42.9 117.1,52.2 118.1,52.5 119.2,46.0 120.2,41.9 121.2,40.9 122.3,41.2 123.3,46.0 124.3,49.4 125.3,51.8 126.4,47.0 127.4,49.8 128.4,46.0 129.5,39.5 130.5,42.6 131.5,44.0 132.5,46.7 133.6,51.8 134.6,39.9 135.6,48.7 136.7,47.4 137.7,45.3 138.7,49.1 139.7,47.0 140.8,51.5 141.8,48.7 142.8,45.7 143.9,44.3 144.9,41.9 145.9,46.0 146.9,47.0 148.0,46.7 149.0,36.8 150.0,38.1 151.1,36.1 152.1,43.6 153.1,44.0 154.1,45.3 155.2,47.7 156.2,46.0 157.2,41.9 158.3,35.4 159.3,39.2 160.3,42.2 161.3,26.5 162.4,24.1 163.4,20.0 164.4,17.6 165.5,15.6 166.5,20.4 167.5,15.9 168.5,26.9 169.6,29.9 170.6,24.5 171.6,29.3 172.7,28.6 173.7,35.7 174.7,41.6 175.7,51.1 176.8,44.0 177.8,38.1 178.8,33.0 179.9,35.1 180.9,38.8 181.9,38.8 182.9,44.0 184.0,38.8 185.0,29.6 186.0,32.3 187.0,32.3 188.1,39.2 189.1,39.5 190.1,42.6 191.2,48.1 192.2,41.2 193.2,14.9 194.2,6.0 195.3,29.9 196.3,16.3 197.3,23.1 198.4,22.4 199.4,16.9 200.4,19.3 201.4,21.4 202.5,14.9 203.5,13.9 204.5,24.8 205.6,26.5 206.6,22.8 207.6,16.6 208.6,23.8 209.7,8.1 210.7,12.2 211.7,24.8 212.8,26.9 213.8,44.6 214.8,41.9 215.8,42.2 216.9,48.7 217.9,50.5 218.9,53.5 220.0,52.5 221.0,44.0 222.0,42.6 223.0,44.3 224.1,49.8 225.1,50.8 226.1,48.4 227.2,43.6 228.2,39.5 229.2,41.9 230.2,42.2 231.3,41.9 232.3,36.1 233.3,41.9 234.4,43.3 235.4,45.3 236.4,42.9 237.4,41.2 238.5,42.2 239.5,46.3 240.5,50.1 241.6,47.7 242.6,47.7 243.6,49.8 244.6,23.8 245.7,50.5 246.7,44.3 247.7,33.7 248.8,22.1 249.8,25.1 250.8,23.4 251.8,20.7 252.9,31.6 253.9,40.5 254.9,42.2 256.0,46.3 257.0,48.1 258.0,50.5 259.0,49.1 260.1,50.8 261.1,49.1 262.1,49.1 263.1,50.1 264.2,50.5 265.2,47.7 266.2,47.7 267.3,48.7 268.3,35.4 269.3,37.5 270.3,35.4 271.4,47.0 272.4,45.0 273.4,38.1 274.5,38.5 275.5,37.5 276.5,47.4 277.5,46.3 278.6,46.7 279.6,49.1 280.6,49.8 281.7,47.4 282.7,40.2 283.7,39.9 284.7,42.6 285.8,35.4 286.8,44.3 287.8,47.0 288.9,47.7 289.9,32.3 290.9,33.0 291.9,34.4 293.0,33.0 294.0,35.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PITTSBURGH HOLDROOM<\/b><br>3000 SIDNEY ST SUITE 100<br>PITTSBURGH, PA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 18<\/b> (2025-11-18)&nbsp;&nbsp;<br><b>Mean:<\/b> 5/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 19<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,56.2 6.1,6.0 7.1,31.1 8.1,47.8 9.1,25.5 10.2,53.4 11.2,59.0 12.2,47.8 13.3,45.1 14.3,56.2 15.3,53.4 16.3,50.6 17.4,36.7 18.4,59.0 19.4,47.8 20.5,56.2 21.5,56.2 22.5,39.5 23.5,47.8 24.6,22.7 25.6,59.0 26.6,42.3 27.7,36.7 28.7,11.6 29.7,47.8 30.7,59.0 31.8,56.2 32.8,59.0 33.8,45.1 34.9,50.6 35.9,31.1 36.9,31.1 37.9,31.1 39.0,50.6 40.0,50.6 41.0,42.3 42.0,53.4 43.1,39.5 44.1,53.4 45.1,53.4 46.2,42.3 47.2,53.4 48.2,53.4 49.2,50.6 50.3,50.6 51.3,50.6 52.3,56.2 53.4,59.0 54.4,50.6 55.4,50.6 56.4,56.2 57.5,45.1 58.5,47.8 59.5,42.3 60.6,33.9 61.6,39.5 62.6,42.3 63.6,47.8 64.7,42.3 65.7,42.3 66.7,25.5 67.8,36.7 68.8,36.7 69.8,45.1 70.8,42.3 71.9,45.1 72.9,11.6 73.9,50.6 75.0,59.0 76.0,56.2 77.0,47.8 78.0,50.6 79.1,53.4 80.1,53.4 81.1,56.2 82.2,50.6 83.2,59.0 84.2,47.8 85.2,39.5 86.3,45.1 87.3,36.7 88.3,50.6 89.4,59.0 90.4,56.2 91.4,47.8 92.4,50.6 93.5,53.4 94.5,59.0 95.5,45.1 96.6,59.0 97.6,42.3 98.6,59.0 99.6,45.1 100.7,39.5 101.7,56.2 102.7,50.6 103.8,53.4 104.8,59.0 105.8,56.2 106.8,28.3 107.9,42.3 108.9,47.8 109.9,56.2 111.0,59.0 112.0,59.0 113.0,47.8 114.0,56.2 115.1,39.5 116.1,36.7 117.1,56.2 118.1,25.5 119.2,59.0 120.2,53.4 121.2,47.8 122.3,47.8 123.3,36.7 124.3,56.2 125.3,42.3 126.4,59.0 127.4,50.6 128.4,53.4 129.5,53.4 130.5,50.6 131.5,56.2 132.5,45.1 133.6,59.0 134.6,59.0 135.6,50.6 136.7,36.7 137.7,53.4 138.7,47.8 139.7,45.1 140.8,59.0 141.8,50.6 142.8,50.6 143.9,47.8 144.9,39.5 145.9,47.8 146.9,33.9 148.0,59.0 149.0,53.4 150.0,33.9 151.1,50.6 152.1,42.3 153.1,42.3 154.1,47.8 155.2,59.0 156.2,45.1 157.2,45.1 158.3,31.1 159.3,33.9 160.3,59.0 161.3,59.0 162.4,59.0 163.4,50.6 164.4,50.6 165.5,45.1 166.5,36.7 167.5,31.1 168.5,22.7 169.6,59.0 170.6,47.8 171.6,42.3 172.7,39.5 173.7,14.4 174.7,45.1 175.7,19.9 176.8,59.0 177.8,31.1 178.8,8.8 179.9,36.7 180.9,28.3 181.9,59.0 182.9,50.6 184.0,59.0 185.0,53.4 186.0,33.9 187.0,28.3 188.1,59.0 189.1,50.6 190.1,42.3 191.2,59.0 192.2,42.3 193.2,53.4 194.2,45.1 195.3,31.1 196.3,14.4 197.3,33.9 198.4,50.6 199.4,56.2 200.4,39.5 201.4,56.2 202.5,47.8 203.5,47.8 204.5,56.2 205.6,59.0 206.6,42.3 207.6,45.1 208.6,45.1 209.7,28.3 210.7,31.1 211.7,39.5 212.8,28.3 213.8,50.6 214.8,47.8 215.8,53.4 216.9,59.0 217.9,47.8 218.9,59.0 220.0,53.4 221.0,39.5 222.0,42.3 223.0,45.1 224.1,47.8 225.1,31.1 226.1,56.2 227.2,56.2 228.2,59.0 229.2,53.4 230.2,47.8 231.3,39.5 232.3,42.3 233.3,33.9 234.4,45.1 235.4,42.3 236.4,50.6 237.4,39.5 238.5,39.5 239.5,42.3 240.5,36.7 241.6,50.6 242.6,36.7 243.6,50.6 244.6,39.5 245.7,22.7 246.7,45.1 247.7,56.2 248.8,59.0 249.8,59.0 250.8,56.2 251.8,33.9 252.9,42.3 253.9,45.1 254.9,53.4 256.0,56.2 257.0,42.3 258.0,45.1 259.0,47.8 260.1,56.2 261.1,42.3 262.1,53.4 263.1,50.6 264.2,47.8 265.2,36.7 266.2,45.1 267.3,53.4 268.3,50.6 269.3,47.8 270.3,59.0 271.4,39.5 272.4,47.8 273.4,39.5 274.5,19.9 275.5,56.2 276.5,36.7 277.5,56.2 278.6,22.7 279.6,42.3 280.6,28.3 281.7,39.5 282.7,45.1 283.7,59.0 284.7,59.0 285.8,25.5 286.8,56.2 287.8,45.1 288.9,39.5 289.9,39.5 290.9,59.0 291.9,59.0 293.0,47.8 294.0,22.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PIKE COUNTY ERO HOLD ROOM<\/b><br>170 PIKE COUNTY BLVD<br>HAWLEY, PA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 9<\/b> (2025-11-07)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 9<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,53.1 6.1,47.2 7.1,53.1 8.1,17.8 9.1,53.1 10.2,53.1 11.2,59.0 12.2,53.1 13.3,53.1 14.3,17.8 15.3,47.2 16.3,53.1 17.4,41.3 18.4,59.0 19.4,53.1 20.5,41.3 21.5,53.1 22.5,53.1 23.5,59.0 24.6,59.0 25.6,59.0 26.6,53.1 27.7,47.2 28.7,53.1 29.7,47.2 30.7,53.1 31.8,47.2 32.8,53.1 33.8,53.1 34.9,59.0 35.9,53.1 36.9,47.2 37.9,53.1 39.0,59.0 40.0,59.0 41.0,47.2 42.0,35.4 43.1,35.4 44.1,35.4 45.1,53.1 46.2,59.0 47.2,29.6 48.2,53.1 49.2,41.3 50.3,53.1 51.3,41.3 52.3,35.4 53.4,53.1 54.4,59.0 55.4,53.1 56.4,47.2 57.5,41.3 58.5,53.1 59.5,47.2 60.6,47.2 61.6,53.1 62.6,59.0 63.6,41.3 64.7,47.2 65.7,53.1 66.7,47.2 67.8,41.3 68.8,59.0 69.8,29.6 70.8,53.1 71.9,29.6 72.9,41.3 73.9,35.4 75.0,53.1 76.0,53.1 77.0,41.3 78.0,47.2 79.1,35.4 80.1,41.3 81.1,53.1 82.2,35.4 83.2,53.1 84.2,41.3 85.2,41.3 86.3,53.1 87.3,41.3 88.3,53.1 89.4,47.2 90.4,47.2 91.4,47.2 92.4,23.7 93.5,53.1 94.5,29.6 95.5,53.1 96.6,53.1 97.6,53.1 98.6,53.1 99.6,41.3 100.7,47.2 101.7,29.6 102.7,47.2 103.8,47.2 104.8,53.1 105.8,53.1 106.8,29.6 107.9,35.4 108.9,47.2 109.9,59.0 111.0,47.2 112.0,59.0 113.0,59.0 114.0,59.0 115.1,47.2 116.1,23.7 117.1,47.2 118.1,59.0 119.2,59.0 120.2,59.0 121.2,47.2 122.3,23.7 123.3,47.2 124.3,41.3 125.3,47.2 126.4,47.2 127.4,53.1 128.4,53.1 129.5,47.2 130.5,53.1 131.5,47.2 132.5,53.1 133.6,59.0 134.6,47.2 135.6,47.2 136.7,59.0 137.7,17.8 138.7,53.1 139.7,53.1 140.8,53.1 141.8,53.1 142.8,47.2 143.9,23.7 144.9,35.4 145.9,47.2 146.9,53.1 148.0,59.0 149.0,29.6 150.0,53.1 151.1,29.6 152.1,47.2 153.1,47.2 154.1,41.3 155.2,47.2 156.2,47.2 157.2,35.4 158.3,35.4 159.3,35.4 160.3,47.2 161.3,59.0 162.4,41.3 163.4,47.2 164.4,53.1 165.5,41.3 166.5,53.1 167.5,6.0 168.5,47.2 169.6,53.1 170.6,59.0 171.6,59.0 172.7,59.0 173.7,47.2 174.7,47.2 175.7,53.1 176.8,53.1 177.8,59.0 178.8,41.3 179.9,53.1 180.9,47.2 181.9,53.1 182.9,59.0 184.0,53.1 185.0,35.4 186.0,41.3 187.0,35.4 188.1,59.0 189.1,53.1 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,47.2 195.3,47.2 196.3,53.1 197.3,41.3 198.4,53.1 199.4,59.0 200.4,29.6 201.4,47.2 202.5,53.1 203.5,53.1 204.5,47.2 205.6,53.1 206.6,53.1 207.6,59.0 208.6,53.1 209.7,47.2 210.7,47.2 211.7,59.0 212.8,59.0 213.8,59.0 214.8,47.2 215.8,53.1 216.9,53.1 217.9,53.1 218.9,59.0 220.0,59.0 221.0,53.1 222.0,47.2 223.0,41.3 224.1,53.1 225.1,47.2 226.1,59.0 227.2,59.0 228.2,47.2 229.2,59.0 230.2,59.0 231.3,53.1 232.3,53.1 233.3,59.0 234.4,53.1 235.4,53.1 236.4,53.1 237.4,47.2 238.5,47.2 239.5,47.2 240.5,59.0 241.6,59.0 242.6,59.0 243.6,47.2 244.6,53.1 245.7,53.1 246.7,47.2 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,53.1 252.9,59.0 253.9,53.1 254.9,53.1 256.0,47.2 257.0,53.1 258.0,47.2 259.0,59.0 260.1,53.1 261.1,47.2 262.1,53.1 263.1,53.1 264.2,59.0 265.2,47.2 266.2,59.0 267.3,53.1 268.3,47.2 269.3,53.1 270.3,59.0 271.4,59.0 272.4,53.1 273.4,59.0 274.5,53.1 275.5,41.3 276.5,47.2 277.5,59.0 278.6,59.0 279.6,53.1 280.6,59.0 281.7,53.1 282.7,17.8 283.7,59.0 284.7,59.0 285.8,53.1 286.8,53.1 287.8,53.1 288.9,47.2 289.9,53.1 290.9,59.0 291.9,59.0 293.0,29.6 294.0,53.1\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PLATTE COUNTY JAIL<\/b><br>850 Maple Street<br>Wheatland, WY<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 16<\/b> (2025-11-07)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 16<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,55.7 5.0,55.7 6.1,52.4 7.1,32.5 8.1,29.2 9.1,25.9 10.2,29.2 11.2,52.4 12.2,52.4 13.3,42.4 14.3,42.4 15.3,39.1 16.3,39.1 17.4,39.1 18.4,39.1 19.4,59.0 20.5,52.4 21.5,49.1 22.5,39.1 23.5,35.8 24.6,55.7 25.6,55.7 26.6,49.1 27.7,49.1 28.7,45.8 29.7,42.4 30.7,35.8 31.8,32.5 32.8,32.5 33.8,59.0 34.9,59.0 35.9,59.0 36.9,39.1 37.9,39.1 39.0,45.8 40.0,45.8 41.0,55.7 42.0,52.4 43.1,39.1 44.1,29.2 45.1,22.6 46.2,52.4 47.2,52.4 48.2,52.4 49.2,52.4 50.3,49.1 51.3,52.4 52.3,35.8 53.4,39.1 54.4,59.0 55.4,59.0 56.4,59.0 57.5,55.7 58.5,55.7 59.5,59.0 60.6,52.4 61.6,49.1 62.6,55.7 63.6,55.7 64.7,49.1 65.7,45.8 66.7,35.8 67.8,25.9 68.8,49.1 69.8,45.8 70.8,45.8 71.9,39.1 72.9,39.1 73.9,52.4 75.0,49.1 76.0,49.1 77.0,35.8 78.0,25.9 79.1,42.4 80.1,32.5 81.1,32.5 82.2,59.0 83.2,52.4 84.2,52.4 85.2,22.6 86.3,22.6 87.3,39.1 88.3,39.1 89.4,55.7 90.4,55.7 91.4,39.1 92.4,32.5 93.5,32.5 94.5,45.8 95.5,49.1 96.6,55.7 97.6,55.7 98.6,49.1 99.6,45.8 100.7,52.4 101.7,52.4 102.7,49.1 103.8,55.7 104.8,49.1 105.8,49.1 106.8,42.4 107.9,39.1 108.9,55.7 109.9,55.7 111.0,59.0 112.0,59.0 113.0,35.8 114.0,35.8 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,52.4 121.2,52.4 122.3,59.0 123.3,55.7 124.3,55.7 125.3,55.7 126.4,55.7 127.4,45.8 128.4,45.8 129.5,52.4 130.5,52.4 131.5,19.2 132.5,22.6 133.6,55.7 134.6,52.4 135.6,52.4 136.7,52.4 137.7,35.8 138.7,42.4 139.7,42.4 140.8,59.0 141.8,59.0 142.8,49.1 143.9,45.8 144.9,39.1 145.9,49.1 146.9,45.8 148.0,45.8 149.0,45.8 150.0,52.4 151.1,39.1 152.1,39.1 153.1,52.4 154.1,52.4 155.2,52.4 156.2,42.4 157.2,42.4 158.3,55.7 159.3,59.0 160.3,39.1 161.3,39.1 162.4,55.7 163.4,45.8 164.4,9.3 165.5,22.6 166.5,19.2 167.5,6.0 168.5,6.0 169.6,52.4 170.6,52.4 171.6,55.7 172.7,55.7 173.7,55.7 174.7,45.8 175.7,45.8 176.8,49.1 177.8,15.9 178.8,59.0 179.9,59.0 180.9,59.0 181.9,39.1 182.9,39.1 184.0,59.0 185.0,52.4 186.0,49.1 187.0,52.4 188.1,55.7 189.1,55.7 190.1,52.4 191.2,55.7 192.2,32.5 193.2,59.0 194.2,55.7 195.3,45.8 196.3,45.8 197.3,59.0 198.4,59.0 199.4,42.4 200.4,39.1 201.4,52.4 202.5,59.0 203.5,59.0 204.5,59.0 205.6,55.7 206.6,49.1 207.6,55.7 208.6,55.7 209.7,55.7 210.7,52.4 211.7,52.4 212.8,42.4 213.8,42.4 214.8,45.8 215.8,49.1 216.9,49.1 217.9,55.7 218.9,55.7 220.0,55.7 221.0,55.7 222.0,55.7 223.0,52.4 224.1,55.7 225.1,55.7 226.1,55.7 227.2,49.1 228.2,49.1 229.2,52.4 230.2,45.8 231.3,45.8 232.3,49.1 233.3,45.8 234.4,59.0 235.4,59.0 236.4,42.4 237.4,49.1 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,49.1 243.6,59.0 244.6,59.0 245.7,52.4 246.7,52.4 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,49.1 254.9,49.1 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,52.4 261.1,52.4 262.1,52.4 263.1,52.4 264.2,59.0 265.2,49.1 266.2,49.1 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,55.7 273.4,49.1 274.5,52.4 275.5,59.0 276.5,59.0 277.5,59.0 278.6,52.4 279.6,52.4 280.6,59.0 281.7,59.0 282.7,55.7 283.7,55.7 284.7,59.0 285.8,59.0 286.8,55.7 287.8,55.7 288.9,55.7 289.9,55.7 290.9,55.7 291.9,59.0 293.0,59.0 294.0,45.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PORTLAND, ME HOLDROOM<\/b><br>40 Manson Libby Road, Suite 101<br>Scarborough, ME<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 3<\/b> (2025-11-20)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 4<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,19.2 9.1,45.8 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,45.8 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,45.8 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,19.2 85.2,59.0 86.3,45.8 87.3,59.0 88.3,59.0 89.4,45.8 90.4,59.0 91.4,59.0 92.4,59.0 93.5,32.5 94.5,45.8 95.5,45.8 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,45.8 109.9,59.0 111.0,59.0 112.0,19.2 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,45.8 131.5,45.8 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,45.8 168.5,45.8 169.6,59.0 170.6,59.0 171.6,45.8 172.7,59.0 173.7,59.0 174.7,59.0 175.7,32.5 176.8,59.0 177.8,45.8 178.8,59.0 179.9,59.0 180.9,19.2 181.9,45.8 182.9,32.5 184.0,45.8 185.0,45.8 186.0,45.8 187.0,59.0 188.1,59.0 189.1,45.8 190.1,59.0 191.2,59.0 192.2,19.2 193.2,59.0 194.2,45.8 195.3,45.8 196.3,45.8 197.3,32.5 198.4,32.5 199.4,32.5 200.4,59.0 201.4,59.0 202.5,45.8 203.5,45.8 204.5,45.8 205.6,59.0 206.6,45.8 207.6,45.8 208.6,45.8 209.7,45.8 210.7,59.0 211.7,32.5 212.8,59.0 213.8,45.8 214.8,19.2 215.8,59.0 216.9,59.0 217.9,45.8 218.9,59.0 220.0,59.0 221.0,45.8 222.0,45.8 223.0,19.2 224.1,45.8 225.1,45.8 226.1,45.8 227.2,59.0 228.2,45.8 229.2,45.8 230.2,45.8 231.3,32.5 232.3,45.8 233.3,59.0 234.4,59.0 235.4,59.0 236.4,45.8 237.4,32.5 238.5,45.8 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,19.2 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,45.8 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,32.5 258.0,32.5 259.0,45.8 260.1,59.0 261.1,59.0 262.1,32.5 263.1,59.0 264.2,59.0 265.2,45.8 266.2,45.8 267.3,45.8 268.3,59.0 269.3,45.8 270.3,45.8 271.4,32.5 272.4,45.8 273.4,32.5 274.5,45.8 275.5,59.0 276.5,45.8 277.5,32.5 278.6,59.0 279.6,19.2 280.6,45.8 281.7,45.8 282.7,32.5 283.7,59.0 284.7,32.5 285.8,32.5 286.8,45.8 287.8,45.8 288.9,32.5 289.9,45.8 290.9,59.0 291.9,6.0 293.0,32.5 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PORTLAND DISTRICT OFFICE<\/b><br>1111 SOUTHWEST 2ND AVENUE<br>PORTLAND, OR<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 51<\/b> (2025-10-30)&nbsp;&nbsp;<br><b>Mean:<\/b> 11/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 51<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,58.0 5.0,55.9 6.1,49.6 7.1,45.5 8.1,55.9 9.1,58.0 10.2,56.9 11.2,55.9 12.2,55.9 13.3,53.8 14.3,53.8 15.3,50.7 16.3,58.0 17.4,58.0 18.4,58.0 19.4,56.9 20.5,54.8 21.5,54.8 22.5,58.0 23.5,55.9 24.6,56.9 25.6,56.9 26.6,58.0 27.7,55.9 28.7,56.9 29.7,55.9 30.7,53.8 31.8,56.9 32.8,58.0 33.8,56.9 34.9,55.9 35.9,58.0 36.9,58.0 37.9,58.0 39.0,58.0 40.0,56.9 41.0,55.9 42.0,53.8 43.1,51.7 44.1,54.8 45.1,56.9 46.2,56.9 47.2,58.0 48.2,55.9 49.2,49.6 50.3,55.9 51.3,55.9 52.3,54.8 53.4,58.0 54.4,58.0 55.4,55.9 56.4,56.9 57.5,53.8 58.5,56.9 59.5,55.9 60.6,56.9 61.6,55.9 62.6,58.0 63.6,54.8 64.7,52.8 65.7,55.9 66.7,52.8 67.8,55.9 68.8,55.9 69.8,55.9 70.8,56.9 71.9,56.9 72.9,47.6 73.9,52.8 75.0,56.9 76.0,56.9 77.0,53.8 78.0,53.8 79.1,49.6 80.1,50.7 81.1,54.8 82.2,55.9 83.2,55.9 84.2,54.8 85.2,56.9 86.3,54.8 87.3,55.9 88.3,53.8 89.4,54.8 90.4,54.8 91.4,53.8 92.4,51.7 93.5,55.9 94.5,54.8 95.5,52.8 96.6,59.0 97.6,59.0 98.6,58.0 99.6,58.0 100.7,49.6 101.7,54.8 102.7,58.0 103.8,59.0 104.8,59.0 105.8,54.8 106.8,54.8 107.9,56.9 108.9,56.9 109.9,53.8 111.0,58.0 112.0,56.9 113.0,59.0 114.0,55.9 115.1,55.9 116.1,58.0 117.1,56.9 118.1,58.0 119.2,59.0 120.2,58.0 121.2,55.9 122.3,55.9 123.3,50.7 124.3,59.0 125.3,59.0 126.4,59.0 127.4,52.8 128.4,54.8 129.5,54.8 130.5,58.0 131.5,55.9 132.5,58.0 133.6,59.0 134.6,58.0 135.6,51.7 136.7,52.8 137.7,54.8 138.7,58.0 139.7,52.8 140.8,58.0 141.8,51.7 142.8,45.5 143.9,29.9 144.9,47.6 145.9,41.3 146.9,59.0 148.0,49.6 149.0,39.3 150.0,39.3 151.1,43.4 152.1,39.3 153.1,33.0 154.1,43.4 155.2,40.3 156.2,38.2 157.2,25.7 158.3,13.3 159.3,6.0 160.3,37.2 161.3,39.3 162.4,35.1 163.4,36.1 164.4,40.3 165.5,36.1 166.5,36.1 167.5,41.3 168.5,38.2 169.6,53.8 170.6,38.2 171.6,18.5 172.7,40.3 173.7,53.8 174.7,45.5 175.7,45.5 176.8,36.1 177.8,38.2 178.8,36.1 179.9,40.3 180.9,39.3 181.9,46.5 182.9,41.3 184.0,43.4 185.0,42.4 186.0,37.2 187.0,49.6 188.1,47.6 189.1,43.4 190.1,41.3 191.2,44.5 192.2,38.2 193.2,34.1 194.2,29.9 195.3,38.2 196.3,44.5 197.3,43.4 198.4,46.5 199.4,40.3 200.4,45.5 201.4,40.3 202.5,37.2 203.5,41.3 204.5,54.8 205.6,55.9 206.6,44.5 207.6,47.6 208.6,50.7 209.7,50.7 210.7,46.5 211.7,55.9 212.8,53.8 213.8,52.8 214.8,50.7 215.8,52.8 216.9,55.9 217.9,47.6 218.9,51.7 220.0,54.8 221.0,51.7 222.0,51.7 223.0,50.7 224.1,56.9 225.1,49.6 226.1,51.7 227.2,50.7 228.2,52.8 229.2,51.7 230.2,49.6 231.3,48.6 232.3,58.0 233.3,58.0 234.4,58.0 235.4,53.8 236.4,55.9 237.4,54.8 238.5,51.7 239.5,51.7 240.5,59.0 241.6,58.0 242.6,56.9 243.6,53.8 244.6,56.9 245.7,56.9 246.7,55.9 247.7,56.9 248.8,59.0 249.8,58.0 250.8,53.8 251.8,59.0 252.9,59.0 253.9,55.9 254.9,59.0 256.0,59.0 257.0,55.9 258.0,59.0 259.0,58.0 260.1,55.9 261.1,59.0 262.1,59.0 263.1,59.0 264.2,56.9 265.2,56.9 266.2,56.9 267.3,59.0 268.3,55.9 269.3,59.0 270.3,59.0 271.4,59.0 272.4,58.0 273.4,58.0 274.5,58.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,58.0 279.6,58.0 280.6,58.0 281.7,58.0 282.7,58.0 283.7,59.0 284.7,59.0 285.8,58.0 286.8,56.9 287.8,58.0 288.9,58.0 289.9,58.0 290.9,58.0 291.9,59.0 293.0,58.0 294.0,53.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PRAIRIELAND SUBOFFICE HOLD ROOM<\/b><br>1209 SUNFLOWER LN<br>ALVARADO, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 65<\/b> (2026-01-07)&nbsp;&nbsp;<br><b>Mean:<\/b> 7/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 80<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,58.3 12.2,59.0 13.3,59.0 14.3,58.3 15.3,58.3 16.3,59.0 17.4,59.0 18.4,58.3 19.4,58.3 20.5,58.3 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,58.3 27.7,58.3 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,58.3 59.5,58.3 60.6,58.3 61.6,58.3 62.6,58.3 63.6,58.3 64.7,58.3 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,54.4 95.5,54.4 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,41.8 118.1,6.0 119.2,15.3 120.2,27.9 121.2,45.8 122.3,43.8 123.3,45.1 124.3,23.9 125.3,8.0 126.4,15.3 127.4,29.8 128.4,31.2 129.5,38.5 130.5,39.1 131.5,39.8 132.5,43.1 133.6,43.1 134.6,43.1 135.6,43.1 136.7,43.1 137.7,43.8 138.7,44.4 139.7,44.4 140.8,44.4 141.8,44.4 142.8,44.4 143.9,49.1 144.9,49.7 145.9,49.7 146.9,49.7 148.0,51.0 149.0,51.0 150.0,51.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,57.7 158.3,59.0 159.3,58.3 160.3,58.3 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,52.4 169.6,37.1 170.6,57.7 171.6,57.7 172.7,57.7 173.7,57.7 174.7,57.7 175.7,57.7 176.8,57.7 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,35.2 184.0,35.2 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,44.4 197.3,56.3 198.4,58.3 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,37.1 211.7,37.1 212.8,35.2 213.8,35.2 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,58.3 220.0,58.3 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,41.1 230.2,15.9 231.3,40.5 232.3,59.0 233.3,58.3 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,58.3 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,58.3 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,57.7 278.6,58.3 279.6,59.0 280.6,58.3 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,43.1 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PROHOLD<\/b><br>443 Jefferson Blvd North Suite<br>Warwick, RI<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 9<\/b> (2025-11-04)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 12<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,41.3 5.0,45.8 6.1,41.3 7.1,45.8 8.1,36.9 9.1,59.0 10.2,54.6 11.2,54.6 12.2,50.2 13.3,32.5 14.3,41.3 15.3,54.6 16.3,32.5 17.4,45.8 18.4,50.2 19.4,50.2 20.5,45.8 21.5,41.3 22.5,41.3 23.5,45.8 24.6,50.2 25.6,54.6 26.6,50.2 27.7,36.9 28.7,36.9 29.7,50.2 30.7,36.9 31.8,54.6 32.8,54.6 33.8,36.9 34.9,41.3 35.9,36.9 36.9,50.2 37.9,54.6 39.0,50.2 40.0,50.2 41.0,50.2 42.0,45.8 43.1,41.3 44.1,54.6 45.1,45.8 46.2,50.2 47.2,50.2 48.2,54.6 49.2,45.8 50.3,50.2 51.3,45.8 52.3,45.8 53.4,54.6 54.4,50.2 55.4,41.3 56.4,45.8 57.5,45.8 58.5,41.3 59.5,45.8 60.6,50.2 61.6,54.6 62.6,50.2 63.6,41.3 64.7,54.6 65.7,45.8 66.7,50.2 67.8,54.6 68.8,54.6 69.8,54.6 70.8,45.8 71.9,50.2 72.9,36.9 73.9,54.6 75.0,54.6 76.0,54.6 77.0,50.2 78.0,50.2 79.1,54.6 80.1,45.8 81.1,50.2 82.2,54.6 83.2,50.2 84.2,45.8 85.2,32.5 86.3,41.3 87.3,45.8 88.3,50.2 89.4,50.2 90.4,50.2 91.4,54.6 92.4,45.8 93.5,50.2 94.5,45.8 95.5,50.2 96.6,50.2 97.6,50.2 98.6,50.2 99.6,50.2 100.7,45.8 101.7,36.9 102.7,54.6 103.8,54.6 104.8,50.2 105.8,50.2 106.8,54.6 107.9,45.8 108.9,45.8 109.9,54.6 111.0,54.6 112.0,54.6 113.0,45.8 114.0,36.9 115.1,50.2 116.1,50.2 117.1,45.8 118.1,54.6 119.2,50.2 120.2,50.2 121.2,50.2 122.3,41.3 123.3,45.8 124.3,45.8 125.3,50.2 126.4,54.6 127.4,36.9 128.4,45.8 129.5,41.3 130.5,45.8 131.5,45.8 132.5,54.6 133.6,54.6 134.6,50.2 135.6,32.5 136.7,36.9 137.7,36.9 138.7,50.2 139.7,54.6 140.8,50.2 141.8,50.2 142.8,41.3 143.9,41.3 144.9,45.8 145.9,50.2 146.9,45.8 148.0,54.6 149.0,50.2 150.0,50.2 151.1,45.8 152.1,41.3 153.1,50.2 154.1,54.6 155.2,54.6 156.2,54.6 157.2,36.9 158.3,36.9 159.3,41.3 160.3,50.2 161.3,45.8 162.4,41.3 163.4,50.2 164.4,19.2 165.5,32.5 166.5,54.6 167.5,50.2 168.5,50.2 169.6,45.8 170.6,41.3 171.6,50.2 172.7,32.5 173.7,50.2 174.7,45.8 175.7,45.8 176.8,45.8 177.8,41.3 178.8,32.5 179.9,32.5 180.9,45.8 181.9,50.2 182.9,54.6 184.0,50.2 185.0,50.2 186.0,28.1 187.0,41.3 188.1,54.6 189.1,50.2 190.1,45.8 191.2,54.6 192.2,45.8 193.2,45.8 194.2,32.5 195.3,32.5 196.3,41.3 197.3,45.8 198.4,50.2 199.4,45.8 200.4,41.3 201.4,45.8 202.5,41.3 203.5,45.8 204.5,45.8 205.6,45.8 206.6,41.3 207.6,45.8 208.6,41.3 209.7,59.0 210.7,59.0 211.7,54.6 212.8,54.6 213.8,45.8 214.8,45.8 215.8,50.2 216.9,59.0 217.9,54.6 218.9,54.6 220.0,54.6 221.0,54.6 222.0,45.8 223.0,59.0 224.1,50.2 225.1,54.6 226.1,59.0 227.2,59.0 228.2,54.6 229.2,54.6 230.2,54.6 231.3,54.6 232.3,59.0 233.3,59.0 234.4,59.0 235.4,54.6 236.4,41.3 237.4,54.6 238.5,54.6 239.5,50.2 240.5,54.6 241.6,54.6 242.6,54.6 243.6,50.2 244.6,50.2 245.7,54.6 246.7,45.8 247.7,54.6 248.8,54.6 249.8,54.6 250.8,50.2 251.8,50.2 252.9,45.8 253.9,54.6 254.9,54.6 256.0,50.2 257.0,50.2 258.0,54.6 259.0,50.2 260.1,45.8 261.1,54.6 262.1,41.3 263.1,50.2 264.2,54.6 265.2,32.5 266.2,41.3 267.3,54.6 268.3,50.2 269.3,45.8 270.3,36.9 271.4,36.9 272.4,36.9 273.4,6.0 274.5,36.9 275.5,54.6 276.5,50.2 277.5,50.2 278.6,54.6 279.6,54.6 280.6,54.6 281.7,32.5 282.7,50.2 283.7,59.0 284.7,54.6 285.8,59.0 286.8,50.2 287.8,45.8 288.9,50.2 289.9,50.2 290.9,59.0 291.9,59.0 293.0,59.0 294.0,50.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PROVO HOLD ROOM<\/b><br>3075 NORTH MAIN<br>SPANISH FORK, UT<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 9<\/b> (2025-12-04)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 10<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,48.4 5.0,59.0 6.1,48.4 7.1,59.0 8.1,48.4 9.1,32.5 10.2,59.0 11.2,53.7 12.2,59.0 13.3,53.7 14.3,48.4 15.3,37.8 16.3,48.4 17.4,59.0 18.4,59.0 19.4,43.1 20.5,53.7 21.5,53.7 22.5,43.1 23.5,32.5 24.6,59.0 25.6,59.0 26.6,59.0 27.7,27.2 28.7,59.0 29.7,48.4 30.7,48.4 31.8,59.0 32.8,59.0 33.8,59.0 34.9,48.4 35.9,48.4 36.9,43.1 37.9,59.0 39.0,53.7 40.0,59.0 41.0,59.0 42.0,32.5 43.1,48.4 44.1,43.1 45.1,48.4 46.2,59.0 47.2,59.0 48.2,53.7 49.2,43.1 50.3,43.1 51.3,43.1 52.3,32.5 53.4,48.4 54.4,59.0 55.4,59.0 56.4,53.7 57.5,43.1 58.5,43.1 59.5,43.1 60.6,53.7 61.6,48.4 62.6,53.7 63.6,43.1 64.7,48.4 65.7,43.1 66.7,37.8 67.8,59.0 68.8,43.1 69.8,43.1 70.8,43.1 71.9,43.1 72.9,43.1 73.9,48.4 75.0,53.7 76.0,59.0 77.0,59.0 78.0,43.1 79.1,59.0 80.1,37.8 81.1,37.8 82.2,43.1 83.2,43.1 84.2,59.0 85.2,48.4 86.3,43.1 87.3,27.2 88.3,6.0 89.4,59.0 90.4,59.0 91.4,43.1 92.4,48.4 93.5,32.5 94.5,43.1 95.5,27.2 96.6,59.0 97.6,48.4 98.6,59.0 99.6,59.0 100.7,43.1 101.7,53.7 102.7,32.5 103.8,48.4 104.8,59.0 105.8,48.4 106.8,37.8 107.9,16.6 108.9,27.2 109.9,27.2 111.0,59.0 112.0,59.0 113.0,53.7 114.0,48.4 115.1,37.8 116.1,37.8 117.1,27.2 118.1,59.0 119.2,59.0 120.2,37.8 121.2,32.5 122.3,21.9 123.3,43.1 124.3,37.8 125.3,59.0 126.4,43.1 127.4,27.2 128.4,43.1 129.5,43.1 130.5,16.6 131.5,43.1 132.5,43.1 133.6,59.0 134.6,37.8 135.6,53.7 136.7,59.0 137.7,37.8 138.7,32.5 139.7,48.4 140.8,43.1 141.8,53.7 142.8,48.4 143.9,48.4 144.9,43.1 145.9,43.1 146.9,59.0 148.0,48.4 149.0,37.8 150.0,43.1 151.1,48.4 152.1,32.5 153.1,27.2 154.1,53.7 155.2,53.7 156.2,43.1 157.2,27.2 158.3,27.2 159.3,21.9 160.3,27.2 161.3,59.0 162.4,53.7 163.4,53.7 164.4,48.4 165.5,37.8 166.5,48.4 167.5,53.7 168.5,59.0 169.6,53.7 170.6,53.7 171.6,53.7 172.7,21.9 173.7,43.1 174.7,37.8 175.7,59.0 176.8,53.7 177.8,37.8 178.8,43.1 179.9,16.6 180.9,37.8 181.9,32.5 182.9,59.0 184.0,48.4 185.0,59.0 186.0,43.1 187.0,16.6 188.1,59.0 189.1,43.1 190.1,32.5 191.2,53.7 192.2,32.5 193.2,16.6 194.2,27.2 195.3,11.3 196.3,11.3 197.3,32.5 198.4,48.4 199.4,53.7 200.4,32.5 201.4,27.2 202.5,37.8 203.5,27.2 204.5,59.0 205.6,48.4 206.6,59.0 207.6,32.5 208.6,32.5 209.7,21.9 210.7,21.9 211.7,59.0 212.8,59.0 213.8,43.1 214.8,27.2 215.8,27.2 216.9,59.0 217.9,53.7 218.9,59.0 220.0,43.1 221.0,48.4 222.0,27.2 223.0,53.7 224.1,59.0 225.1,37.8 226.1,59.0 227.2,48.4 228.2,59.0 229.2,43.1 230.2,59.0 231.3,37.8 232.3,53.7 233.3,59.0 234.4,48.4 235.4,59.0 236.4,37.8 237.4,48.4 238.5,37.8 239.5,48.4 240.5,59.0 241.6,59.0 242.6,53.7 243.6,53.7 244.6,37.8 245.7,43.1 246.7,37.8 247.7,59.0 248.8,53.7 249.8,53.7 250.8,32.5 251.8,11.3 252.9,43.1 253.9,48.4 254.9,59.0 256.0,43.1 257.0,48.4 258.0,48.4 259.0,21.9 260.1,27.2 261.1,59.0 262.1,59.0 263.1,53.7 264.2,59.0 265.2,21.9 266.2,43.1 267.3,53.7 268.3,37.8 269.3,59.0 270.3,53.7 271.4,32.5 272.4,53.7 273.4,27.2 274.5,48.4 275.5,43.1 276.5,59.0 277.5,53.7 278.6,37.8 279.6,27.2 280.6,27.2 281.7,16.6 282.7,43.1 283.7,59.0 284.7,32.5 285.8,43.1 286.8,53.7 287.8,43.1 288.9,27.2 289.9,16.6 290.9,59.0 291.9,59.0 293.0,37.8 294.0,53.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PUEBLO HOLDROOM<\/b><br>935 CO-67 Florence, CO 81226<br>FLORENCE, CO<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 7<\/b> (2026-01-13)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 7<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,51.4 5.0,43.9 6.1,43.9 7.1,36.3 8.1,43.9 9.1,51.4 10.2,51.4 11.2,51.4 12.2,28.7 13.3,51.4 14.3,13.6 15.3,21.1 16.3,36.3 17.4,59.0 18.4,43.9 19.4,36.3 20.5,43.9 21.5,21.1 22.5,59.0 23.5,21.1 24.6,59.0 25.6,59.0 26.6,59.0 27.7,51.4 28.7,51.4 29.7,59.0 30.7,36.3 31.8,51.4 32.8,59.0 33.8,51.4 34.9,59.0 35.9,36.3 36.9,51.4 37.9,59.0 39.0,51.4 40.0,59.0 41.0,59.0 42.0,59.0 43.1,43.9 44.1,59.0 45.1,43.9 46.2,59.0 47.2,59.0 48.2,59.0 49.2,43.9 50.3,51.4 51.3,36.3 52.3,59.0 53.4,59.0 54.4,59.0 55.4,28.7 56.4,51.4 57.5,21.1 58.5,28.7 59.5,59.0 60.6,51.4 61.6,59.0 62.6,59.0 63.6,59.0 64.7,36.3 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,51.4 71.9,59.0 72.9,13.6 73.9,51.4 75.0,59.0 76.0,59.0 77.0,51.4 78.0,51.4 79.1,51.4 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,51.4 92.4,51.4 93.5,51.4 94.5,6.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,43.9 103.8,59.0 104.8,59.0 105.8,59.0 106.8,51.4 107.9,51.4 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,51.4 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,36.3 123.3,43.9 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,51.4 132.5,51.4 133.6,51.4 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,51.4 142.8,59.0 143.9,28.7 144.9,51.4 145.9,59.0 146.9,59.0 148.0,59.0 149.0,43.9 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,43.9 157.2,59.0 158.3,59.0 159.3,51.4 160.3,51.4 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,51.4 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,36.3 171.6,51.4 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,51.4 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,51.4 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,51.4 193.2,59.0 194.2,28.7 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,43.9 200.4,59.0 201.4,43.9 202.5,43.9 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,36.3 209.7,43.9 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,43.9 222.0,36.3 223.0,43.9 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,43.9 229.2,51.4 230.2,43.9 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,21.1 236.4,6.0 237.4,36.3 238.5,43.9 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,51.4 246.7,59.0 247.7,59.0 248.8,59.0 249.8,51.4 250.8,59.0 251.8,59.0 252.9,43.9 253.9,59.0 254.9,59.0 256.0,59.0 257.0,43.9 258.0,59.0 259.0,51.4 260.1,36.3 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,51.4 266.2,59.0 267.3,59.0 268.3,43.9 269.3,51.4 270.3,59.0 271.4,51.4 272.4,51.4 273.4,51.4 274.5,43.9 275.5,28.7 276.5,59.0 277.5,59.0 278.6,43.9 279.6,51.4 280.6,51.4 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,43.9 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,51.4 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PUTNAM COUNTY JAIL<\/b><br>130 Orie Griffin Blvd<br>Palatka, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 3<\/b> (2026-01-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 3<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,6.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">PRINCE WILLIAM<\/b><br>9320 Lee Avenue<br>Manassas, VA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 2<\/b> (2025-12-11)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,32.5 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,32.5 150.0,32.5 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,32.5 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,6.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,6.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,32.5 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,32.5 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,32.5 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,32.5 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">RAPP SEC CENTER<\/b><br>1745 Richmond Hwy<br>Stafford, VA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 5<\/b> (2025-12-13)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 15<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,44.9 5.0,51.9 6.1,44.9 7.1,48.4 8.1,44.9 9.1,44.9 10.2,51.9 11.2,55.5 12.2,55.5 13.3,51.9 14.3,55.5 15.3,51.9 16.3,51.9 17.4,59.0 18.4,55.5 19.4,48.4 20.5,48.4 21.5,51.9 22.5,30.7 23.5,20.1 24.6,48.4 25.6,59.0 26.6,55.5 27.7,37.8 28.7,41.3 29.7,51.9 30.7,41.3 31.8,44.9 32.8,48.4 33.8,48.4 34.9,51.9 35.9,51.9 36.9,44.9 37.9,44.9 39.0,48.4 40.0,59.0 41.0,48.4 42.0,34.3 43.1,37.8 44.1,37.8 45.1,23.7 46.2,37.8 47.2,20.1 48.2,34.3 49.2,41.3 50.3,41.3 51.3,44.9 52.3,51.9 53.4,44.9 54.4,48.4 55.4,55.5 56.4,37.8 57.5,37.8 58.5,55.5 59.5,44.9 60.6,55.5 61.6,55.5 62.6,55.5 63.6,41.3 64.7,41.3 65.7,30.7 66.7,41.3 67.8,48.4 68.8,48.4 69.8,59.0 70.8,44.9 71.9,48.4 72.9,44.9 73.9,44.9 75.0,55.5 76.0,55.5 77.0,59.0 78.0,44.9 79.1,41.3 80.1,55.5 81.1,51.9 82.2,51.9 83.2,48.4 84.2,48.4 85.2,51.9 86.3,51.9 87.3,16.6 88.3,6.0 89.4,37.8 90.4,16.6 91.4,16.6 92.4,23.7 93.5,37.8 94.5,41.3 95.5,13.1 96.6,27.2 97.6,41.3 98.6,59.0 99.6,41.3 100.7,37.8 101.7,41.3 102.7,41.3 103.8,55.5 104.8,51.9 105.8,51.9 106.8,59.0 107.9,55.5 108.9,51.9 109.9,34.3 111.0,30.7 112.0,59.0 113.0,51.9 114.0,44.9 115.1,51.9 116.1,59.0 117.1,59.0 118.1,55.5 119.2,55.5 120.2,59.0 121.2,59.0 122.3,59.0 123.3,55.5 124.3,59.0 125.3,48.4 126.4,48.4 127.4,55.5 128.4,55.5 129.5,51.9 130.5,48.4 131.5,55.5 132.5,51.9 133.6,51.9 134.6,55.5 135.6,48.4 136.7,48.4 137.7,48.4 138.7,55.5 139.7,59.0 140.8,55.5 141.8,59.0 142.8,55.5 143.9,55.5 144.9,44.9 145.9,48.4 146.9,51.9 148.0,48.4 149.0,51.9 150.0,51.9 151.1,59.0 152.1,51.9 153.1,51.9 154.1,55.5 155.2,48.4 156.2,59.0 157.2,55.5 158.3,48.4 159.3,48.4 160.3,59.0 161.3,55.5 162.4,55.5 163.4,51.9 164.4,51.9 165.5,59.0 166.5,51.9 167.5,48.4 168.5,55.5 169.6,59.0 170.6,59.0 171.6,55.5 172.7,51.9 173.7,44.9 174.7,51.9 175.7,59.0 176.8,59.0 177.8,59.0 178.8,51.9 179.9,51.9 180.9,48.4 181.9,48.4 182.9,59.0 184.0,55.5 185.0,55.5 186.0,55.5 187.0,48.4 188.1,51.9 189.1,59.0 190.1,55.5 191.2,59.0 192.2,59.0 193.2,48.4 194.2,55.5 195.3,48.4 196.3,55.5 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,48.4 203.5,48.4 204.5,41.3 205.6,41.3 206.6,59.0 207.6,59.0 208.6,55.5 209.7,55.5 210.7,59.0 211.7,59.0 212.8,59.0 213.8,51.9 214.8,59.0 215.8,48.4 216.9,48.4 217.9,59.0 218.9,55.5 220.0,59.0 221.0,51.9 222.0,48.4 223.0,51.9 224.1,59.0 225.1,55.5 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,51.9 233.3,48.4 234.4,59.0 235.4,51.9 236.4,55.5 237.4,44.9 238.5,44.9 239.5,51.9 240.5,51.9 241.6,44.9 242.6,51.9 243.6,51.9 244.6,51.9 245.7,59.0 246.7,55.5 247.7,55.5 248.8,59.0 249.8,59.0 250.8,59.0 251.8,55.5 252.9,59.0 253.9,55.5 254.9,59.0 256.0,59.0 257.0,55.5 258.0,59.0 259.0,59.0 260.1,59.0 261.1,55.5 262.1,59.0 263.1,59.0 264.2,55.5 265.2,59.0 266.2,59.0 267.3,55.5 268.3,59.0 269.3,55.5 270.3,59.0 271.4,59.0 272.4,55.5 273.4,51.9 274.5,55.5 275.5,51.9 276.5,59.0 277.5,59.0 278.6,51.9 279.6,59.0 280.6,48.4 281.7,59.0 282.7,55.5 283.7,59.0 284.7,59.0 285.8,59.0 286.8,51.9 287.8,55.5 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,51.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">RICHMOND SUB-OFFICE HOLD<\/b><br>400 N 8th St<br>RICHMOND, VA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 126<\/b> (2025-10-22)&nbsp;&nbsp;<br><b>Mean:<\/b> 31/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 277<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,52.7 5.0,58.2 6.1,54.6 7.1,45.2 8.1,57.9 9.1,57.7 10.2,42.5 11.2,57.7 12.2,57.7 13.3,58.4 14.3,49.4 15.3,58.2 16.3,58.8 17.4,41.2 18.4,40.4 19.4,58.8 20.5,58.4 21.5,49.2 22.5,59.0 23.5,57.5 24.6,48.5 25.6,57.9 26.6,56.7 27.7,55.0 28.7,46.2 29.7,57.5 30.7,58.0 31.8,45.6 32.8,58.8 33.8,58.8 34.9,58.4 35.9,49.2 36.9,53.3 37.9,57.1 39.0,58.6 40.0,59.0 41.0,58.2 42.0,58.6 43.1,47.7 44.1,58.0 45.1,58.8 46.2,58.8 47.2,38.1 48.2,57.9 49.2,58.4 50.3,47.3 51.3,58.2 52.3,58.4 53.4,58.0 54.4,46.2 55.4,58.0 56.4,58.6 57.5,43.5 58.5,58.6 59.5,47.9 60.6,58.8 61.6,49.1 62.6,58.8 63.6,58.4 64.7,44.3 65.7,56.7 66.7,46.6 67.8,58.4 68.8,50.2 69.8,58.4 70.8,58.0 71.9,46.9 72.9,58.0 73.9,48.3 75.0,58.6 76.0,50.0 77.0,58.8 78.0,57.5 79.1,47.9 80.1,58.2 81.1,47.3 82.2,58.4 83.2,51.3 84.2,58.8 85.2,58.2 86.3,43.3 87.3,58.0 88.3,56.3 89.4,44.6 90.4,58.0 91.4,56.3 92.4,57.9 93.5,22.8 94.5,57.7 95.5,58.6 96.6,42.2 97.6,58.8 98.6,58.4 99.6,58.2 100.7,42.9 101.7,58.6 102.7,58.6 103.8,53.8 104.8,6.0 105.8,53.6 106.8,57.7 107.9,45.2 108.9,38.9 109.9,57.3 111.0,45.8 112.0,56.3 113.0,56.5 114.0,58.6 115.1,37.2 116.1,57.5 117.1,58.0 118.1,45.4 119.2,58.4 120.2,58.0 121.2,57.5 122.3,50.0 123.3,42.5 124.3,57.5 125.3,49.6 126.4,51.0 127.4,58.0 128.4,47.1 129.5,50.6 130.5,58.6 131.5,58.0 132.5,38.7 133.6,46.8 134.6,59.0 135.6,57.9 136.7,39.3 137.7,58.6 138.7,58.2 139.7,46.6 140.8,58.4 141.8,59.0 142.8,57.3 143.9,35.1 144.9,58.4 145.9,58.4 146.9,42.5 148.0,58.6 149.0,58.2 150.0,57.9 151.1,34.9 152.1,56.9 153.1,58.4 154.1,59.0 155.2,35.5 156.2,58.0 157.2,58.2 158.3,36.0 159.3,57.7 160.3,58.0 161.3,51.9 162.4,51.2 163.4,58.0 164.4,59.0 165.5,35.3 166.5,58.2 167.5,57.5 168.5,46.0 169.6,58.2 170.6,58.8 171.6,58.6 172.7,43.1 173.7,58.0 174.7,58.2 175.7,58.6 176.8,40.1 177.8,50.6 178.8,58.2 179.9,45.6 180.9,55.0 181.9,58.0 182.9,58.4 184.0,35.1 185.0,58.0 186.0,58.2 187.0,50.2 188.1,58.2 189.1,58.0 190.1,45.6 191.2,58.6 192.2,56.5 193.2,52.1 194.2,57.5 195.3,45.2 196.3,57.5 197.3,40.4 198.4,56.5 199.4,58.0 200.4,45.6 201.4,58.2 202.5,51.2 203.5,56.9 204.5,44.1 205.6,58.0 206.6,56.5 207.6,45.0 208.6,55.7 209.7,52.7 210.7,57.7 211.7,41.0 212.8,57.9 213.8,57.9 214.8,48.1 215.8,56.3 216.9,47.1 217.9,57.9 218.9,58.6 220.0,58.8 221.0,53.3 222.0,50.2 223.0,57.1 224.1,34.9 225.1,57.9 226.1,46.4 227.2,58.6 228.2,58.2 229.2,47.3 230.2,56.3 231.3,47.9 232.3,57.3 233.3,42.7 234.4,58.0 235.4,57.7 236.4,48.5 237.4,57.1 238.5,49.8 239.5,47.9 240.5,53.8 241.6,58.8 242.6,58.8 243.6,48.7 244.6,57.7 245.7,46.9 246.7,57.7 247.7,58.6 248.8,59.0 249.8,59.0 250.8,45.6 251.8,58.6 252.9,51.3 253.9,58.2 254.9,50.6 256.0,59.0 257.0,58.4 258.0,49.1 259.0,57.9 260.1,46.4 261.1,57.7 262.1,50.2 263.1,58.8 264.2,58.6 265.2,46.8 266.2,58.0 267.3,46.2 268.3,57.7 269.3,50.4 270.3,59.0 271.4,58.8 272.4,48.7 273.4,54.8 274.5,45.8 275.5,58.2 276.5,50.4 277.5,59.0 278.6,58.2 279.6,49.6 280.6,57.9 281.7,47.7 282.7,57.3 283.7,50.0 284.7,59.0 285.8,58.4 286.8,46.8 287.8,56.3 288.9,49.4 289.9,57.1 290.9,50.6 291.9,58.8 293.0,58.6 294.0,51.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">RALEIGH HOLD ROOM<\/b><br>120 Wilkinson Ave<br>CARY, NC<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 21<\/b> (2025-11-04)&nbsp;&nbsp;<br><b>Mean:<\/b> 7/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 21<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,48.9 5.0,51.4 6.1,43.9 7.1,41.3 8.1,28.7 9.1,46.4 10.2,54.0 11.2,56.5 12.2,48.9 13.3,48.9 14.3,43.9 15.3,41.3 16.3,26.2 17.4,48.9 18.4,43.9 19.4,28.7 20.5,43.9 21.5,48.9 22.5,59.0 23.5,51.4 24.6,51.4 25.6,51.4 26.6,51.4 27.7,48.9 28.7,41.3 29.7,36.3 30.7,38.8 31.8,46.4 32.8,56.5 33.8,54.0 34.9,48.9 35.9,46.4 36.9,33.8 37.9,54.0 39.0,48.9 40.0,56.5 41.0,59.0 42.0,46.4 43.1,48.9 44.1,46.4 45.1,23.7 46.2,54.0 47.2,51.4 48.2,59.0 49.2,26.2 50.3,36.3 51.3,48.9 52.3,38.8 53.4,26.2 54.4,59.0 55.4,38.8 56.4,36.3 57.5,33.8 58.5,46.4 59.5,38.8 60.6,56.5 61.6,48.9 62.6,46.4 63.6,48.9 64.7,38.8 65.7,46.4 66.7,31.2 67.8,56.5 68.8,54.0 69.8,54.0 70.8,41.3 71.9,38.8 72.9,43.9 73.9,26.2 75.0,51.4 76.0,54.0 77.0,54.0 78.0,46.4 79.1,46.4 80.1,54.0 81.1,41.3 82.2,51.4 83.2,54.0 84.2,33.8 85.2,54.0 86.3,38.8 87.3,36.3 88.3,26.2 89.4,48.9 90.4,43.9 91.4,56.5 92.4,54.0 93.5,46.4 94.5,43.9 95.5,33.8 96.6,56.5 97.6,46.4 98.6,59.0 99.6,46.4 100.7,51.4 101.7,43.9 102.7,38.8 103.8,59.0 104.8,54.0 105.8,43.9 106.8,46.4 107.9,46.4 108.9,43.9 109.9,33.8 111.0,51.4 112.0,54.0 113.0,41.3 114.0,51.4 115.1,36.3 116.1,43.9 117.1,38.8 118.1,46.4 119.2,54.0 120.2,43.9 121.2,36.3 122.3,33.8 123.3,41.3 124.3,28.7 125.3,51.4 126.4,48.9 127.4,43.9 128.4,48.9 129.5,38.8 130.5,28.7 131.5,28.7 132.5,56.5 133.6,56.5 134.6,51.4 135.6,46.4 136.7,43.9 137.7,38.8 138.7,36.3 139.7,48.9 140.8,54.0 141.8,54.0 142.8,46.4 143.9,33.8 144.9,36.3 145.9,41.3 146.9,59.0 148.0,56.5 149.0,51.4 150.0,48.9 151.1,48.9 152.1,33.8 153.1,33.8 154.1,46.4 155.2,43.9 156.2,56.5 157.2,26.2 158.3,36.3 159.3,21.1 160.3,43.9 161.3,46.4 162.4,51.4 163.4,38.8 164.4,6.0 165.5,28.7 166.5,36.3 167.5,33.8 168.5,54.0 169.6,43.9 170.6,23.7 171.6,51.4 172.7,38.8 173.7,38.8 174.7,21.1 175.7,56.5 176.8,41.3 177.8,48.9 178.8,18.6 179.9,31.2 180.9,8.5 181.9,33.8 182.9,48.9 184.0,41.3 185.0,48.9 186.0,46.4 187.0,36.3 188.1,59.0 189.1,33.8 190.1,51.4 191.2,51.4 192.2,51.4 193.2,43.9 194.2,51.4 195.3,46.4 196.3,38.8 197.3,43.9 198.4,43.9 199.4,26.2 200.4,36.3 201.4,43.9 202.5,43.9 203.5,43.9 204.5,48.9 205.6,46.4 206.6,48.9 207.6,38.8 208.6,23.7 209.7,33.8 210.7,23.7 211.7,43.9 212.8,48.9 213.8,46.4 214.8,46.4 215.8,38.8 216.9,59.0 217.9,51.4 218.9,51.4 220.0,54.0 221.0,46.4 222.0,46.4 223.0,33.8 224.1,51.4 225.1,26.2 226.1,48.9 227.2,46.4 228.2,46.4 229.2,36.3 230.2,38.8 231.3,43.9 232.3,43.9 233.3,41.3 234.4,41.3 235.4,41.3 236.4,46.4 237.4,38.8 238.5,31.2 239.5,41.3 240.5,48.9 241.6,48.9 242.6,51.4 243.6,48.9 244.6,43.9 245.7,36.3 246.7,36.3 247.7,41.3 248.8,59.0 249.8,51.4 250.8,31.2 251.8,43.9 252.9,28.7 253.9,16.1 254.9,46.4 256.0,46.4 257.0,43.9 258.0,51.4 259.0,38.8 260.1,59.0 261.1,48.9 262.1,46.4 263.1,43.9 264.2,36.3 265.2,46.4 266.2,41.3 267.3,26.2 268.3,23.7 269.3,46.4 270.3,33.8 271.4,38.8 272.4,48.9 273.4,26.2 274.5,36.3 275.5,31.2 276.5,41.3 277.5,41.3 278.6,56.5 279.6,38.8 280.6,28.7 281.7,43.9 282.7,31.2 283.7,38.8 284.7,38.8 285.8,41.3 286.8,36.3 287.8,31.2 288.9,28.7 289.9,31.2 290.9,36.3 291.9,33.8 293.0,36.3 294.0,33.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">REDDING HOLD ROOM<\/b><br>443 Redcliff Drive<br>Redding, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 5<\/b> (2025-11-20)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 7<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,51.4 6.1,51.4 7.1,36.3 8.1,43.9 9.1,59.0 10.2,59.0 11.2,51.4 12.2,59.0 13.3,59.0 14.3,51.4 15.3,59.0 16.3,59.0 17.4,59.0 18.4,43.9 19.4,51.4 20.5,59.0 21.5,51.4 22.5,59.0 23.5,59.0 24.6,59.0 25.6,51.4 26.6,59.0 27.7,43.9 28.7,59.0 29.7,59.0 30.7,51.4 31.8,59.0 32.8,59.0 33.8,51.4 34.9,51.4 35.9,43.9 36.9,36.3 37.9,51.4 39.0,59.0 40.0,51.4 41.0,59.0 42.0,43.9 43.1,43.9 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,43.9 50.3,36.3 51.3,43.9 52.3,36.3 53.4,59.0 54.4,59.0 55.4,59.0 56.4,36.3 57.5,36.3 58.5,36.3 59.5,59.0 60.6,59.0 61.6,59.0 62.6,36.3 63.6,59.0 64.7,59.0 65.7,28.7 66.7,59.0 67.8,59.0 68.8,59.0 69.8,43.9 70.8,59.0 71.9,59.0 72.9,43.9 73.9,43.9 75.0,59.0 76.0,51.4 77.0,43.9 78.0,59.0 79.1,51.4 80.1,51.4 81.1,59.0 82.2,59.0 83.2,59.0 84.2,28.7 85.2,28.7 86.3,51.4 87.3,51.4 88.3,59.0 89.4,59.0 90.4,59.0 91.4,36.3 92.4,6.0 93.5,36.3 94.5,36.3 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,51.4 100.7,21.1 101.7,21.1 102.7,13.6 103.8,51.4 104.8,51.4 105.8,59.0 106.8,59.0 107.9,51.4 108.9,51.4 109.9,43.9 111.0,43.9 112.0,51.4 113.0,43.9 114.0,43.9 115.1,51.4 116.1,59.0 117.1,36.3 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,51.4 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,28.7 129.5,28.7 130.5,51.4 131.5,59.0 132.5,59.0 133.6,59.0 134.6,51.4 135.6,51.4 136.7,51.4 137.7,51.4 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,51.4 178.8,43.9 179.9,36.3 180.9,21.1 181.9,28.7 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,51.4 191.2,51.4 192.2,43.9 193.2,36.3 194.2,51.4 195.3,21.1 196.3,28.7 197.3,59.0 198.4,59.0 199.4,43.9 200.4,43.9 201.4,59.0 202.5,43.9 203.5,36.3 204.5,59.0 205.6,51.4 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,43.9 214.8,59.0 215.8,59.0 216.9,59.0 217.9,51.4 218.9,59.0 220.0,51.4 221.0,36.3 222.0,36.3 223.0,51.4 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,51.4 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,51.4 251.8,59.0 252.9,51.4 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,51.4 262.1,51.4 263.1,59.0 264.2,59.0 265.2,51.4 266.2,51.4 267.3,59.0 268.3,59.0 269.3,59.0 270.3,43.9 271.4,51.4 272.4,59.0 273.4,59.0 274.5,51.4 275.5,51.4 276.5,59.0 277.5,51.4 278.6,59.0 279.6,51.4 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,43.9 288.9,43.9 289.9,59.0 290.9,59.0 291.9,59.0 293.0,51.4 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">RIO GRANDE VALLEY STAGING<\/b><br>27991 BUENA VISTA BLVD<br>LOS FRESNOS, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 11<\/b> (2025-10-07)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 11<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,44.5 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,54.2 88.3,44.5 89.4,49.4 90.4,59.0 91.4,59.0 92.4,59.0 93.5,15.6 94.5,44.5 95.5,59.0 96.6,59.0 97.6,49.4 98.6,49.4 99.6,59.0 100.7,34.9 101.7,49.4 102.7,39.7 103.8,49.4 104.8,44.5 105.8,59.0 106.8,39.7 107.9,59.0 108.9,44.5 109.9,59.0 111.0,39.7 112.0,49.4 113.0,59.0 114.0,49.4 115.1,49.4 116.1,44.5 117.1,44.5 118.1,34.9 119.2,59.0 120.2,49.4 121.2,59.0 122.3,34.9 123.3,49.4 124.3,10.8 125.3,34.9 126.4,54.2 127.4,39.7 128.4,59.0 129.5,59.0 130.5,49.4 131.5,59.0 132.5,25.3 133.6,59.0 134.6,10.8 135.6,6.0 136.7,20.5 137.7,49.4 138.7,49.4 139.7,59.0 140.8,59.0 141.8,49.4 142.8,49.4 143.9,59.0 144.9,59.0 145.9,59.0 146.9,44.5 148.0,59.0 149.0,59.0 150.0,34.9 151.1,59.0 152.1,15.6 153.1,39.7 154.1,59.0 155.2,59.0 156.2,59.0 157.2,30.1 158.3,44.5 159.3,49.4 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,30.1 167.5,59.0 168.5,59.0 169.6,39.7 170.6,59.0 171.6,59.0 172.7,49.4 173.7,59.0 174.7,49.4 175.7,30.1 176.8,59.0 177.8,59.0 178.8,59.0 179.9,49.4 180.9,54.2 181.9,49.4 182.9,54.2 184.0,59.0 185.0,59.0 186.0,54.2 187.0,49.4 188.1,59.0 189.1,25.3 190.1,59.0 191.2,59.0 192.2,49.4 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,49.4 198.4,59.0 199.4,39.7 200.4,59.0 201.4,59.0 202.5,59.0 203.5,39.7 204.5,49.4 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,49.4 212.8,39.7 213.8,59.0 214.8,59.0 215.8,49.4 216.9,59.0 217.9,59.0 218.9,59.0 220.0,39.7 221.0,44.5 222.0,59.0 223.0,39.7 224.1,59.0 225.1,49.4 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,44.5 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,44.5 240.5,59.0 241.6,59.0 242.6,59.0 243.6,44.5 244.6,54.2 245.7,54.2 246.7,39.7 247.7,59.0 248.8,59.0 249.8,39.7 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,49.4 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,44.5 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,44.5 273.4,49.4 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,44.5 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,30.1 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">RICHLAND HOLD ROOM<\/b><br>825 Jadwin Avenue, Room G165<br>Richland, WA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 4<\/b> (2025-12-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 4<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,45.8 6.1,32.5 7.1,32.5 8.1,6.0 9.1,45.8 10.2,59.0 11.2,59.0 12.2,59.0 13.3,45.8 14.3,32.5 15.3,59.0 16.3,19.2 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,32.5 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,19.2 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,45.8 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,45.8 43.1,45.8 44.1,45.8 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,45.8 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,45.8 58.5,59.0 59.5,32.5 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,32.5 65.7,45.8 66.7,45.8 67.8,59.0 68.8,59.0 69.8,59.0 70.8,19.2 71.9,19.2 72.9,45.8 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,45.8 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,45.8 85.2,45.8 86.3,45.8 87.3,19.2 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,45.8 94.5,45.8 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,32.5 100.7,45.8 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,32.5 106.8,45.8 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,19.2 122.3,59.0 123.3,45.8 124.3,45.8 125.3,45.8 126.4,59.0 127.4,59.0 128.4,45.8 129.5,19.2 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,45.8 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,19.2 157.2,45.8 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,32.5 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,32.5 171.6,59.0 172.7,45.8 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,45.8 180.9,32.5 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,45.8 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,45.8 193.2,59.0 194.2,59.0 195.3,19.2 196.3,45.8 197.3,59.0 198.4,59.0 199.4,59.0 200.4,32.5 201.4,59.0 202.5,45.8 203.5,45.8 204.5,59.0 205.6,59.0 206.6,59.0 207.6,6.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,45.8 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,19.2 229.2,32.5 230.2,59.0 231.3,32.5 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,45.8 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,45.8 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,32.5 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,45.8 273.4,45.8 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,45.8 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ROCK ISLAND HOLD ROOM<\/b><br>1317 3RD AVENUE<br>ROCK ISLAND, IL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 5<\/b> (2025-11-06)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 5<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,48.4 6.1,37.8 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,37.8 13.3,27.2 14.3,59.0 15.3,59.0 16.3,27.2 17.4,59.0 18.4,59.0 19.4,48.4 20.5,59.0 21.5,59.0 22.5,59.0 23.5,16.6 24.6,59.0 25.6,59.0 26.6,48.4 27.7,48.4 28.7,48.4 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,37.8 35.9,48.4 36.9,37.8 37.9,59.0 39.0,59.0 40.0,59.0 41.0,48.4 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,48.4 49.2,59.0 50.3,59.0 51.3,48.4 52.3,37.8 53.4,59.0 54.4,59.0 55.4,37.8 56.4,59.0 57.5,48.4 58.5,59.0 59.5,16.6 60.6,48.4 61.6,59.0 62.6,37.8 63.6,37.8 64.7,59.0 65.7,48.4 66.7,37.8 67.8,59.0 68.8,59.0 69.8,37.8 70.8,48.4 71.9,48.4 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,48.4 78.0,37.8 79.1,48.4 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,37.8 85.2,48.4 86.3,48.4 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,48.4 92.4,37.8 93.5,48.4 94.5,37.8 95.5,37.8 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,27.2 101.7,6.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,37.8 106.8,37.8 107.9,59.0 108.9,48.4 109.9,48.4 111.0,59.0 112.0,59.0 113.0,37.8 114.0,48.4 115.1,48.4 116.1,59.0 117.1,37.8 118.1,59.0 119.2,59.0 120.2,59.0 121.2,48.4 122.3,59.0 123.3,59.0 124.3,48.4 125.3,59.0 126.4,59.0 127.4,48.4 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,48.4 135.6,59.0 136.7,48.4 137.7,27.2 138.7,27.2 139.7,59.0 140.8,59.0 141.8,59.0 142.8,37.8 143.9,59.0 144.9,59.0 145.9,27.2 146.9,59.0 148.0,59.0 149.0,48.4 150.0,59.0 151.1,59.0 152.1,59.0 153.1,37.8 154.1,59.0 155.2,59.0 156.2,48.4 157.2,48.4 158.3,48.4 159.3,59.0 160.3,37.8 161.3,59.0 162.4,59.0 163.4,37.8 164.4,48.4 165.5,48.4 166.5,6.0 167.5,27.2 168.5,59.0 169.6,59.0 170.6,16.6 171.6,59.0 172.7,37.8 173.7,27.2 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,48.4 179.9,59.0 180.9,59.0 181.9,16.6 182.9,16.6 184.0,59.0 185.0,59.0 186.0,48.4 187.0,27.2 188.1,59.0 189.1,27.2 190.1,59.0 191.2,59.0 192.2,37.8 193.2,59.0 194.2,37.8 195.3,59.0 196.3,48.4 197.3,59.0 198.4,59.0 199.4,37.8 200.4,37.8 201.4,59.0 202.5,37.8 203.5,37.8 204.5,59.0 205.6,59.0 206.6,48.4 207.6,48.4 208.6,37.8 209.7,37.8 210.7,27.2 211.7,59.0 212.8,59.0 213.8,59.0 214.8,27.2 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,48.4 222.0,59.0 223.0,59.0 224.1,59.0 225.1,48.4 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,37.8 231.3,59.0 232.3,37.8 233.3,59.0 234.4,59.0 235.4,59.0 236.4,37.8 237.4,48.4 238.5,59.0 239.5,16.6 240.5,59.0 241.6,59.0 242.6,59.0 243.6,27.2 244.6,59.0 245.7,37.8 246.7,37.8 247.7,59.0 248.8,59.0 249.8,37.8 250.8,48.4 251.8,59.0 252.9,59.0 253.9,37.8 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,48.4 260.1,48.4 261.1,48.4 262.1,59.0 263.1,59.0 264.2,48.4 265.2,48.4 266.2,48.4 267.3,59.0 268.3,27.2 269.3,59.0 270.3,59.0 271.4,59.0 272.4,48.4 273.4,37.8 274.5,37.8 275.5,27.2 276.5,59.0 277.5,59.0 278.6,48.4 279.6,59.0 280.6,37.8 281.7,48.4 282.7,37.8 283.7,59.0 284.7,59.0 285.8,48.4 286.8,59.0 287.8,59.0 288.9,59.0 289.9,16.6 290.9,59.0 291.9,59.0 293.0,27.2 294.0,48.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ROANOKE SUB-OFFICE HOLD ROOM<\/b><br>103 West Main Street<br>Salem, VA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 5<\/b> (2025-10-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 6<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,32.5 7.1,14.8 8.1,50.2 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,41.3 14.3,59.0 15.3,32.5 16.3,32.5 17.4,59.0 18.4,59.0 19.4,41.3 20.5,59.0 21.5,59.0 22.5,50.2 23.5,59.0 24.6,59.0 25.6,50.2 26.6,50.2 27.7,50.2 28.7,59.0 29.7,23.7 30.7,41.3 31.8,59.0 32.8,59.0 33.8,59.0 34.9,50.2 35.9,59.0 36.9,59.0 37.9,50.2 39.0,6.0 40.0,14.8 41.0,50.2 42.0,59.0 43.1,50.2 44.1,59.0 45.1,32.5 46.2,59.0 47.2,59.0 48.2,50.2 49.2,59.0 50.3,59.0 51.3,23.7 52.3,50.2 53.4,59.0 54.4,59.0 55.4,50.2 56.4,59.0 57.5,41.3 58.5,50.2 59.5,23.7 60.6,50.2 61.6,50.2 62.6,32.5 63.6,32.5 64.7,59.0 65.7,32.5 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,23.7 71.9,50.2 72.9,59.0 73.9,50.2 75.0,50.2 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,50.2 82.2,59.0 83.2,59.0 84.2,50.2 85.2,59.0 86.3,50.2 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,41.3 92.4,32.5 93.5,59.0 94.5,41.3 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,23.7 102.7,50.2 103.8,59.0 104.8,59.0 105.8,50.2 106.8,41.3 107.9,59.0 108.9,50.2 109.9,50.2 111.0,59.0 112.0,59.0 113.0,59.0 114.0,41.3 115.1,50.2 116.1,32.5 117.1,59.0 118.1,59.0 119.2,59.0 120.2,41.3 121.2,50.2 122.3,32.5 123.3,41.3 124.3,41.3 125.3,59.0 126.4,59.0 127.4,59.0 128.4,41.3 129.5,50.2 130.5,50.2 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,50.2 136.7,50.2 137.7,14.8 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,50.2 144.9,50.2 145.9,50.2 146.9,50.2 148.0,59.0 149.0,59.0 150.0,50.2 151.1,59.0 152.1,32.5 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,50.2 158.3,59.0 159.3,59.0 160.3,59.0 161.3,50.2 162.4,59.0 163.4,50.2 164.4,50.2 165.5,50.2 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,41.3 172.7,59.0 173.7,41.3 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,50.2 179.9,41.3 180.9,41.3 181.9,23.7 182.9,59.0 184.0,59.0 185.0,50.2 186.0,41.3 187.0,50.2 188.1,59.0 189.1,50.2 190.1,41.3 191.2,59.0 192.2,59.0 193.2,50.2 194.2,50.2 195.3,41.3 196.3,59.0 197.3,59.0 198.4,41.3 199.4,59.0 200.4,59.0 201.4,41.3 202.5,32.5 203.5,32.5 204.5,50.2 205.6,59.0 206.6,59.0 207.6,50.2 208.6,59.0 209.7,32.5 210.7,59.0 211.7,41.3 212.8,59.0 213.8,50.2 214.8,41.3 215.8,50.2 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,32.5 223.0,41.3 224.1,59.0 225.1,32.5 226.1,59.0 227.2,59.0 228.2,32.5 229.2,59.0 230.2,23.7 231.3,59.0 232.3,32.5 233.3,59.0 234.4,59.0 235.4,59.0 236.4,41.3 237.4,59.0 238.5,14.8 239.5,50.2 240.5,59.0 241.6,59.0 242.6,50.2 243.6,41.3 244.6,41.3 245.7,32.5 246.7,41.3 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,50.2 252.9,41.3 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,32.5 259.0,14.8 260.1,41.3 261.1,50.2 262.1,59.0 263.1,59.0 264.2,59.0 265.2,50.2 266.2,41.3 267.3,59.0 268.3,50.2 269.3,32.5 270.3,59.0 271.4,41.3 272.4,50.2 273.4,50.2 274.5,23.7 275.5,32.5 276.5,59.0 277.5,59.0 278.6,50.2 279.6,59.0 280.6,50.2 281.7,59.0 282.7,50.2 283.7,59.0 284.7,50.2 285.8,41.3 286.8,59.0 287.8,50.2 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">RANDALL COUNTY JAIL<\/b><br>9100 South Georgia Street<br>Amarillo, TX<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 7<\/b> (2025-12-21)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 14<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,55.2 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,55.2 205.6,51.4 206.6,51.4 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,40.1 212.8,32.5 213.8,32.5 214.8,59.0 215.8,43.9 216.9,43.9 217.9,43.9 218.9,51.4 220.0,51.4 221.0,51.4 222.0,59.0 223.0,51.4 224.1,51.4 225.1,59.0 226.1,40.1 227.2,40.1 228.2,32.5 229.2,51.4 230.2,59.0 231.3,59.0 232.3,59.0 233.3,47.6 234.4,47.6 235.4,36.3 236.4,47.6 237.4,59.0 238.5,55.2 239.5,55.2 240.5,32.5 241.6,32.5 242.6,32.5 243.6,59.0 244.6,59.0 245.7,59.0 246.7,55.2 247.7,51.4 248.8,51.4 249.8,51.4 250.8,51.4 251.8,51.4 252.9,59.0 253.9,47.6 254.9,47.6 256.0,47.6 257.0,40.1 258.0,51.4 259.0,59.0 260.1,51.4 261.1,51.4 262.1,43.9 263.1,36.3 264.2,36.3 265.2,59.0 266.2,55.2 267.3,59.0 268.3,59.0 269.3,51.4 270.3,51.4 271.4,47.6 272.4,55.2 273.4,59.0 274.5,59.0 275.5,59.0 276.5,47.6 277.5,47.6 278.6,6.0 279.6,17.4 280.6,36.3 281.7,36.3 282.7,59.0 283.7,51.4 284.7,51.4 285.8,51.4 286.8,55.2 287.8,47.6 288.9,40.1 289.9,47.6 290.9,43.9 291.9,43.9 293.0,36.3 294.0,51.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ROCKINGHAM COUNTY JAIL<\/b><br>25 South Liberty Street<br>Harrisonburg, VA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 7<\/b> (2025-10-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 11<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,49.4 5.0,44.5 6.1,20.5 7.1,20.5 8.1,10.8 9.1,6.0 10.2,15.6 11.2,44.5 12.2,39.7 13.3,54.2 14.3,54.2 15.3,54.2 16.3,59.0 17.4,59.0 18.4,54.2 19.4,49.4 20.5,34.9 21.5,39.7 22.5,49.4 23.5,49.4 24.6,59.0 25.6,59.0 26.6,49.4 27.7,44.5 28.7,54.2 29.7,54.2 30.7,54.2 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,39.7 36.9,39.7 37.9,59.0 39.0,59.0 40.0,59.0 41.0,54.2 42.0,54.2 43.1,49.4 44.1,44.5 45.1,49.4 46.2,44.5 47.2,44.5 48.2,44.5 49.2,49.4 50.3,54.2 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,54.2 56.4,54.2 57.5,59.0 58.5,54.2 59.5,54.2 60.6,54.2 61.6,54.2 62.6,49.4 63.6,54.2 64.7,49.4 65.7,34.9 66.7,39.7 67.8,44.5 68.8,25.3 69.8,20.5 70.8,34.9 71.9,44.5 72.9,44.5 73.9,59.0 75.0,59.0 76.0,59.0 77.0,44.5 78.0,34.9 79.1,39.7 80.1,44.5 81.1,49.4 82.2,49.4 83.2,44.5 84.2,30.1 85.2,34.9 86.3,30.1 87.3,30.1 88.3,30.1 89.4,49.4 90.4,49.4 91.4,49.4 92.4,49.4 93.5,34.9 94.5,34.9 95.5,54.2 96.6,59.0 97.6,59.0 98.6,59.0 99.6,54.2 100.7,49.4 101.7,39.7 102.7,39.7 103.8,54.2 104.8,49.4 105.8,44.5 106.8,25.3 107.9,30.1 108.9,44.5 109.9,44.5 111.0,54.2 112.0,49.4 113.0,49.4 114.0,49.4 115.1,49.4 116.1,44.5 117.1,44.5 118.1,44.5 119.2,49.4 120.2,39.7 121.2,39.7 122.3,34.9 123.3,30.1 124.3,34.9 125.3,44.5 126.4,49.4 127.4,44.5 128.4,44.5 129.5,39.7 130.5,34.9 131.5,25.3 132.5,30.1 133.6,39.7 134.6,39.7 135.6,44.5 136.7,34.9 137.7,34.9 138.7,34.9 139.7,49.4 140.8,49.4 141.8,54.2 142.8,49.4 143.9,49.4 144.9,54.2 145.9,39.7 146.9,34.9 148.0,44.5 149.0,44.5 150.0,59.0 151.1,54.2 152.1,54.2 153.1,49.4 154.1,49.4 155.2,54.2 156.2,59.0 157.2,54.2 158.3,44.5 159.3,39.7 160.3,54.2 161.3,59.0 162.4,59.0 163.4,49.4 164.4,49.4 165.5,49.4 166.5,39.7 167.5,49.4 168.5,59.0 169.6,54.2 170.6,49.4 171.6,49.4 172.7,49.4 173.7,44.5 174.7,49.4 175.7,59.0 176.8,59.0 177.8,44.5 178.8,34.9 179.9,30.1 180.9,34.9 181.9,44.5 182.9,49.4 184.0,59.0 185.0,44.5 186.0,39.7 187.0,44.5 188.1,54.2 189.1,54.2 190.1,59.0 191.2,59.0 192.2,49.4 193.2,39.7 194.2,34.9 195.3,39.7 196.3,59.0 197.3,59.0 198.4,59.0 199.4,49.4 200.4,49.4 201.4,49.4 202.5,54.2 203.5,54.2 204.5,59.0 205.6,54.2 206.6,54.2 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,54.2 215.8,54.2 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,54.2 222.0,44.5 223.0,44.5 224.1,49.4 225.1,49.4 226.1,59.0 227.2,59.0 228.2,59.0 229.2,54.2 230.2,25.3 231.3,30.1 232.3,44.5 233.3,44.5 234.4,44.5 235.4,30.1 236.4,34.9 237.4,34.9 238.5,49.4 239.5,54.2 240.5,59.0 241.6,59.0 242.6,59.0 243.6,54.2 244.6,54.2 245.7,54.2 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,44.5 258.0,44.5 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,54.2 265.2,54.2 266.2,54.2 267.3,54.2 268.3,49.4 269.3,54.2 270.3,44.5 271.4,44.5 272.4,49.4 273.4,54.2 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,54.2 280.6,54.2 281.7,49.4 282.7,39.7 283.7,44.5 284.7,54.2 285.8,49.4 286.8,54.2 287.8,54.2 288.9,54.2 289.9,54.2 290.9,54.2 291.9,49.4 293.0,49.4 294.0,49.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">RAPID CITY HOLD ROOM<\/b><br>1675 SAMCO ROAD<br>RAPID CITY, SD<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 5<\/b> (2026-01-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 7<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,43.9 6.1,51.4 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,51.4 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,51.4 20.5,51.4 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,43.9 29.7,51.4 30.7,59.0 31.8,51.4 32.8,59.0 33.8,59.0 34.9,51.4 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,51.4 42.0,51.4 43.1,59.0 44.1,51.4 45.1,59.0 46.2,59.0 47.2,51.4 48.2,59.0 49.2,43.9 50.3,51.4 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,51.4 58.5,51.4 59.5,59.0 60.6,59.0 61.6,59.0 62.6,51.4 63.6,51.4 64.7,51.4 65.7,51.4 66.7,51.4 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,6.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,51.4 78.0,59.0 79.1,43.9 80.1,59.0 81.1,51.4 82.2,59.0 83.2,59.0 84.2,51.4 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,51.4 93.5,36.3 94.5,51.4 95.5,59.0 96.6,59.0 97.6,59.0 98.6,51.4 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,51.4 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,51.4 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,51.4 118.1,59.0 119.2,59.0 120.2,43.9 121.2,28.7 122.3,51.4 123.3,59.0 124.3,59.0 125.3,36.3 126.4,59.0 127.4,51.4 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,51.4 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,51.4 141.8,59.0 142.8,51.4 143.9,51.4 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,43.9 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,51.4 160.3,59.0 161.3,59.0 162.4,59.0 163.4,36.3 164.4,51.4 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,51.4 172.7,51.4 173.7,59.0 174.7,28.7 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,51.4 186.0,36.3 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,51.4 195.3,51.4 196.3,36.3 197.3,59.0 198.4,59.0 199.4,59.0 200.4,51.4 201.4,43.9 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,51.4 218.9,59.0 220.0,59.0 221.0,51.4 222.0,59.0 223.0,43.9 224.1,51.4 225.1,51.4 226.1,59.0 227.2,59.0 228.2,51.4 229.2,59.0 230.2,51.4 231.3,59.0 232.3,51.4 233.3,59.0 234.4,59.0 235.4,59.0 236.4,51.4 237.4,59.0 238.5,59.0 239.5,21.1 240.5,36.3 241.6,59.0 242.6,36.3 243.6,51.4 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,51.4 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,51.4 258.0,51.4 259.0,59.0 260.1,51.4 261.1,59.0 262.1,59.0 263.1,28.7 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,43.9 272.4,51.4 273.4,43.9 274.5,59.0 275.5,43.9 276.5,43.9 277.5,51.4 278.6,59.0 279.6,36.3 280.6,59.0 281.7,51.4 282.7,36.3 283.7,51.4 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,43.9 290.9,51.4 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ROSWELL HOLD ROOM<\/b><br>500 N. Richardson Avenue<br>Roswell, NM<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 11<\/b> (2025-12-02)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 16<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,52.4 5.0,52.4 6.1,12.6 7.1,55.7 8.1,55.7 9.1,49.1 10.2,49.1 11.2,55.7 12.2,45.8 13.3,25.9 14.3,39.1 15.3,59.0 16.3,45.8 17.4,45.8 18.4,52.4 19.4,49.1 20.5,42.4 21.5,52.4 22.5,52.4 23.5,55.7 24.6,52.4 25.6,52.4 26.6,49.1 27.7,29.2 28.7,45.8 29.7,52.4 30.7,49.1 31.8,45.8 32.8,49.1 33.8,55.7 34.9,52.4 35.9,55.7 36.9,42.4 37.9,59.0 39.0,52.4 40.0,59.0 41.0,52.4 42.0,42.4 43.1,45.8 44.1,52.4 45.1,45.8 46.2,45.8 47.2,52.4 48.2,52.4 49.2,39.1 50.3,45.8 51.3,55.7 52.3,52.4 53.4,55.7 54.4,59.0 55.4,52.4 56.4,45.8 57.5,42.4 58.5,59.0 59.5,55.7 60.6,52.4 61.6,55.7 62.6,55.7 63.6,45.8 64.7,39.1 65.7,55.7 66.7,55.7 67.8,59.0 68.8,55.7 69.8,52.4 70.8,49.1 71.9,55.7 72.9,52.4 73.9,32.5 75.0,32.5 76.0,59.0 77.0,52.4 78.0,45.8 79.1,45.8 80.1,52.4 81.1,49.1 82.2,49.1 83.2,59.0 84.2,39.1 85.2,39.1 86.3,52.4 87.3,59.0 88.3,49.1 89.4,45.8 90.4,55.7 91.4,59.0 92.4,39.1 93.5,39.1 94.5,55.7 95.5,45.8 96.6,49.1 97.6,59.0 98.6,59.0 99.6,52.4 100.7,39.1 101.7,42.4 102.7,52.4 103.8,59.0 104.8,52.4 105.8,45.8 106.8,49.1 107.9,49.1 108.9,32.5 109.9,52.4 111.0,59.0 112.0,45.8 113.0,42.4 114.0,12.6 115.1,6.0 116.1,49.1 117.1,49.1 118.1,45.8 119.2,55.7 120.2,52.4 121.2,55.7 122.3,59.0 123.3,39.1 124.3,35.8 125.3,52.4 126.4,59.0 127.4,55.7 128.4,55.7 129.5,49.1 130.5,45.8 131.5,49.1 132.5,49.1 133.6,55.7 134.6,55.7 135.6,55.7 136.7,49.1 137.7,45.8 138.7,42.4 139.7,42.4 140.8,52.4 141.8,52.4 142.8,45.8 143.9,45.8 144.9,45.8 145.9,52.4 146.9,55.7 148.0,45.8 149.0,52.4 150.0,55.7 151.1,55.7 152.1,52.4 153.1,45.8 154.1,52.4 155.2,59.0 156.2,42.4 157.2,45.8 158.3,49.1 159.3,49.1 160.3,52.4 161.3,59.0 162.4,55.7 163.4,52.4 164.4,45.8 165.5,32.5 166.5,42.4 167.5,49.1 168.5,59.0 169.6,59.0 170.6,52.4 171.6,39.1 172.7,35.8 173.7,42.4 174.7,52.4 175.7,52.4 176.8,52.4 177.8,55.7 178.8,32.5 179.9,25.9 180.9,42.4 181.9,52.4 182.9,49.1 184.0,55.7 185.0,49.1 186.0,39.1 187.0,52.4 188.1,55.7 189.1,55.7 190.1,59.0 191.2,59.0 192.2,49.1 193.2,22.6 194.2,25.9 195.3,52.4 196.3,52.4 197.3,52.4 198.4,42.4 199.4,52.4 200.4,49.1 201.4,45.8 202.5,35.8 203.5,45.8 204.5,55.7 205.6,59.0 206.6,52.4 207.6,45.8 208.6,42.4 209.7,55.7 210.7,55.7 211.7,52.4 212.8,55.7 213.8,59.0 214.8,52.4 215.8,49.1 216.9,55.7 217.9,55.7 218.9,55.7 220.0,52.4 221.0,52.4 222.0,49.1 223.0,49.1 224.1,55.7 225.1,59.0 226.1,52.4 227.2,52.4 228.2,49.1 229.2,45.8 230.2,42.4 231.3,42.4 232.3,42.4 233.3,49.1 234.4,59.0 235.4,55.7 236.4,42.4 237.4,49.1 238.5,52.4 239.5,35.8 240.5,22.6 241.6,49.1 242.6,59.0 243.6,55.7 244.6,42.4 245.7,35.8 246.7,52.4 247.7,59.0 248.8,59.0 249.8,55.7 250.8,59.0 251.8,55.7 252.9,55.7 253.9,55.7 254.9,55.7 256.0,55.7 257.0,52.4 258.0,29.2 259.0,59.0 260.1,42.4 261.1,49.1 262.1,55.7 263.1,59.0 264.2,59.0 265.2,42.4 266.2,45.8 267.3,55.7 268.3,52.4 269.3,59.0 270.3,55.7 271.4,45.8 272.4,42.4 273.4,49.1 274.5,45.8 275.5,49.1 276.5,59.0 277.5,59.0 278.6,59.0 279.6,35.8 280.6,29.2 281.7,45.8 282.7,52.4 283.7,52.4 284.7,49.1 285.8,55.7 286.8,42.4 287.8,55.7 288.9,49.1 289.9,42.4 290.9,42.4 291.9,45.8 293.0,59.0 294.0,45.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SANTA ANA DRO HOLDROOM<\/b><br>34 CIVIC CENTER PLAZA<br>SANTA ANA, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 68<\/b> (2025-10-18)&nbsp;&nbsp;<br><b>Mean:<\/b> 16/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 150<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,52.6 6.1,50.2 7.1,45.6 8.1,45.2 9.1,54.1 10.2,41.7 11.2,31.8 12.2,17.3 13.3,16.6 14.3,6.0 15.3,14.8 16.3,41.0 17.4,36.4 18.4,23.7 19.4,36.7 20.5,45.2 21.5,49.8 22.5,50.5 23.5,54.8 24.6,59.0 25.6,59.0 26.6,55.8 27.7,47.3 28.7,51.9 29.7,53.0 30.7,48.4 31.8,58.3 32.8,58.6 33.8,56.5 34.9,48.4 35.9,54.4 36.9,35.7 37.9,47.0 39.0,54.4 40.0,59.0 41.0,56.5 42.0,51.9 43.1,41.3 44.1,47.7 45.1,35.7 46.2,50.2 47.2,59.0 48.2,45.2 49.2,53.3 50.3,55.8 51.3,55.1 52.3,51.9 53.4,58.3 54.4,59.0 55.4,57.6 56.4,56.2 57.5,53.3 58.5,53.7 59.5,33.6 60.6,32.5 61.6,42.0 62.6,57.2 63.6,54.4 64.7,52.3 65.7,34.6 66.7,25.8 67.8,26.8 68.8,33.2 69.8,57.6 70.8,57.9 71.9,55.8 72.9,54.1 73.9,30.7 75.0,25.8 76.0,26.5 77.0,33.2 78.0,55.1 79.1,58.3 80.1,56.9 81.1,57.9 82.2,54.8 83.2,55.1 84.2,58.3 85.2,51.6 86.3,55.5 87.3,55.8 88.3,55.8 89.4,58.6 90.4,57.9 91.4,55.5 92.4,52.6 93.5,55.1 94.5,56.9 95.5,53.0 96.6,59.0 97.6,59.0 98.6,58.6 99.6,56.2 100.7,56.2 101.7,49.8 102.7,55.1 103.8,59.0 104.8,58.6 105.8,56.9 106.8,57.2 107.9,51.9 108.9,53.7 109.9,53.0 111.0,48.0 112.0,57.6 113.0,57.6 114.0,49.5 115.1,50.5 116.1,49.5 117.1,54.1 118.1,54.8 119.2,59.0 120.2,56.2 121.2,50.9 122.3,48.8 123.3,54.1 124.3,56.9 125.3,59.0 126.4,58.3 127.4,55.5 128.4,56.5 129.5,57.9 130.5,48.4 131.5,51.2 132.5,47.7 133.6,59.0 134.6,54.8 135.6,51.2 136.7,53.7 137.7,47.0 138.7,48.0 139.7,59.0 140.8,58.6 141.8,58.3 142.8,54.1 143.9,52.6 144.9,50.2 145.9,49.1 146.9,35.0 148.0,38.2 149.0,53.7 150.0,52.3 151.1,52.3 152.1,53.0 153.1,53.7 154.1,56.5 155.2,57.6 156.2,54.1 157.2,55.5 158.3,53.0 159.3,50.5 160.3,50.2 161.3,59.0 162.4,58.6 163.4,57.2 164.4,53.3 165.5,53.0 166.5,43.1 167.5,53.7 168.5,59.0 169.6,59.0 170.6,57.9 171.6,50.9 172.7,54.4 173.7,47.7 174.7,46.3 175.7,59.0 176.8,59.0 177.8,55.1 178.8,51.2 179.9,54.4 180.9,43.8 181.9,49.8 182.9,59.0 184.0,59.0 185.0,56.5 186.0,57.9 187.0,56.5 188.1,59.0 189.1,57.2 190.1,59.0 191.2,59.0 192.2,58.6 193.2,54.8 194.2,48.4 195.3,56.2 196.3,47.7 197.3,39.9 198.4,38.9 199.4,53.7 200.4,53.3 201.4,52.3 202.5,50.5 203.5,53.7 204.5,59.0 205.6,58.6 206.6,54.8 207.6,51.9 208.6,51.6 209.7,41.3 210.7,51.2 211.7,58.6 212.8,58.3 213.8,57.6 214.8,52.3 215.8,48.0 216.9,57.9 217.9,57.6 218.9,58.6 220.0,58.3 221.0,54.8 222.0,44.5 223.0,45.9 224.1,55.5 225.1,57.6 226.1,59.0 227.2,58.6 228.2,56.9 229.2,46.6 230.2,51.2 231.3,48.0 232.3,52.3 233.3,58.6 234.4,54.1 235.4,51.2 236.4,50.5 237.4,53.3 238.5,48.0 239.5,53.7 240.5,58.3 241.6,51.6 242.6,54.1 243.6,42.4 244.6,44.9 245.7,49.5 246.7,45.9 247.7,57.2 248.8,57.6 249.8,54.8 250.8,50.9 251.8,53.7 252.9,50.9 253.9,47.0 254.9,58.6 256.0,59.0 257.0,57.2 258.0,54.8 259.0,57.6 260.1,53.7 261.1,58.3 262.1,54.4 263.1,59.0 264.2,56.5 265.2,54.4 266.2,57.9 267.3,54.4 268.3,57.9 269.3,58.6 270.3,58.6 271.4,59.0 272.4,55.8 273.4,56.5 274.5,57.9 275.5,55.8 276.5,58.6 277.5,59.0 278.6,58.3 279.6,52.6 280.6,55.1 281.7,56.2 282.7,58.3 283.7,59.0 284.7,58.6 285.8,57.2 286.8,54.1 287.8,53.7 288.9,53.3 289.9,53.7 290.9,59.0 291.9,58.6 293.0,57.6 294.0,52.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SACRAMENTO HOLD<\/b><br>650 CAPITOL MALL<br>SACRAMENTO, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 10<\/b> (2025-10-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 35<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,56.0 5.0,49.9 6.1,48.4 7.1,51.4 8.1,51.4 9.1,54.5 10.2,52.9 11.2,56.0 12.2,52.9 13.3,46.9 14.3,46.9 15.3,45.4 16.3,56.0 17.4,57.5 18.4,56.0 19.4,49.9 20.5,46.9 21.5,52.9 22.5,57.5 23.5,52.9 24.6,56.0 25.6,57.5 26.6,51.4 27.7,48.4 28.7,49.9 29.7,48.4 30.7,51.4 31.8,57.5 32.8,56.0 33.8,45.4 34.9,49.9 35.9,52.9 36.9,56.0 37.9,56.0 39.0,57.5 40.0,57.5 41.0,54.5 42.0,54.5 43.1,54.5 44.1,56.0 45.1,57.5 46.2,57.5 47.2,57.5 48.2,52.9 49.2,52.9 50.3,54.5 51.3,56.0 52.3,39.3 53.4,51.4 54.4,52.9 55.4,54.5 56.4,51.4 57.5,46.9 58.5,48.4 59.5,51.4 60.6,34.8 61.6,6.0 62.6,10.5 63.6,18.1 64.7,45.4 65.7,36.3 66.7,34.8 67.8,28.7 68.8,27.2 69.8,39.3 70.8,34.8 71.9,43.9 72.9,43.9 73.9,31.7 75.0,33.3 76.0,36.3 77.0,33.3 78.0,46.9 79.1,37.8 80.1,39.3 81.1,43.9 82.2,48.4 83.2,46.9 84.2,40.8 85.2,39.3 86.3,39.3 87.3,37.8 88.3,49.9 89.4,51.4 90.4,54.5 91.4,56.0 92.4,45.4 93.5,43.9 94.5,43.9 95.5,45.4 96.6,57.5 97.6,57.5 98.6,57.5 99.6,54.5 100.7,49.9 101.7,40.8 102.7,56.0 103.8,57.5 104.8,57.5 105.8,52.9 106.8,46.9 107.9,52.9 108.9,52.9 109.9,48.4 111.0,57.5 112.0,54.5 113.0,57.5 114.0,56.0 115.1,51.4 116.1,57.5 117.1,54.5 118.1,52.9 119.2,57.5 120.2,57.5 121.2,45.4 122.3,40.8 123.3,54.5 124.3,52.9 125.3,59.0 126.4,59.0 127.4,52.9 128.4,49.9 129.5,46.9 130.5,52.9 131.5,59.0 132.5,57.5 133.6,57.5 134.6,54.5 135.6,52.9 136.7,57.5 137.7,51.4 138.7,56.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,54.5 143.9,51.4 144.9,43.9 145.9,52.9 146.9,56.0 148.0,59.0 149.0,54.5 150.0,49.9 151.1,57.5 152.1,57.5 153.1,49.9 154.1,59.0 155.2,59.0 156.2,56.0 157.2,51.4 158.3,52.9 159.3,54.5 160.3,56.0 161.3,56.0 162.4,57.5 163.4,54.5 164.4,52.9 165.5,51.4 166.5,57.5 167.5,49.9 168.5,59.0 169.6,59.0 170.6,57.5 171.6,57.5 172.7,46.9 173.7,48.4 174.7,49.9 175.7,56.0 176.8,52.9 177.8,57.5 178.8,57.5 179.9,43.9 180.9,57.5 181.9,57.5 182.9,56.0 184.0,59.0 185.0,54.5 186.0,51.4 187.0,56.0 188.1,52.9 189.1,56.0 190.1,59.0 191.2,57.5 192.2,48.4 193.2,49.9 194.2,46.9 195.3,52.9 196.3,56.0 197.3,57.5 198.4,59.0 199.4,56.0 200.4,51.4 201.4,43.9 202.5,54.5 203.5,57.5 204.5,56.0 205.6,54.5 206.6,57.5 207.6,52.9 208.6,54.5 209.7,52.9 210.7,54.5 211.7,56.0 212.8,59.0 213.8,54.5 214.8,56.0 215.8,54.5 216.9,59.0 217.9,56.0 218.9,54.5 220.0,54.5 221.0,48.4 222.0,51.4 223.0,56.0 224.1,56.0 225.1,54.5 226.1,59.0 227.2,59.0 228.2,59.0 229.2,56.0 230.2,57.5 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,57.5 238.5,59.0 239.5,59.0 240.5,59.0 241.6,57.5 242.6,59.0 243.6,52.9 244.6,56.0 245.7,59.0 246.7,59.0 247.7,57.5 248.8,59.0 249.8,59.0 250.8,56.0 251.8,54.5 252.9,56.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,54.5 259.0,56.0 260.1,56.0 261.1,59.0 262.1,57.5 263.1,59.0 264.2,52.9 265.2,54.5 266.2,59.0 267.3,54.5 268.3,56.0 269.3,59.0 270.3,59.0 271.4,57.5 272.4,54.5 273.4,54.5 274.5,54.5 275.5,52.9 276.5,59.0 277.5,57.5 278.6,54.5 279.6,52.9 280.6,54.5 281.7,51.4 282.7,57.5 283.7,59.0 284.7,57.5 285.8,54.5 286.8,52.9 287.8,54.5 288.9,54.5 289.9,54.5 290.9,59.0 291.9,59.0 293.0,54.5 294.0,48.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SAN ANGELO HOLDROOM<\/b><br>3197 EXECUTIVE DR<br>SAN ANGELO, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 12<\/b> (2025-12-19)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 19<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,6.0 5.0,39.5 6.1,36.7 7.1,59.0 8.1,42.3 9.1,59.0 10.2,59.0 11.2,31.1 12.2,56.2 13.3,14.4 14.3,36.7 15.3,28.3 16.3,59.0 17.4,31.1 18.4,50.6 19.4,39.5 20.5,59.0 21.5,19.9 22.5,45.1 23.5,59.0 24.6,59.0 25.6,50.6 26.6,31.1 27.7,45.1 28.7,39.5 29.7,47.8 30.7,59.0 31.8,59.0 32.8,45.1 33.8,47.8 34.9,59.0 35.9,47.8 36.9,22.7 37.9,59.0 39.0,59.0 40.0,36.7 41.0,50.6 42.0,59.0 43.1,53.4 44.1,31.1 45.1,59.0 46.2,59.0 47.2,36.7 48.2,45.1 49.2,45.1 50.3,53.4 51.3,59.0 52.3,59.0 53.4,59.0 54.4,47.8 55.4,50.6 56.4,53.4 57.5,59.0 58.5,50.6 59.5,59.0 60.6,45.1 61.6,47.8 62.6,47.8 63.6,45.1 64.7,53.4 65.7,50.6 66.7,56.2 67.8,59.0 68.8,47.8 69.8,56.2 70.8,50.6 71.9,50.6 72.9,53.4 73.9,56.2 75.0,56.2 76.0,47.8 77.0,28.3 78.0,31.1 79.1,42.3 80.1,33.9 81.1,59.0 82.2,59.0 83.2,25.5 84.2,39.5 85.2,42.3 86.3,36.7 87.3,42.3 88.3,53.4 89.4,53.4 90.4,28.3 91.4,36.7 92.4,47.8 93.5,47.8 94.5,59.0 95.5,56.2 96.6,56.2 97.6,28.3 98.6,33.9 99.6,50.6 100.7,50.6 101.7,59.0 102.7,33.9 103.8,59.0 104.8,36.7 105.8,53.4 106.8,53.4 107.9,50.6 108.9,53.4 109.9,45.1 111.0,59.0 112.0,33.9 113.0,53.4 114.0,56.2 115.1,53.4 116.1,56.2 117.1,42.3 118.1,59.0 119.2,39.5 120.2,42.3 121.2,59.0 122.3,45.1 123.3,42.3 124.3,33.9 125.3,56.2 126.4,28.3 127.4,45.1 128.4,31.1 129.5,42.3 130.5,45.1 131.5,59.0 132.5,59.0 133.6,39.5 134.6,33.9 135.6,47.8 136.7,47.8 137.7,50.6 138.7,56.2 139.7,56.2 140.8,56.2 141.8,50.6 142.8,50.6 143.9,59.0 144.9,53.4 145.9,53.4 146.9,59.0 148.0,59.0 149.0,47.8 150.0,47.8 151.1,53.4 152.1,39.5 153.1,47.8 154.1,59.0 155.2,50.6 156.2,33.9 157.2,45.1 158.3,31.1 159.3,59.0 160.3,45.1 161.3,59.0 162.4,59.0 163.4,42.3 164.4,56.2 165.5,39.5 166.5,47.8 167.5,59.0 168.5,59.0 169.6,33.9 170.6,50.6 171.6,53.4 172.7,56.2 173.7,50.6 174.7,59.0 175.7,59.0 176.8,28.3 177.8,50.6 178.8,53.4 179.9,47.8 180.9,39.5 181.9,42.3 182.9,59.0 184.0,59.0 185.0,36.7 186.0,53.4 187.0,31.1 188.1,59.0 189.1,50.6 190.1,59.0 191.2,59.0 192.2,42.3 193.2,31.1 194.2,33.9 195.3,45.1 196.3,39.5 197.3,59.0 198.4,50.6 199.4,56.2 200.4,50.6 201.4,47.8 202.5,50.6 203.5,42.3 204.5,59.0 205.6,59.0 206.6,47.8 207.6,53.4 208.6,47.8 209.7,53.4 210.7,25.5 211.7,59.0 212.8,59.0 213.8,33.9 214.8,39.5 215.8,28.3 216.9,59.0 217.9,56.2 218.9,59.0 220.0,59.0 221.0,53.4 222.0,45.1 223.0,50.6 224.1,42.3 225.1,59.0 226.1,59.0 227.2,53.4 228.2,50.6 229.2,56.2 230.2,45.1 231.3,59.0 232.3,42.3 233.3,59.0 234.4,56.2 235.4,50.6 236.4,56.2 237.4,42.3 238.5,45.1 239.5,50.6 240.5,59.0 241.6,56.2 242.6,31.1 243.6,59.0 244.6,59.0 245.7,47.8 246.7,56.2 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,31.1 252.9,45.1 253.9,47.8 254.9,59.0 256.0,53.4 257.0,56.2 258.0,56.2 259.0,50.6 260.1,42.3 261.1,50.6 262.1,59.0 263.1,59.0 264.2,42.3 265.2,56.2 266.2,56.2 267.3,45.1 268.3,59.0 269.3,59.0 270.3,56.2 271.4,42.3 272.4,59.0 273.4,56.2 274.5,53.4 275.5,45.1 276.5,56.2 277.5,42.3 278.6,56.2 279.6,56.2 280.6,50.6 281.7,53.4 282.7,47.8 283.7,59.0 284.7,59.0 285.8,47.8 286.8,56.2 287.8,56.2 288.9,53.4 289.9,47.8 290.9,59.0 291.9,59.0 293.0,47.8 294.0,33.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SAN JUAN SUB-OFFICE HOLD ROOM<\/b><br>7 Cll TabonucoGuaynabo, 00968<br>GUAYNABO, PR<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 6<\/b> (2026-01-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 50<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,30.4 5.0,17.7 6.1,14.5 7.1,6.0 8.1,10.2 9.1,13.4 10.2,7.1 11.2,9.2 12.2,25.1 13.3,28.3 14.3,16.6 15.3,37.8 16.3,56.9 17.4,57.9 18.4,59.0 19.4,59.0 20.5,55.8 21.5,57.9 22.5,57.9 23.5,59.0 24.6,57.9 25.6,59.0 26.6,57.9 27.7,57.9 28.7,57.9 29.7,55.8 30.7,54.8 31.8,59.0 32.8,59.0 33.8,57.9 34.9,59.0 35.9,57.9 36.9,59.0 37.9,59.0 39.0,57.9 40.0,59.0 41.0,57.9 42.0,57.9 43.1,55.8 44.1,59.0 45.1,57.9 46.2,57.9 47.2,59.0 48.2,59.0 49.2,59.0 50.3,57.9 51.3,59.0 52.3,59.0 53.4,57.9 54.4,59.0 55.4,55.8 56.4,57.9 57.5,59.0 58.5,56.9 59.5,59.0 60.6,59.0 61.6,56.9 62.6,59.0 63.6,57.9 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,57.9 70.8,57.9 71.9,57.9 72.9,57.9 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,54.8 93.5,57.9 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,57.9 104.8,59.0 105.8,59.0 106.8,56.9 107.9,59.0 108.9,59.0 109.9,55.8 111.0,59.0 112.0,59.0 113.0,57.9 114.0,57.9 115.1,55.8 116.1,59.0 117.1,59.0 118.1,59.0 119.2,57.9 120.2,57.9 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,55.8 130.5,59.0 131.5,57.9 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,57.9 137.7,59.0 138.7,57.9 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,57.9 150.0,59.0 151.1,59.0 152.1,57.9 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,57.9 167.5,57.9 168.5,57.9 169.6,57.9 170.6,57.9 171.6,57.9 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,55.8 181.9,57.9 182.9,59.0 184.0,59.0 185.0,57.9 186.0,57.9 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,57.9 194.2,57.9 195.3,56.9 196.3,55.8 197.3,54.8 198.4,59.0 199.4,59.0 200.4,59.0 201.4,57.9 202.5,54.8 203.5,59.0 204.5,59.0 205.6,59.0 206.6,56.9 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,54.8 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,56.9 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,55.8 236.4,57.9 237.4,55.8 238.5,54.8 239.5,52.6 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,57.9 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,57.9 252.9,57.9 253.9,57.9 254.9,59.0 256.0,59.0 257.0,57.9 258.0,56.9 259.0,56.9 260.1,57.9 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,56.9 266.2,59.0 267.3,59.0 268.3,56.9 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,56.9 274.5,59.0 275.5,57.9 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,57.9 282.7,55.8 283.7,59.0 284.7,59.0 285.8,57.9 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,57.9 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SALISBURY HOLD ROOM<\/b><br>119 W. Naylor Mill Road, Suite 11<br>Salisbury, MD<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 12<\/b> (2025-11-19)&nbsp;&nbsp;<br><b>Mean:<\/b> 4/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 23<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,47.5 5.0,49.8 6.1,33.7 7.1,17.5 8.1,40.6 9.1,56.7 10.2,54.4 11.2,45.2 12.2,56.7 13.3,42.9 14.3,45.2 15.3,54.4 16.3,54.4 17.4,54.4 18.4,56.7 19.4,54.4 20.5,47.5 21.5,49.8 22.5,47.5 23.5,56.7 24.6,54.4 25.6,49.8 26.6,49.8 27.7,49.8 28.7,45.2 29.7,54.4 30.7,59.0 31.8,52.1 32.8,56.7 33.8,59.0 34.9,49.8 35.9,49.8 36.9,49.8 37.9,59.0 39.0,52.1 40.0,56.7 41.0,47.5 42.0,54.4 43.1,49.8 44.1,54.4 45.1,54.4 46.2,47.5 47.2,54.4 48.2,59.0 49.2,52.1 50.3,49.8 51.3,54.4 52.3,59.0 53.4,59.0 54.4,54.4 55.4,52.1 56.4,54.4 57.5,52.1 58.5,52.1 59.5,59.0 60.6,52.1 61.6,56.7 62.6,49.8 63.6,54.4 64.7,49.8 65.7,54.4 66.7,56.7 67.8,49.8 68.8,56.7 69.8,8.3 70.8,6.0 71.9,19.8 72.9,59.0 73.9,54.4 75.0,56.7 76.0,56.7 77.0,52.1 78.0,59.0 79.1,59.0 80.1,59.0 81.1,56.7 82.2,59.0 83.2,59.0 84.2,59.0 85.2,56.7 86.3,59.0 87.3,59.0 88.3,56.7 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,54.4 94.5,56.7 95.5,56.7 96.6,49.8 97.6,59.0 98.6,52.1 99.6,49.8 100.7,42.9 101.7,54.4 102.7,56.7 103.8,54.4 104.8,56.7 105.8,45.2 106.8,49.8 107.9,49.8 108.9,59.0 109.9,52.1 111.0,54.4 112.0,54.4 113.0,45.2 114.0,56.7 115.1,49.8 116.1,52.1 117.1,59.0 118.1,52.1 119.2,56.7 120.2,42.9 121.2,45.2 122.3,52.1 123.3,47.5 124.3,56.7 125.3,52.1 126.4,54.4 127.4,49.8 128.4,52.1 129.5,56.7 130.5,56.7 131.5,54.4 132.5,54.4 133.6,56.7 134.6,45.2 135.6,56.7 136.7,52.1 137.7,54.4 138.7,54.4 139.7,52.1 140.8,56.7 141.8,52.1 142.8,45.2 143.9,49.8 144.9,42.9 145.9,59.0 146.9,59.0 148.0,56.7 149.0,52.1 150.0,42.9 151.1,49.8 152.1,54.4 153.1,52.1 154.1,42.9 155.2,52.1 156.2,52.1 157.2,49.8 158.3,54.4 159.3,45.2 160.3,42.9 161.3,45.2 162.4,47.5 163.4,56.7 164.4,36.0 165.5,38.3 166.5,38.3 167.5,45.2 168.5,40.6 169.6,54.4 170.6,47.5 171.6,47.5 172.7,36.0 173.7,36.0 174.7,47.5 175.7,45.2 176.8,49.8 177.8,47.5 178.8,33.7 179.9,31.3 180.9,36.0 181.9,47.5 182.9,42.9 184.0,52.1 185.0,59.0 186.0,42.9 187.0,49.8 188.1,56.7 189.1,52.1 190.1,52.1 191.2,59.0 192.2,45.2 193.2,40.6 194.2,45.2 195.3,49.8 196.3,49.8 197.3,52.1 198.4,45.2 199.4,42.9 200.4,49.8 201.4,47.5 202.5,54.4 203.5,54.4 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,54.4 209.7,56.7 210.7,49.8 211.7,52.1 212.8,56.7 213.8,54.4 214.8,54.4 215.8,56.7 216.9,59.0 217.9,49.8 218.9,59.0 220.0,59.0 221.0,47.5 222.0,47.5 223.0,52.1 224.1,54.4 225.1,45.2 226.1,47.5 227.2,54.4 228.2,54.4 229.2,36.0 230.2,38.3 231.3,49.8 232.3,52.1 233.3,49.8 234.4,49.8 235.4,33.7 236.4,33.7 237.4,36.0 238.5,33.7 239.5,45.2 240.5,45.2 241.6,49.8 242.6,47.5 243.6,38.3 244.6,40.6 245.7,40.6 246.7,52.1 247.7,49.8 248.8,59.0 249.8,59.0 250.8,56.7 251.8,56.7 252.9,33.7 253.9,42.9 254.9,33.7 256.0,47.5 257.0,33.7 258.0,52.1 259.0,52.1 260.1,49.8 261.1,49.8 262.1,52.1 263.1,49.8 264.2,47.5 265.2,42.9 266.2,45.2 267.3,38.3 268.3,47.5 269.3,52.1 270.3,45.2 271.4,49.8 272.4,42.9 273.4,45.2 274.5,40.6 275.5,54.4 276.5,49.8 277.5,45.2 278.6,59.0 279.6,59.0 280.6,40.6 281.7,40.6 282.7,40.6 283.7,49.8 284.7,42.9 285.8,33.7 286.8,42.9 287.8,45.2 288.9,36.0 289.9,47.5 290.9,54.4 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SARASOTA COUNTY JAIL<\/b><br>2020 Main St<br>Sarasota, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 8<\/b> (2026-02-05)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 9<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,47.2 5.0,59.0 6.1,59.0 7.1,59.0 8.1,29.6 9.1,41.3 10.2,47.2 11.2,47.2 12.2,41.3 13.3,53.1 14.3,53.1 15.3,53.1 16.3,41.3 17.4,35.4 18.4,35.4 19.4,53.1 20.5,47.2 21.5,41.3 22.5,47.2 23.5,53.1 24.6,47.2 25.6,53.1 26.6,47.2 27.7,47.2 28.7,41.3 29.7,53.1 30.7,53.1 31.8,53.1 32.8,53.1 33.8,59.0 34.9,59.0 35.9,53.1 36.9,41.3 37.9,41.3 39.0,59.0 40.0,53.1 41.0,53.1 42.0,47.2 43.1,53.1 44.1,53.1 45.1,53.1 46.2,59.0 47.2,53.1 48.2,59.0 49.2,59.0 50.3,47.2 51.3,47.2 52.3,59.0 53.4,53.1 54.4,41.3 55.4,41.3 56.4,53.1 57.5,47.2 58.5,53.1 59.5,53.1 60.6,53.1 61.6,47.2 62.6,41.3 63.6,41.3 64.7,47.2 65.7,47.2 66.7,53.1 67.8,35.4 68.8,23.7 69.8,41.3 70.8,35.4 71.9,29.6 72.9,29.6 73.9,29.6 75.0,53.1 76.0,41.3 77.0,47.2 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,53.1 83.2,59.0 84.2,53.1 85.2,47.2 86.3,47.2 87.3,53.1 88.3,41.3 89.4,35.4 90.4,59.0 91.4,59.0 92.4,53.1 93.5,53.1 94.5,47.2 95.5,47.2 96.6,59.0 97.6,47.2 98.6,35.4 99.6,47.2 100.7,29.6 101.7,29.6 102.7,47.2 103.8,53.1 104.8,53.1 105.8,41.3 106.8,41.3 107.9,35.4 108.9,47.2 109.9,41.3 111.0,41.3 112.0,47.2 113.0,59.0 114.0,47.2 115.1,35.4 116.1,35.4 117.1,59.0 118.1,59.0 119.2,41.3 120.2,23.7 121.2,35.4 122.3,41.3 123.3,53.1 124.3,47.2 125.3,47.2 126.4,35.4 127.4,29.6 128.4,29.6 129.5,35.4 130.5,35.4 131.5,41.3 132.5,41.3 133.6,41.3 134.6,53.1 135.6,47.2 136.7,35.4 137.7,41.3 138.7,53.1 139.7,59.0 140.8,59.0 141.8,59.0 142.8,53.1 143.9,47.2 144.9,47.2 145.9,47.2 146.9,41.3 148.0,47.2 149.0,53.1 150.0,47.2 151.1,47.2 152.1,59.0 153.1,59.0 154.1,41.3 155.2,35.4 156.2,35.4 157.2,47.2 158.3,35.4 159.3,41.3 160.3,41.3 161.3,41.3 162.4,41.3 163.4,59.0 164.4,41.3 165.5,29.6 166.5,41.3 167.5,41.3 168.5,59.0 169.6,53.1 170.6,53.1 171.6,47.2 172.7,53.1 173.7,53.1 174.7,53.1 175.7,41.3 176.8,23.7 177.8,29.6 178.8,41.3 179.9,35.4 180.9,23.7 181.9,29.6 182.9,41.3 184.0,59.0 185.0,47.2 186.0,29.6 187.0,29.6 188.1,53.1 189.1,53.1 190.1,53.1 191.2,53.1 192.2,59.0 193.2,53.1 194.2,47.2 195.3,47.2 196.3,53.1 197.3,41.3 198.4,35.4 199.4,53.1 200.4,59.0 201.4,53.1 202.5,53.1 203.5,47.2 204.5,41.3 205.6,41.3 206.6,47.2 207.6,53.1 208.6,59.0 209.7,59.0 210.7,47.2 211.7,47.2 212.8,35.4 213.8,41.3 214.8,29.6 215.8,41.3 216.9,41.3 217.9,41.3 218.9,29.6 220.0,47.2 221.0,53.1 222.0,47.2 223.0,53.1 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,47.2 229.2,35.4 230.2,29.6 231.3,23.7 232.3,29.6 233.3,35.4 234.4,53.1 235.4,53.1 236.4,53.1 237.4,41.3 238.5,29.6 239.5,41.3 240.5,41.3 241.6,41.3 242.6,53.1 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,53.1 248.8,53.1 249.8,53.1 250.8,53.1 251.8,47.2 252.9,47.2 253.9,53.1 254.9,59.0 256.0,59.0 257.0,59.0 258.0,53.1 259.0,41.3 260.1,11.9 261.1,23.7 262.1,29.6 263.1,23.7 264.2,41.3 265.2,35.4 266.2,35.4 267.3,53.1 268.3,59.0 269.3,53.1 270.3,41.3 271.4,29.6 272.4,23.7 273.4,6.0 274.5,17.8 275.5,29.6 276.5,59.0 277.5,59.0 278.6,59.0 279.6,47.2 280.6,35.4 281.7,11.9 282.7,17.8 283.7,35.4 284.7,59.0 285.8,59.0 286.8,59.0 287.8,41.3 288.9,29.6 289.9,35.4 290.9,47.2 291.9,29.6 293.0,17.8 294.0,47.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SARASOTA COUNTY JAIL<\/b><br>2020 Main St<br>Sarasota, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 8<\/b> (2026-02-05)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 9<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,47.2 5.0,59.0 6.1,59.0 7.1,59.0 8.1,29.6 9.1,41.3 10.2,47.2 11.2,47.2 12.2,41.3 13.3,53.1 14.3,53.1 15.3,53.1 16.3,41.3 17.4,35.4 18.4,35.4 19.4,53.1 20.5,47.2 21.5,41.3 22.5,47.2 23.5,53.1 24.6,47.2 25.6,53.1 26.6,47.2 27.7,47.2 28.7,41.3 29.7,53.1 30.7,53.1 31.8,53.1 32.8,53.1 33.8,59.0 34.9,59.0 35.9,53.1 36.9,41.3 37.9,41.3 39.0,59.0 40.0,53.1 41.0,53.1 42.0,47.2 43.1,53.1 44.1,53.1 45.1,53.1 46.2,59.0 47.2,53.1 48.2,59.0 49.2,59.0 50.3,47.2 51.3,47.2 52.3,59.0 53.4,53.1 54.4,41.3 55.4,41.3 56.4,53.1 57.5,47.2 58.5,53.1 59.5,53.1 60.6,53.1 61.6,47.2 62.6,41.3 63.6,41.3 64.7,47.2 65.7,47.2 66.7,53.1 67.8,35.4 68.8,23.7 69.8,41.3 70.8,35.4 71.9,29.6 72.9,29.6 73.9,29.6 75.0,53.1 76.0,41.3 77.0,47.2 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,53.1 83.2,59.0 84.2,53.1 85.2,47.2 86.3,47.2 87.3,53.1 88.3,41.3 89.4,35.4 90.4,59.0 91.4,59.0 92.4,53.1 93.5,53.1 94.5,47.2 95.5,47.2 96.6,59.0 97.6,47.2 98.6,35.4 99.6,47.2 100.7,29.6 101.7,29.6 102.7,47.2 103.8,53.1 104.8,53.1 105.8,41.3 106.8,41.3 107.9,35.4 108.9,47.2 109.9,41.3 111.0,41.3 112.0,47.2 113.0,59.0 114.0,47.2 115.1,35.4 116.1,35.4 117.1,59.0 118.1,59.0 119.2,41.3 120.2,23.7 121.2,35.4 122.3,41.3 123.3,53.1 124.3,47.2 125.3,47.2 126.4,35.4 127.4,29.6 128.4,29.6 129.5,35.4 130.5,35.4 131.5,41.3 132.5,41.3 133.6,41.3 134.6,53.1 135.6,47.2 136.7,35.4 137.7,41.3 138.7,53.1 139.7,59.0 140.8,59.0 141.8,59.0 142.8,53.1 143.9,47.2 144.9,47.2 145.9,47.2 146.9,41.3 148.0,47.2 149.0,53.1 150.0,47.2 151.1,47.2 152.1,59.0 153.1,59.0 154.1,41.3 155.2,35.4 156.2,35.4 157.2,47.2 158.3,35.4 159.3,41.3 160.3,41.3 161.3,41.3 162.4,41.3 163.4,59.0 164.4,41.3 165.5,29.6 166.5,41.3 167.5,41.3 168.5,59.0 169.6,53.1 170.6,53.1 171.6,47.2 172.7,53.1 173.7,53.1 174.7,53.1 175.7,41.3 176.8,23.7 177.8,29.6 178.8,41.3 179.9,35.4 180.9,23.7 181.9,29.6 182.9,41.3 184.0,59.0 185.0,47.2 186.0,29.6 187.0,29.6 188.1,53.1 189.1,53.1 190.1,53.1 191.2,53.1 192.2,59.0 193.2,53.1 194.2,47.2 195.3,47.2 196.3,53.1 197.3,41.3 198.4,35.4 199.4,53.1 200.4,59.0 201.4,53.1 202.5,53.1 203.5,47.2 204.5,41.3 205.6,41.3 206.6,47.2 207.6,53.1 208.6,59.0 209.7,59.0 210.7,47.2 211.7,47.2 212.8,35.4 213.8,41.3 214.8,29.6 215.8,41.3 216.9,41.3 217.9,41.3 218.9,29.6 220.0,47.2 221.0,53.1 222.0,47.2 223.0,53.1 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,47.2 229.2,35.4 230.2,29.6 231.3,23.7 232.3,29.6 233.3,35.4 234.4,53.1 235.4,53.1 236.4,53.1 237.4,41.3 238.5,29.6 239.5,41.3 240.5,41.3 241.6,41.3 242.6,53.1 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,53.1 248.8,53.1 249.8,53.1 250.8,53.1 251.8,47.2 252.9,47.2 253.9,53.1 254.9,59.0 256.0,59.0 257.0,59.0 258.0,53.1 259.0,41.3 260.1,11.9 261.1,23.7 262.1,29.6 263.1,23.7 264.2,41.3 265.2,35.4 266.2,35.4 267.3,53.1 268.3,59.0 269.3,53.1 270.3,41.3 271.4,29.6 272.4,23.7 273.4,6.0 274.5,17.8 275.5,29.6 276.5,59.0 277.5,59.0 278.6,59.0 279.6,47.2 280.6,35.4 281.7,11.9 282.7,17.8 283.7,35.4 284.7,59.0 285.8,59.0 286.8,59.0 287.8,41.3 288.9,29.6 289.9,35.4 290.9,47.2 291.9,29.6 293.0,17.8 294.0,47.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SAN BERNARDINO HOLD ROOM<\/b><br>655 WEST RIALTO AVENUE<br>SAN BERNADINO, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 50<\/b> (2025-12-10)&nbsp;&nbsp;<br><b>Mean:<\/b> 10/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 50<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,56.9 5.0,49.5 6.1,45.2 7.1,37.8 8.1,50.5 9.1,47.3 10.2,46.3 11.2,49.5 12.2,56.9 13.3,52.6 14.3,34.6 15.3,20.8 16.3,42.0 17.4,47.3 18.4,48.4 19.4,43.1 20.5,34.6 21.5,42.0 22.5,38.9 23.5,18.7 24.6,48.4 25.6,50.5 26.6,56.9 27.7,46.3 28.7,48.4 29.7,34.6 30.7,51.6 31.8,51.6 32.8,55.8 33.8,46.3 34.9,49.5 35.9,37.8 36.9,38.9 37.9,57.9 39.0,56.9 40.0,53.7 41.0,36.7 42.0,41.0 43.1,30.4 44.1,44.2 45.1,56.9 46.2,55.8 47.2,57.9 48.2,46.3 49.2,47.3 50.3,50.5 51.3,52.6 52.3,50.5 53.4,55.8 54.4,59.0 55.4,51.6 56.4,47.3 57.5,53.7 58.5,46.3 59.5,52.6 60.6,57.9 61.6,57.9 62.6,49.5 63.6,45.2 64.7,52.6 65.7,51.6 66.7,46.3 67.8,55.8 68.8,59.0 69.8,54.8 70.8,46.3 71.9,39.9 72.9,45.2 73.9,45.2 75.0,56.9 76.0,54.8 77.0,51.6 78.0,50.5 79.1,49.5 80.1,47.3 81.1,53.7 82.2,55.8 83.2,59.0 84.2,53.7 85.2,48.4 86.3,52.6 87.3,43.1 88.3,50.5 89.4,56.9 90.4,57.9 91.4,45.2 92.4,52.6 93.5,52.6 94.5,49.5 95.5,46.3 96.6,57.9 97.6,59.0 98.6,57.9 99.6,43.1 100.7,53.7 101.7,46.3 102.7,51.6 103.8,57.9 104.8,59.0 105.8,46.3 106.8,53.7 107.9,46.3 108.9,53.7 109.9,48.4 111.0,54.8 112.0,59.0 113.0,52.6 114.0,45.2 115.1,49.5 116.1,55.8 117.1,47.3 118.1,55.8 119.2,59.0 120.2,51.6 121.2,43.1 122.3,42.0 123.3,50.5 124.3,52.6 125.3,51.6 126.4,54.8 127.4,44.2 128.4,49.5 129.5,39.9 130.5,49.5 131.5,52.6 132.5,56.9 133.6,55.8 134.6,49.5 135.6,48.4 136.7,54.8 137.7,47.3 138.7,55.8 139.7,59.0 140.8,46.3 141.8,52.6 142.8,44.2 143.9,27.2 144.9,45.2 145.9,51.6 146.9,47.3 148.0,59.0 149.0,56.9 150.0,48.4 151.1,50.5 152.1,44.2 153.1,53.7 154.1,56.9 155.2,47.3 156.2,42.0 157.2,53.7 158.3,38.9 159.3,53.7 160.3,54.8 161.3,59.0 162.4,56.9 163.4,33.6 164.4,50.5 165.5,46.3 166.5,48.4 167.5,56.9 168.5,55.8 169.6,43.1 170.6,50.5 171.6,53.7 172.7,52.6 173.7,37.8 174.7,31.4 175.7,59.0 176.8,47.3 177.8,48.4 178.8,46.3 179.9,50.5 180.9,48.4 181.9,48.4 182.9,55.8 184.0,56.9 185.0,53.7 186.0,43.1 187.0,50.5 188.1,54.8 189.1,54.8 190.1,54.8 191.2,54.8 192.2,49.5 193.2,42.0 194.2,50.5 195.3,35.7 196.3,39.9 197.3,50.5 198.4,53.7 199.4,48.4 200.4,44.2 201.4,6.0 202.5,21.9 203.5,51.6 204.5,48.4 205.6,50.5 206.6,38.9 207.6,14.5 208.6,25.1 209.7,38.9 210.7,50.5 211.7,54.8 212.8,53.7 213.8,43.1 214.8,47.3 215.8,51.6 216.9,50.5 217.9,55.8 218.9,55.8 220.0,52.6 221.0,50.5 222.0,49.5 223.0,51.6 224.1,54.8 225.1,57.9 226.1,57.9 227.2,59.0 228.2,52.6 229.2,49.5 230.2,42.0 231.3,49.5 232.3,52.6 233.3,56.9 234.4,59.0 235.4,48.4 236.4,48.4 237.4,38.9 238.5,41.0 239.5,44.2 240.5,57.9 241.6,57.9 242.6,53.7 243.6,46.3 244.6,47.3 245.7,50.5 246.7,47.3 247.7,59.0 248.8,56.9 249.8,38.9 250.8,46.3 251.8,46.3 252.9,50.5 253.9,52.6 254.9,55.8 256.0,55.8 257.0,44.2 258.0,42.0 259.0,50.5 260.1,52.6 261.1,51.6 262.1,55.8 263.1,57.9 264.2,52.6 265.2,48.4 266.2,53.7 267.3,51.6 268.3,53.7 269.3,55.8 270.3,54.8 271.4,53.7 272.4,51.6 273.4,54.8 274.5,45.2 275.5,46.3 276.5,56.9 277.5,57.9 278.6,56.9 279.6,54.8 280.6,52.6 281.7,51.6 282.7,51.6 283.7,59.0 284.7,57.9 285.8,52.6 286.8,55.8 287.8,48.4 288.9,49.5 289.9,57.9 290.9,59.0 291.9,59.0 293.0,55.8 294.0,54.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SCOTT COUNTY JAIL<\/b><br>400 West 4th Street<br>Davenport, IA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 8<\/b> (2026-02-05)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 8<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,45.8 5.0,39.1 6.1,39.1 7.1,39.1 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,45.8 13.3,45.8 14.3,59.0 15.3,59.0 16.3,25.9 17.4,25.9 18.4,25.9 19.4,39.1 20.5,39.1 21.5,59.0 22.5,59.0 23.5,32.5 24.6,32.5 25.6,32.5 26.6,52.4 27.7,45.8 28.7,39.1 29.7,39.1 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,45.8 35.9,39.1 36.9,25.9 37.9,25.9 39.0,59.0 40.0,59.0 41.0,52.4 42.0,52.4 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,52.4 49.2,52.4 50.3,59.0 51.3,52.4 52.3,39.1 53.4,39.1 54.4,59.0 55.4,45.8 56.4,45.8 57.5,39.1 58.5,39.1 59.5,32.5 60.6,25.9 61.6,25.9 62.6,12.6 63.6,32.5 64.7,32.5 65.7,52.4 66.7,39.1 67.8,39.1 68.8,59.0 69.8,45.8 70.8,39.1 71.9,32.5 72.9,32.5 73.9,59.0 75.0,59.0 76.0,59.0 77.0,52.4 78.0,39.1 79.1,32.5 80.1,32.5 81.1,52.4 82.2,52.4 83.2,59.0 84.2,45.8 85.2,39.1 86.3,32.5 87.3,32.5 88.3,59.0 89.4,59.0 90.4,59.0 91.4,52.4 92.4,39.1 93.5,32.5 94.5,39.1 95.5,25.9 96.6,25.9 97.6,59.0 98.6,59.0 99.6,59.0 100.7,39.1 101.7,39.1 102.7,59.0 103.8,59.0 104.8,59.0 105.8,45.8 106.8,32.5 107.9,32.5 108.9,52.4 109.9,45.8 111.0,59.0 112.0,59.0 113.0,45.8 114.0,45.8 115.1,52.4 116.1,52.4 117.1,52.4 118.1,59.0 119.2,59.0 120.2,59.0 121.2,52.4 122.3,52.4 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,52.4 128.4,52.4 129.5,52.4 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,52.4 135.6,52.4 136.7,52.4 137.7,52.4 138.7,39.1 139.7,39.1 140.8,39.1 141.8,39.1 142.8,45.8 143.9,45.8 144.9,59.0 145.9,39.1 146.9,39.1 148.0,39.1 149.0,59.0 150.0,59.0 151.1,52.4 152.1,52.4 153.1,45.8 154.1,45.8 155.2,45.8 156.2,39.1 157.2,45.8 158.3,39.1 159.3,39.1 160.3,45.8 161.3,45.8 162.4,45.8 163.4,32.5 164.4,39.1 165.5,32.5 166.5,32.5 167.5,39.1 168.5,39.1 169.6,39.1 170.6,39.1 171.6,59.0 172.7,45.8 173.7,45.8 174.7,59.0 175.7,59.0 176.8,52.4 177.8,52.4 178.8,45.8 179.9,52.4 180.9,52.4 181.9,52.4 182.9,59.0 184.0,59.0 185.0,59.0 186.0,52.4 187.0,45.8 188.1,52.4 189.1,39.1 190.1,59.0 191.2,59.0 192.2,45.8 193.2,45.8 194.2,32.5 195.3,32.5 196.3,52.4 197.3,52.4 198.4,59.0 199.4,45.8 200.4,32.5 201.4,32.5 202.5,19.2 203.5,32.5 204.5,19.2 205.6,19.2 206.6,25.9 207.6,19.2 208.6,25.9 209.7,12.6 210.7,25.9 211.7,25.9 212.8,25.9 213.8,52.4 214.8,39.1 215.8,39.1 216.9,52.4 217.9,52.4 218.9,59.0 220.0,59.0 221.0,52.4 222.0,52.4 223.0,59.0 224.1,59.0 225.1,52.4 226.1,52.4 227.2,52.4 228.2,52.4 229.2,59.0 230.2,45.8 231.3,45.8 232.3,45.8 233.3,45.8 234.4,45.8 235.4,45.8 236.4,45.8 237.4,39.1 238.5,52.4 239.5,25.9 240.5,32.5 241.6,32.5 242.6,32.5 243.6,39.1 244.6,39.1 245.7,45.8 246.7,32.5 247.7,45.8 248.8,45.8 249.8,32.5 250.8,39.1 251.8,39.1 252.9,59.0 253.9,45.8 254.9,45.8 256.0,45.8 257.0,45.8 258.0,59.0 259.0,12.6 260.1,6.0 261.1,39.1 262.1,52.4 263.1,52.4 264.2,45.8 265.2,45.8 266.2,39.1 267.3,45.8 268.3,25.9 269.3,39.1 270.3,39.1 271.4,39.1 272.4,52.4 273.4,19.2 274.5,6.0 275.5,32.5 276.5,39.1 277.5,39.1 278.6,32.5 279.6,52.4 280.6,39.1 281.7,39.1 282.7,25.9 283.7,39.1 284.7,39.1 285.8,32.5 286.8,52.4 287.8,52.4 288.9,59.0 289.9,32.5 290.9,32.5 291.9,32.5 293.0,12.6 294.0,32.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SEATTLE FIELD OFFICE HOLD ROOM<\/b><br>12500 Tukwila International Boulevard<br>Seattle, WA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 49<\/b> (2025-10-30)&nbsp;&nbsp;<br><b>Mean:<\/b> 8/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 59<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,54.5 5.0,52.7 6.1,30.3 7.1,32.1 8.1,6.0 9.1,11.4 10.2,21.3 11.2,57.2 12.2,51.8 13.3,50.0 14.3,44.6 15.3,43.7 16.3,54.5 17.4,53.6 18.4,58.1 19.4,57.2 20.5,54.5 21.5,49.1 22.5,56.3 23.5,57.2 24.6,58.1 25.6,56.3 26.6,57.2 27.7,47.3 28.7,55.4 29.7,55.4 30.7,53.6 31.8,57.2 32.8,57.2 33.8,52.7 34.9,29.4 35.9,54.5 36.9,55.4 37.9,58.1 39.0,57.2 40.0,58.1 41.0,56.3 42.0,52.7 43.1,54.5 44.1,50.0 45.1,47.3 46.2,58.1 47.2,58.1 48.2,52.7 49.2,47.3 50.3,43.7 51.3,47.3 52.3,52.7 53.4,57.2 54.4,56.3 55.4,49.1 56.4,55.4 57.5,47.3 58.5,49.1 59.5,48.2 60.6,56.3 61.6,57.2 62.6,53.6 63.6,50.0 64.7,46.4 65.7,50.9 66.7,53.6 67.8,57.2 68.8,58.1 69.8,52.7 70.8,50.9 71.9,50.9 72.9,51.8 73.9,49.1 75.0,56.3 76.0,57.2 77.0,45.5 78.0,46.4 79.1,52.7 80.1,53.6 81.1,47.3 82.2,57.2 83.2,58.1 84.2,50.9 85.2,53.6 86.3,46.4 87.3,48.2 88.3,50.9 89.4,51.8 90.4,57.2 91.4,57.2 92.4,49.1 93.5,54.5 94.5,51.8 95.5,52.7 96.6,58.1 97.6,59.0 98.6,59.0 99.6,49.1 100.7,53.6 101.7,47.3 102.7,52.7 103.8,57.2 104.8,59.0 105.8,52.7 106.8,52.7 107.9,50.0 108.9,51.8 109.9,53.6 111.0,56.3 112.0,59.0 113.0,54.5 114.0,53.6 115.1,50.9 116.1,44.6 117.1,50.0 118.1,57.2 119.2,59.0 120.2,54.5 121.2,50.0 122.3,54.5 123.3,57.2 124.3,53.6 125.3,58.1 126.4,56.3 127.4,50.9 128.4,53.6 129.5,54.5 130.5,52.7 131.5,53.6 132.5,59.0 133.6,58.1 134.6,53.6 135.6,52.7 136.7,40.1 137.7,51.8 138.7,52.7 139.7,58.1 140.8,59.0 141.8,55.4 142.8,56.3 143.9,57.2 144.9,53.6 145.9,54.5 146.9,59.0 148.0,59.0 149.0,53.6 150.0,52.7 151.1,54.5 152.1,56.3 153.1,53.6 154.1,55.4 155.2,59.0 156.2,54.5 157.2,46.4 158.3,17.7 159.3,15.0 160.3,53.6 161.3,51.8 162.4,59.0 163.4,50.0 164.4,55.4 165.5,53.6 166.5,57.2 167.5,53.6 168.5,55.4 169.6,59.0 170.6,54.5 171.6,54.5 172.7,51.8 173.7,53.6 174.7,58.1 175.7,56.3 176.8,57.2 177.8,48.2 178.8,50.9 179.9,51.8 180.9,52.7 181.9,48.2 182.9,55.4 184.0,59.0 185.0,49.1 186.0,54.5 187.0,53.6 188.1,55.4 189.1,53.6 190.1,51.8 191.2,56.3 192.2,52.7 193.2,51.8 194.2,49.1 195.3,48.2 196.3,52.7 197.3,55.4 198.4,59.0 199.4,57.2 200.4,51.8 201.4,43.7 202.5,53.6 203.5,52.7 204.5,52.7 205.6,59.0 206.6,53.6 207.6,40.1 208.6,44.6 209.7,42.8 210.7,41.0 211.7,49.1 212.8,55.4 213.8,47.3 214.8,33.8 215.8,46.4 216.9,57.2 217.9,49.1 218.9,50.0 220.0,55.4 221.0,34.7 222.0,52.7 223.0,55.4 224.1,55.4 225.1,50.9 226.1,58.1 227.2,52.7 228.2,50.9 229.2,47.3 230.2,44.6 231.3,48.2 232.3,53.6 233.3,53.6 234.4,54.5 235.4,42.8 236.4,55.4 237.4,40.1 238.5,44.6 239.5,52.7 240.5,56.3 241.6,56.3 242.6,52.7 243.6,47.3 244.6,50.9 245.7,54.5 246.7,53.6 247.7,51.8 248.8,58.1 249.8,51.8 250.8,49.1 251.8,52.7 252.9,52.7 253.9,51.8 254.9,54.5 256.0,57.2 257.0,52.7 258.0,50.9 259.0,58.1 260.1,56.3 261.1,51.8 262.1,59.0 263.1,58.1 264.2,55.4 265.2,53.6 266.2,51.8 267.3,53.6 268.3,55.4 269.3,59.0 270.3,58.1 271.4,57.2 272.4,56.3 273.4,55.4 274.5,57.2 275.5,54.5 276.5,58.1 277.5,58.1 278.6,56.3 279.6,54.5 280.6,52.7 281.7,57.2 282.7,55.4 283.7,57.2 284.7,59.0 285.8,54.5 286.8,53.6 287.8,53.6 288.9,54.5 289.9,55.4 290.9,59.0 291.9,59.0 293.0,53.6 294.0,51.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SIOUX FALLS HOLD ROOM<\/b><br>300 EAST 8TH STREET<br>SIOUX FALLS, SD<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 7<\/b> (2026-01-16)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 20<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,53.7 7.1,53.7 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,56.3 20.5,56.3 21.5,53.7 22.5,51.0 23.5,59.0 24.6,56.3 25.6,59.0 26.6,56.3 27.7,59.0 28.7,48.4 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,56.3 49.2,59.0 50.3,56.3 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,56.3 57.5,59.0 58.5,53.7 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,56.3 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,56.3 79.1,59.0 80.1,59.0 81.1,51.0 82.2,48.4 83.2,59.0 84.2,59.0 85.2,56.3 86.3,51.0 87.3,21.9 88.3,45.8 89.4,59.0 90.4,45.8 91.4,51.0 92.4,53.7 93.5,56.3 94.5,19.2 95.5,6.0 96.6,35.2 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,56.3 102.7,56.3 103.8,56.3 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,53.7 128.4,59.0 129.5,56.3 130.5,59.0 131.5,59.0 132.5,56.3 133.6,59.0 134.6,56.3 135.6,53.7 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,56.3 142.8,59.0 143.9,59.0 144.9,59.0 145.9,51.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,51.0 179.9,59.0 180.9,56.3 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,56.3 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,56.3 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,56.3 229.2,59.0 230.2,51.0 231.3,59.0 232.3,59.0 233.3,48.4 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,40.5 240.5,59.0 241.6,59.0 242.6,59.0 243.6,56.3 244.6,59.0 245.7,56.3 246.7,59.0 247.7,59.0 248.8,59.0 249.8,53.7 250.8,59.0 251.8,59.0 252.9,59.0 253.9,56.3 254.9,59.0 256.0,59.0 257.0,59.0 258.0,45.8 259.0,59.0 260.1,53.7 261.1,59.0 262.1,59.0 263.1,59.0 264.2,56.3 265.2,56.3 266.2,56.3 267.3,56.3 268.3,59.0 269.3,56.3 270.3,59.0 271.4,45.8 272.4,59.0 273.4,59.0 274.5,56.3 275.5,59.0 276.5,59.0 277.5,59.0 278.6,51.0 279.6,45.8 280.6,59.0 281.7,53.7 282.7,51.0 283.7,59.0 284.7,59.0 285.8,32.5 286.8,56.3 287.8,59.0 288.9,40.5 289.9,59.0 290.9,56.3 291.9,59.0 293.0,56.3 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SFR HOLD ROOM<\/b><br>630 Sansome Street, Rm 590<br>San Francisco, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 47<\/b> (2025-11-07)&nbsp;&nbsp;<br><b>Mean:<\/b> 6/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 47<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,51.1 6.1,27.4 7.1,9.4 8.1,35.3 9.1,48.9 10.2,59.0 11.2,59.0 12.2,59.0 13.3,51.1 14.3,55.6 15.3,48.9 16.3,56.7 17.4,59.0 18.4,59.0 19.4,52.2 20.5,52.2 21.5,48.9 22.5,53.4 23.5,54.5 24.6,59.0 25.6,59.0 26.6,55.6 27.7,39.8 28.7,51.1 29.7,50.0 30.7,53.4 31.8,59.0 32.8,59.0 33.8,52.2 34.9,51.1 35.9,50.0 36.9,53.4 37.9,59.0 39.0,59.0 40.0,56.7 41.0,50.0 42.0,53.4 43.1,53.4 44.1,46.6 45.1,44.3 46.2,55.6 47.2,59.0 48.2,55.6 49.2,52.2 50.3,52.2 51.3,45.5 52.3,44.3 53.4,47.7 54.4,52.2 55.4,44.3 56.4,46.6 57.5,44.3 58.5,39.8 59.5,33.1 60.6,38.7 61.6,20.7 62.6,11.6 63.6,20.7 64.7,33.1 65.7,27.4 66.7,21.8 67.8,24.0 68.8,39.8 69.8,35.3 70.8,31.9 71.9,43.2 72.9,37.6 73.9,37.6 75.0,53.4 76.0,53.4 77.0,48.9 78.0,44.3 79.1,47.7 80.1,47.7 81.1,41.0 82.2,39.8 83.2,52.2 84.2,51.1 85.2,50.0 86.3,51.1 87.3,48.9 88.3,53.4 89.4,55.6 90.4,55.6 91.4,47.7 92.4,39.8 93.5,44.3 94.5,37.6 95.5,43.2 96.6,59.0 97.6,59.0 98.6,57.9 99.6,51.1 100.7,38.7 101.7,41.0 102.7,45.5 103.8,53.4 104.8,53.4 105.8,53.4 106.8,44.3 107.9,47.7 108.9,42.1 109.9,30.8 111.0,51.1 112.0,56.7 113.0,47.7 114.0,43.2 115.1,34.2 116.1,24.0 117.1,26.3 118.1,41.0 119.2,53.4 120.2,36.4 121.2,27.4 122.3,37.6 123.3,30.8 124.3,37.6 125.3,54.5 126.4,45.5 127.4,51.1 128.4,41.0 129.5,37.6 130.5,9.4 131.5,15.0 132.5,33.1 133.6,33.1 134.6,36.4 135.6,29.7 136.7,19.5 137.7,19.5 138.7,45.5 139.7,51.1 140.8,59.0 141.8,59.0 142.8,47.7 143.9,36.4 144.9,33.1 145.9,36.4 146.9,53.4 148.0,59.0 149.0,48.9 150.0,37.6 151.1,36.4 152.1,38.7 153.1,47.7 154.1,55.6 155.2,52.2 156.2,52.2 157.2,42.1 158.3,43.2 159.3,41.0 160.3,42.1 161.3,46.6 162.4,54.5 163.4,46.6 164.4,51.1 165.5,47.7 166.5,42.1 167.5,6.0 168.5,46.6 169.6,57.9 170.6,56.7 171.6,55.6 172.7,48.9 173.7,37.6 174.7,37.6 175.7,46.6 176.8,54.5 177.8,48.9 178.8,42.1 179.9,31.9 180.9,42.1 181.9,46.6 182.9,54.5 184.0,56.7 185.0,46.6 186.0,46.6 187.0,55.6 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,56.7 207.6,59.0 208.6,59.0 209.7,59.0 210.7,57.9 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,57.9 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,55.6 268.3,57.9 269.3,57.9 270.3,59.0 271.4,59.0 272.4,56.7 273.4,56.7 274.5,55.6 275.5,54.5 276.5,57.9 277.5,59.0 278.6,59.0 279.6,53.4 280.6,57.9 281.7,57.9 282.7,56.7 283.7,56.7 284.7,59.0 285.8,53.4 286.8,52.2 287.8,57.9 288.9,59.0 289.9,56.7 290.9,59.0 291.9,59.0 293.0,53.4 294.0,55.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ST. GEORGE, UT HOLDROOM<\/b><br>389 N. Industrial Road, Suite 4<br>St. George, UT<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 2<\/b> (2025-10-01)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 5<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,48.4 5.0,59.0 6.1,59.0 7.1,6.0 8.1,59.0 9.1,59.0 10.2,16.6 11.2,59.0 12.2,37.8 13.3,6.0 14.3,48.4 15.3,48.4 16.3,27.2 17.4,59.0 18.4,59.0 19.4,48.4 20.5,48.4 21.5,59.0 22.5,48.4 23.5,59.0 24.6,59.0 25.6,59.0 26.6,48.4 27.7,48.4 28.7,48.4 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,37.8 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,48.4 62.6,59.0 63.6,16.6 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,16.6 70.8,37.8 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,37.8 78.0,27.2 79.1,37.8 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,16.6 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,48.4 128.4,59.0 129.5,37.8 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,48.4 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,37.8 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SAN JUAN AIRPORT HOLD ROOM<\/b><br>LUIS MUNOZ MARIN IA<br>SAN JUAN, PR<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 8<\/b> (2025-10-23)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 12<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,54.6 5.0,45.8 6.1,32.5 7.1,36.9 8.1,6.0 9.1,41.3 10.2,32.5 11.2,59.0 12.2,59.0 13.3,59.0 14.3,6.0 15.3,28.1 16.3,50.2 17.4,19.2 18.4,59.0 19.4,41.3 20.5,32.5 21.5,41.3 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,50.2 31.8,59.0 32.8,59.0 33.8,54.6 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,54.6 53.4,59.0 54.4,59.0 55.4,54.6 56.4,54.6 57.5,59.0 58.5,54.6 59.5,54.6 60.6,50.2 61.6,59.0 62.6,59.0 63.6,36.9 64.7,59.0 65.7,50.2 66.7,54.6 67.8,59.0 68.8,54.6 69.8,59.0 70.8,54.6 71.9,50.2 72.9,54.6 73.9,59.0 75.0,59.0 76.0,59.0 77.0,50.2 78.0,50.2 79.1,59.0 80.1,45.8 81.1,50.2 82.2,59.0 83.2,59.0 84.2,54.6 85.2,45.8 86.3,50.2 87.3,45.8 88.3,59.0 89.4,59.0 90.4,59.0 91.4,41.3 92.4,54.6 93.5,59.0 94.5,54.6 95.5,50.2 96.6,54.6 97.6,59.0 98.6,59.0 99.6,54.6 100.7,36.9 101.7,59.0 102.7,50.2 103.8,59.0 104.8,59.0 105.8,59.0 106.8,50.2 107.9,59.0 108.9,59.0 109.9,45.8 111.0,54.6 112.0,59.0 113.0,45.8 114.0,59.0 115.1,59.0 116.1,45.8 117.1,50.2 118.1,59.0 119.2,59.0 120.2,41.3 121.2,54.6 122.3,59.0 123.3,59.0 124.3,54.6 125.3,59.0 126.4,59.0 127.4,59.0 128.4,45.8 129.5,54.6 130.5,59.0 131.5,28.1 132.5,41.3 133.6,59.0 134.6,54.6 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,32.5 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,54.6 145.9,45.8 146.9,59.0 148.0,50.2 149.0,59.0 150.0,59.0 151.1,41.3 152.1,23.7 153.1,59.0 154.1,50.2 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,41.3 160.3,59.0 161.3,54.6 162.4,59.0 163.4,50.2 164.4,59.0 165.5,45.8 166.5,59.0 167.5,50.2 168.5,54.6 169.6,54.6 170.6,54.6 171.6,59.0 172.7,54.6 173.7,50.2 174.7,50.2 175.7,45.8 176.8,59.0 177.8,59.0 178.8,59.0 179.9,54.6 180.9,59.0 181.9,45.8 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,50.2 190.1,54.6 191.2,59.0 192.2,59.0 193.2,59.0 194.2,50.2 195.3,50.2 196.3,54.6 197.3,59.0 198.4,59.0 199.4,41.3 200.4,59.0 201.4,50.2 202.5,59.0 203.5,59.0 204.5,59.0 205.6,50.2 206.6,50.2 207.6,59.0 208.6,45.8 209.7,50.2 210.7,59.0 211.7,59.0 212.8,59.0 213.8,50.2 214.8,59.0 215.8,50.2 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,45.8 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,54.6 230.2,54.6 231.3,59.0 232.3,50.2 233.3,54.6 234.4,50.2 235.4,54.6 236.4,54.6 237.4,54.6 238.5,54.6 239.5,59.0 240.5,50.2 241.6,59.0 242.6,59.0 243.6,41.3 244.6,50.2 245.7,59.0 246.7,50.2 247.7,59.0 248.8,50.2 249.8,59.0 250.8,59.0 251.8,54.6 252.9,59.0 253.9,59.0 254.9,54.6 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,54.6 265.2,59.0 266.2,50.2 267.3,59.0 268.3,59.0 269.3,50.2 270.3,59.0 271.4,59.0 272.4,50.2 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,54.6 282.7,50.2 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,54.6 288.9,54.6 289.9,54.6 290.9,59.0 291.9,59.0 293.0,59.0 294.0,45.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SALT LAKE CITY HOLD ROOM<\/b><br>2975 Decker Lake Drive, Suite 100<br>West Valley City, UT<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 67<\/b> (2025-12-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 21/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 67<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,51.9 5.0,32.9 6.1,37.6 7.1,46.3 8.1,32.1 9.1,28.1 10.2,52.7 11.2,52.7 12.2,37.6 13.3,43.2 14.3,38.4 15.3,42.4 16.3,32.9 17.4,56.6 18.4,44.8 19.4,49.5 20.5,47.1 21.5,46.3 22.5,42.4 23.5,34.5 24.6,57.4 25.6,51.9 26.6,45.6 27.7,34.5 28.7,52.7 29.7,36.9 30.7,39.2 31.8,53.5 32.8,56.6 33.8,45.6 34.9,35.3 35.9,46.3 36.9,46.3 37.9,54.3 39.0,58.2 40.0,36.9 41.0,44.8 42.0,43.2 43.1,21.0 44.1,41.6 45.1,36.9 46.2,57.4 47.2,52.7 48.2,44.8 49.2,51.1 50.3,42.4 51.3,47.9 52.3,45.6 53.4,57.4 54.4,52.7 55.4,49.5 56.4,41.6 57.5,32.1 58.5,50.3 59.5,40.0 60.6,56.6 61.6,36.9 62.6,45.6 63.6,50.3 64.7,34.5 65.7,49.5 66.7,29.7 67.8,59.0 68.8,37.6 69.8,41.6 70.8,36.1 71.9,42.4 72.9,47.9 73.9,50.3 75.0,55.0 76.0,36.9 77.0,51.9 78.0,36.9 79.1,34.5 80.1,40.8 81.1,44.8 82.2,55.8 83.2,44.0 84.2,45.6 85.2,50.3 86.3,28.1 87.3,37.6 88.3,39.2 89.4,59.0 90.4,40.0 91.4,42.4 92.4,47.9 93.5,43.2 94.5,44.8 95.5,32.9 96.6,47.1 97.6,41.6 98.6,36.9 99.6,51.1 100.7,39.2 101.7,37.6 102.7,32.9 103.8,56.6 104.8,49.5 105.8,52.7 106.8,39.2 107.9,41.6 108.9,44.0 109.9,37.6 111.0,58.2 112.0,48.7 113.0,49.5 114.0,52.7 115.1,45.6 116.1,53.5 117.1,25.8 118.1,56.6 119.2,47.9 120.2,48.7 121.2,51.1 122.3,28.9 123.3,41.6 124.3,37.6 125.3,53.5 126.4,36.1 127.4,49.5 128.4,51.9 129.5,41.6 130.5,38.4 131.5,33.7 132.5,55.8 133.6,44.0 134.6,42.4 135.6,49.5 136.7,15.5 137.7,49.5 138.7,39.2 139.7,44.0 140.8,36.1 141.8,55.8 142.8,56.6 143.9,44.8 144.9,48.7 145.9,48.7 146.9,55.8 148.0,44.0 149.0,38.4 150.0,44.8 151.1,29.7 152.1,51.9 153.1,42.4 154.1,56.6 155.2,32.9 156.2,48.7 157.2,51.1 158.3,36.1 159.3,55.8 160.3,24.2 161.3,56.6 162.4,31.3 163.4,51.1 164.4,47.9 165.5,43.2 166.5,54.3 167.5,29.7 168.5,55.8 169.6,46.3 170.6,56.6 171.6,59.0 172.7,45.6 173.7,51.9 174.7,36.1 175.7,47.9 176.8,53.5 177.8,51.1 178.8,44.0 179.9,30.5 180.9,47.9 181.9,32.1 182.9,51.1 184.0,27.4 185.0,40.8 186.0,47.9 187.0,27.4 188.1,55.0 189.1,28.9 190.1,56.6 191.2,56.6 192.2,29.7 193.2,35.3 194.2,6.0 195.3,25.0 196.3,34.5 197.3,22.6 198.4,24.2 199.4,56.6 200.4,53.5 201.4,42.4 202.5,50.3 203.5,30.5 204.5,40.0 205.6,51.9 206.6,51.9 207.6,41.6 208.6,39.2 209.7,45.6 210.7,25.8 211.7,52.7 212.8,55.8 213.8,33.7 214.8,51.1 215.8,28.9 216.9,45.6 217.9,8.4 218.9,40.0 220.0,44.0 221.0,9.2 222.0,36.9 223.0,17.9 224.1,33.7 225.1,28.9 226.1,41.6 227.2,44.8 228.2,28.9 229.2,32.9 230.2,30.5 231.3,44.0 232.3,35.3 233.3,55.0 234.4,58.2 235.4,19.4 236.4,41.6 237.4,34.5 238.5,49.5 239.5,36.9 240.5,57.4 241.6,58.2 242.6,44.0 243.6,39.2 244.6,50.3 245.7,51.1 246.7,39.2 247.7,51.9 248.8,54.3 249.8,32.1 250.8,55.0 251.8,44.0 252.9,48.7 253.9,51.9 254.9,55.8 256.0,57.4 257.0,31.3 258.0,47.1 259.0,44.8 260.1,46.3 261.1,51.1 262.1,55.0 263.1,56.6 264.2,22.6 265.2,43.2 266.2,21.8 267.3,55.0 268.3,45.6 269.3,51.9 270.3,54.3 271.4,21.0 272.4,13.9 273.4,39.2 274.5,52.7 275.5,43.2 276.5,51.1 277.5,55.0 278.6,10.7 279.6,45.6 280.6,47.9 281.7,20.2 282.7,54.3 283.7,49.5 284.7,55.8 285.8,26.6 286.8,49.5 287.8,51.1 288.9,10.7 289.9,51.9 290.9,55.0 291.9,56.6 293.0,8.4 294.0,47.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SALT LAKE COUNTY JAIL<\/b><br>3415 South 900 West<br>Salt Lake City, UT<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 7<\/b> (2025-12-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 27<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,19.7 5.0,11.9 6.1,31.5 7.1,45.3 8.1,43.3 9.1,47.2 10.2,41.3 11.2,41.3 12.2,31.5 13.3,43.3 14.3,47.2 15.3,47.2 16.3,31.5 17.4,35.4 18.4,33.5 19.4,43.3 20.5,33.5 21.5,37.4 22.5,33.5 23.5,31.5 24.6,41.3 25.6,41.3 26.6,35.4 27.7,33.5 28.7,37.4 29.7,37.4 30.7,33.5 31.8,43.3 32.8,43.3 33.8,37.4 34.9,33.5 35.9,35.4 36.9,37.4 37.9,43.3 39.0,39.4 40.0,39.4 41.0,25.6 42.0,19.7 43.1,29.6 44.1,29.6 45.1,27.6 46.2,27.6 47.2,21.7 48.2,15.8 49.2,9.9 50.3,31.5 51.3,37.4 52.3,41.3 53.4,31.5 54.4,25.6 55.4,21.7 56.4,15.8 57.5,19.7 58.5,25.6 59.5,19.7 60.6,35.4 61.6,27.6 62.6,21.7 63.6,25.6 64.7,25.6 65.7,41.3 66.7,39.4 67.8,43.3 68.8,41.3 69.8,29.6 70.8,23.7 71.9,23.7 72.9,31.5 73.9,29.6 75.0,31.5 76.0,29.6 77.0,25.6 78.0,23.7 79.1,31.5 80.1,33.5 81.1,27.6 82.2,27.6 83.2,27.6 84.2,13.9 85.2,6.0 86.3,8.0 87.3,25.6 88.3,27.6 89.4,39.4 90.4,39.4 91.4,33.5 92.4,43.3 93.5,39.4 94.5,41.3 95.5,35.4 96.6,41.3 97.6,37.4 98.6,33.5 99.6,37.4 100.7,43.3 101.7,53.1 102.7,57.0 103.8,59.0 104.8,45.3 105.8,43.3 106.8,41.3 107.9,53.1 108.9,49.2 109.9,45.3 111.0,49.2 112.0,49.2 113.0,45.3 114.0,47.2 115.1,51.1 116.1,53.1 117.1,53.1 118.1,45.3 119.2,41.3 120.2,41.3 121.2,53.1 122.3,45.3 123.3,47.2 124.3,49.2 125.3,49.2 126.4,49.2 127.4,49.2 128.4,51.1 129.5,53.1 130.5,53.1 131.5,53.1 132.5,53.1 133.6,53.1 134.6,53.1 135.6,59.0 136.7,59.0 137.7,57.0 138.7,57.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,57.0 145.9,57.0 146.9,57.0 148.0,59.0 149.0,57.0 150.0,57.0 151.1,57.0 152.1,59.0 153.1,57.0 154.1,59.0 155.2,49.2 156.2,47.2 157.2,51.1 158.3,49.2 159.3,49.2 160.3,47.2 161.3,53.1 162.4,49.2 163.4,49.2 164.4,53.1 165.5,53.1 166.5,57.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,55.1 174.7,53.1 175.7,57.0 176.8,57.0 177.8,57.0 178.8,55.1 179.9,55.1 180.9,53.1 181.9,51.1 182.9,53.1 184.0,59.0 185.0,59.0 186.0,55.1 187.0,53.1 188.1,53.1 189.1,49.2 190.1,55.1 191.2,51.1 192.2,47.2 193.2,47.2 194.2,45.3 195.3,51.1 196.3,57.0 197.3,57.0 198.4,59.0 199.4,59.0 200.4,55.1 201.4,53.1 202.5,53.1 203.5,55.1 204.5,55.1 205.6,51.1 206.6,51.1 207.6,59.0 208.6,59.0 209.7,57.0 210.7,57.0 211.7,59.0 212.8,57.0 213.8,57.0 214.8,55.1 215.8,53.1 216.9,55.1 217.9,55.1 218.9,57.0 220.0,57.0 221.0,55.1 222.0,53.1 223.0,51.1 224.1,55.1 225.1,57.0 226.1,57.0 227.2,57.0 228.2,59.0 229.2,55.1 230.2,55.1 231.3,57.0 232.3,57.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,57.0 237.4,57.0 238.5,55.1 239.5,57.0 240.5,57.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,55.1 246.7,53.1 247.7,53.1 248.8,53.1 249.8,59.0 250.8,59.0 251.8,57.0 252.9,57.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,55.1 258.0,55.1 259.0,59.0 260.1,55.1 261.1,53.1 262.1,53.1 263.1,55.1 264.2,55.1 265.2,55.1 266.2,55.1 267.3,53.1 268.3,53.1 269.3,55.1 270.3,57.0 271.4,51.1 272.4,49.2 273.4,49.2 274.5,47.2 275.5,47.2 276.5,47.2 277.5,57.0 278.6,57.0 279.6,57.0 280.6,57.0 281.7,57.0 282.7,57.0 283.7,51.1 284.7,49.2 285.8,49.2 286.8,45.3 287.8,45.3 288.9,45.3 289.9,57.0 290.9,57.0 291.9,59.0 293.0,59.0 294.0,57.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SANTA MARIA SUB OFFICE ERO<\/b><br>, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 34<\/b> (2025-12-27)&nbsp;&nbsp;<br><b>Mean:<\/b> 5/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 34<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,51.2 6.1,51.2 7.1,43.4 8.1,51.2 9.1,46.5 10.2,59.0 11.2,54.3 12.2,46.5 13.3,48.1 14.3,48.1 15.3,40.3 16.3,37.2 17.4,57.4 18.4,59.0 19.4,46.5 20.5,51.2 21.5,43.4 22.5,55.9 23.5,37.2 24.6,59.0 25.6,55.9 26.6,55.9 27.7,48.1 28.7,52.8 29.7,55.9 30.7,41.9 31.8,59.0 32.8,59.0 33.8,54.3 34.9,52.8 35.9,51.2 36.9,34.1 37.9,59.0 39.0,59.0 40.0,59.0 41.0,55.9 42.0,37.2 43.1,51.2 44.1,54.3 45.1,45.0 46.2,59.0 47.2,59.0 48.2,55.9 49.2,54.3 50.3,52.8 51.3,52.8 52.3,46.5 53.4,59.0 54.4,59.0 55.4,57.4 56.4,52.8 57.5,55.9 58.5,52.8 59.5,43.4 60.6,55.9 61.6,59.0 62.6,49.6 63.6,51.2 64.7,54.3 65.7,54.3 66.7,48.1 67.8,59.0 68.8,59.0 69.8,51.2 70.8,55.9 71.9,48.1 72.9,57.4 73.9,48.1 75.0,59.0 76.0,59.0 77.0,51.2 78.0,49.6 79.1,52.8 80.1,51.2 81.1,45.0 82.2,57.4 83.2,55.9 84.2,46.5 85.2,49.6 86.3,55.9 87.3,49.6 88.3,54.3 89.4,59.0 90.4,59.0 91.4,54.3 92.4,45.0 93.5,51.2 94.5,48.1 95.5,52.8 96.6,59.0 97.6,54.3 98.6,57.4 99.6,48.1 100.7,52.8 101.7,55.9 102.7,48.1 103.8,59.0 104.8,59.0 105.8,55.9 106.8,48.1 107.9,55.9 108.9,51.2 109.9,29.4 111.0,57.4 112.0,59.0 113.0,54.3 114.0,48.1 115.1,46.5 116.1,51.2 117.1,43.4 118.1,54.3 119.2,59.0 120.2,54.3 121.2,52.8 122.3,49.6 123.3,51.2 124.3,48.1 125.3,52.8 126.4,59.0 127.4,54.3 128.4,57.4 129.5,51.2 130.5,52.8 131.5,41.9 132.5,57.4 133.6,59.0 134.6,48.1 135.6,54.3 136.7,52.8 137.7,51.2 138.7,45.0 139.7,59.0 140.8,57.4 141.8,59.0 142.8,52.8 143.9,49.6 144.9,48.1 145.9,43.4 146.9,57.4 148.0,59.0 149.0,54.3 150.0,48.1 151.1,46.5 152.1,54.3 153.1,45.0 154.1,57.4 155.2,54.3 156.2,51.2 157.2,51.2 158.3,40.3 159.3,49.6 160.3,41.9 161.3,59.0 162.4,55.9 163.4,48.1 164.4,49.6 165.5,52.8 166.5,55.9 167.5,52.8 168.5,59.0 169.6,55.9 170.6,48.1 171.6,57.4 172.7,49.6 173.7,46.5 174.7,48.1 175.7,57.4 176.8,57.4 177.8,54.3 178.8,52.8 179.9,41.9 180.9,51.2 181.9,35.6 182.9,57.4 184.0,59.0 185.0,51.2 186.0,49.6 187.0,49.6 188.1,59.0 189.1,37.2 190.1,57.4 191.2,59.0 192.2,52.8 193.2,55.9 194.2,49.6 195.3,54.3 196.3,48.1 197.3,59.0 198.4,55.9 199.4,54.3 200.4,46.5 201.4,52.8 202.5,52.8 203.5,41.9 204.5,55.9 205.6,54.3 206.6,54.3 207.6,52.8 208.6,52.8 209.7,54.3 210.7,43.4 211.7,57.4 212.8,59.0 213.8,57.4 214.8,37.2 215.8,59.0 216.9,59.0 217.9,57.4 218.9,6.0 220.0,35.6 221.0,13.8 222.0,34.1 223.0,43.4 224.1,55.9 225.1,51.2 226.1,59.0 227.2,59.0 228.2,57.4 229.2,52.8 230.2,54.3 231.3,51.2 232.3,38.7 233.3,57.4 234.4,59.0 235.4,54.3 236.4,51.2 237.4,49.6 238.5,55.9 239.5,48.1 240.5,57.4 241.6,57.4 242.6,55.9 243.6,51.2 244.6,54.3 245.7,52.8 246.7,46.5 247.7,55.9 248.8,57.4 249.8,54.3 250.8,49.6 251.8,59.0 252.9,43.4 253.9,46.5 254.9,59.0 256.0,57.4 257.0,54.3 258.0,51.2 259.0,49.6 260.1,52.8 261.1,52.8 262.1,59.0 263.1,59.0 264.2,49.6 265.2,49.6 266.2,54.3 267.3,51.2 268.3,46.5 269.3,59.0 270.3,57.4 271.4,57.4 272.4,54.3 273.4,54.3 274.5,46.5 275.5,45.0 276.5,59.0 277.5,57.4 278.6,48.1 279.6,52.8 280.6,54.3 281.7,49.6 282.7,40.3 283.7,57.4 284.7,57.4 285.8,51.2 286.8,38.7 287.8,51.2 288.9,52.8 289.9,49.6 290.9,55.9 291.9,59.0 293.0,48.1 294.0,51.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SAN ANTONIO DRO HOLD ROOM<\/b><br>1777 NE Loop 410, Floor 15<br>San Antonio, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 139<\/b> (2026-01-30)&nbsp;&nbsp;<br><b>Mean:<\/b> 46/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 145<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,55.0 5.0,38.2 6.1,24.6 7.1,6.0 8.1,14.0 9.1,35.2 10.2,44.4 11.2,52.4 12.2,44.7 13.3,34.1 14.3,30.5 15.3,36.3 16.3,49.5 17.4,47.7 18.4,52.1 19.4,37.8 20.5,37.1 21.5,33.4 22.5,46.2 23.5,41.8 24.6,53.2 25.6,54.2 26.6,43.3 27.7,36.7 28.7,40.0 29.7,33.8 30.7,46.2 31.8,53.9 32.8,58.3 33.8,53.2 34.9,42.6 35.9,46.2 36.9,49.1 37.9,58.3 39.0,56.4 40.0,56.1 41.0,48.4 42.0,45.8 43.1,45.8 44.1,44.7 45.1,52.4 46.2,56.4 47.2,58.3 48.2,47.7 49.2,46.9 50.3,42.2 51.3,42.6 52.3,54.2 53.4,56.1 54.4,57.2 55.4,44.7 56.4,41.8 57.5,44.7 58.5,41.1 59.5,39.3 60.6,56.4 61.6,57.2 62.6,46.6 63.6,42.2 64.7,36.3 65.7,38.5 66.7,44.0 67.8,43.6 68.8,52.1 69.8,46.2 70.8,36.7 71.9,37.8 72.9,46.2 73.9,46.2 75.0,48.4 76.0,56.1 77.0,49.1 78.0,41.8 79.1,46.2 80.1,42.2 81.1,52.1 82.2,51.7 83.2,53.9 84.2,51.3 85.2,49.1 86.3,46.2 87.3,41.8 88.3,52.4 89.4,53.2 90.4,54.2 91.4,49.1 92.4,42.2 93.5,42.6 94.5,45.8 95.5,53.5 96.6,50.2 97.6,52.8 98.6,53.9 99.6,41.1 100.7,41.8 101.7,44.7 102.7,41.1 103.8,43.3 104.8,49.9 105.8,42.2 106.8,37.1 107.9,29.4 108.9,41.8 109.9,45.1 111.0,47.3 112.0,50.2 113.0,38.5 114.0,41.1 115.1,39.6 116.1,44.4 117.1,49.9 118.1,47.3 119.2,49.1 120.2,46.2 121.2,36.0 122.3,50.6 123.3,41.1 124.3,29.0 125.3,26.8 126.4,41.1 127.4,48.4 128.4,33.8 129.5,29.4 130.5,39.6 131.5,47.3 132.5,50.2 133.6,46.9 134.6,51.7 135.6,44.0 136.7,42.6 137.7,43.3 138.7,43.3 139.7,50.2 140.8,53.9 141.8,53.5 142.8,43.3 143.9,47.7 144.9,46.9 145.9,49.5 146.9,55.3 148.0,52.1 149.0,48.4 150.0,44.0 151.1,43.3 152.1,45.8 153.1,45.5 154.1,49.1 155.2,52.1 156.2,51.0 157.2,50.2 158.3,41.8 159.3,37.8 160.3,29.8 161.3,39.3 162.4,39.6 163.4,46.9 164.4,41.8 165.5,38.2 166.5,48.8 167.5,47.7 168.5,40.7 169.6,55.0 170.6,42.2 171.6,45.8 172.7,40.0 173.7,45.1 174.7,36.3 175.7,38.5 176.8,37.4 177.8,28.7 178.8,34.1 179.9,39.3 180.9,37.4 181.9,22.8 182.9,37.8 184.0,53.2 185.0,47.7 186.0,39.3 187.0,25.0 188.1,44.7 189.1,53.2 190.1,56.4 191.2,54.2 192.2,51.0 193.2,44.4 194.2,34.5 195.3,33.8 196.3,35.6 197.3,50.2 198.4,52.4 199.4,53.5 200.4,46.6 201.4,45.5 202.5,38.9 203.5,38.5 204.5,30.5 205.6,48.8 206.6,49.1 207.6,49.9 208.6,49.1 209.7,41.5 210.7,45.5 211.7,44.0 212.8,46.2 213.8,50.2 214.8,48.0 215.8,43.6 216.9,50.2 217.9,51.0 218.9,53.9 220.0,55.3 221.0,50.2 222.0,48.4 223.0,43.6 224.1,47.3 225.1,45.5 226.1,46.2 227.2,46.9 228.2,43.6 229.2,40.7 230.2,25.4 231.3,37.8 232.3,23.5 233.3,40.0 234.4,41.5 235.4,40.4 236.4,28.7 237.4,22.4 238.5,15.9 239.5,22.8 240.5,26.5 241.6,37.4 242.6,49.5 243.6,34.1 244.6,44.7 245.7,25.7 246.7,21.7 247.7,29.4 248.8,46.6 249.8,47.7 250.8,34.5 251.8,28.7 252.9,13.7 253.9,8.2 254.9,33.0 256.0,40.7 257.0,47.7 258.0,45.5 259.0,47.7 260.1,40.4 261.1,33.8 262.1,45.8 263.1,50.6 264.2,47.7 265.2,51.0 266.2,47.3 267.3,40.7 268.3,45.1 269.3,47.7 270.3,53.2 271.4,52.4 272.4,47.7 273.4,45.5 274.5,45.8 275.5,37.1 276.5,38.9 277.5,51.7 278.6,48.0 279.6,46.6 280.6,45.8 281.7,46.9 282.7,53.2 283.7,50.2 284.7,46.2 285.8,47.7 286.8,46.2 287.8,48.8 288.9,46.9 289.9,45.5 290.9,45.1 291.9,53.9 293.0,52.4 294.0,49.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ERO HOLD ROOM (SPRINGFIELD MO)<\/b><br>2401 W. OLD ROUTE 66<br>STRAFFORD, MO<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 55<\/b> (2025-11-21)&nbsp;&nbsp;<br><b>Mean:<\/b> 7/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 62<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,57.3 5.0,59.0 6.1,59.0 7.1,57.3 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,56.4 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,31.6 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,57.3 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,52.2 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,49.6 63.6,59.0 64.7,48.7 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,51.3 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,37.6 80.1,58.1 81.1,59.0 82.2,59.0 83.2,59.0 84.2,50.5 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,14.5 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,20.5 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,24.8 108.9,58.1 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,24.0 116.1,35.9 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,6.0 123.3,31.6 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,34.2 130.5,59.0 131.5,59.0 132.5,57.3 133.6,59.0 134.6,59.0 135.6,39.3 136.7,58.1 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,56.4 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,18.0 152.1,59.0 153.1,49.6 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,22.2 159.3,55.6 160.3,29.9 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,37.6 166.5,59.0 167.5,31.6 168.5,59.0 169.6,59.0 170.6,58.1 171.6,59.0 172.7,27.4 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,42.8 180.9,59.0 181.9,12.0 182.9,58.1 184.0,59.0 185.0,59.0 186.0,59.0 187.0,50.5 188.1,59.0 189.1,31.6 190.1,54.7 191.2,59.0 192.2,59.0 193.2,59.0 194.2,35.9 195.3,59.0 196.3,33.4 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,31.6 202.5,59.0 203.5,31.6 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,45.3 209.7,57.3 210.7,26.5 211.7,52.2 212.8,59.0 213.8,59.0 214.8,59.0 215.8,28.2 216.9,59.0 217.9,51.3 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,44.5 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,58.1 230.2,59.0 231.3,59.0 232.3,52.2 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,36.8 238.5,59.0 239.5,34.2 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,28.2 245.7,59.0 246.7,25.7 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,33.4 252.9,59.0 253.9,43.6 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,31.6 260.1,59.0 261.1,17.1 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,27.4 267.3,59.0 268.3,58.1 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,24.8 274.5,59.0 275.5,21.4 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,41.9 281.7,59.0 282.7,42.8 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,27.4 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">BISHOP HENRY WHIPPLE FED BLDG<\/b><br>1 Federal Drive, Suite 1601<br>Fort Snelling, MN<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 362<\/b> (2026-01-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 65/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 362<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,57.8 6.1,55.9 7.1,52.4 8.1,55.9 9.1,55.9 10.2,58.6 11.2,57.4 12.2,57.0 13.3,57.2 14.3,53.1 15.3,55.6 16.3,54.0 17.4,58.0 18.4,50.2 19.4,57.0 20.5,58.4 21.5,55.8 22.5,57.8 23.5,58.3 24.6,58.9 25.6,52.0 26.6,57.1 27.7,57.5 28.7,52.0 29.7,57.8 30.7,57.4 31.8,59.0 32.8,54.0 33.8,58.1 34.9,58.4 35.9,58.1 36.9,57.1 37.9,59.0 39.0,59.0 40.0,54.8 41.0,58.1 42.0,56.2 43.1,51.7 44.1,54.6 45.1,56.7 46.2,52.7 47.2,59.0 48.2,57.7 49.2,57.1 50.3,52.3 51.3,56.7 52.3,58.6 53.4,55.5 54.4,58.9 55.4,55.3 56.4,56.2 57.5,54.9 58.5,56.8 59.5,58.0 60.6,54.6 61.6,58.3 62.6,55.5 63.6,58.3 64.7,52.1 65.7,58.0 66.7,58.0 67.8,53.1 68.8,59.0 69.8,56.2 70.8,56.2 71.9,54.3 72.9,55.8 73.9,57.4 75.0,50.7 76.0,58.9 77.0,56.1 78.0,58.4 79.1,54.3 80.1,57.1 81.1,57.0 82.2,48.5 83.2,58.7 84.2,57.4 85.2,57.5 86.3,54.5 87.3,58.0 88.3,58.3 89.4,58.3 90.4,54.5 91.4,58.0 92.4,56.4 93.5,50.9 94.5,57.8 95.5,56.2 96.6,50.2 97.6,58.6 98.6,58.1 99.6,57.8 100.7,56.2 101.7,56.5 102.7,51.7 103.8,47.0 104.8,58.9 105.8,53.7 106.8,57.1 107.9,54.3 108.9,57.0 109.9,57.1 111.0,57.0 112.0,59.0 113.0,51.2 114.0,58.3 115.1,54.3 116.1,57.8 117.1,58.4 118.1,53.3 119.2,59.0 120.2,55.5 121.2,56.8 122.3,52.9 123.3,57.5 124.3,58.4 125.3,51.1 126.4,59.0 127.4,54.2 128.4,57.4 129.5,54.9 130.5,57.1 131.5,56.2 132.5,52.9 133.6,58.7 134.6,54.9 135.6,56.2 136.7,55.5 137.7,56.7 138.7,56.4 139.7,51.1 140.8,59.0 141.8,55.0 142.8,58.9 143.9,54.5 144.9,57.5 145.9,59.0 146.9,53.3 148.0,55.5 149.0,54.3 150.0,57.2 151.1,53.3 152.1,58.0 153.1,58.0 154.1,54.0 155.2,58.9 156.2,55.6 157.2,57.7 158.3,55.0 159.3,57.1 160.3,58.6 161.3,54.8 162.4,58.9 163.4,53.9 164.4,57.2 165.5,54.2 166.5,57.5 167.5,58.0 168.5,54.8 169.6,58.7 170.6,55.3 171.6,58.3 172.7,54.3 173.7,58.1 174.7,57.5 175.7,54.3 176.8,58.3 177.8,57.4 178.8,56.7 179.9,55.5 180.9,58.6 181.9,58.4 182.9,52.4 184.0,58.7 185.0,57.1 186.0,52.9 187.0,58.0 188.1,59.0 189.1,58.7 190.1,58.7 191.2,58.7 192.2,55.3 193.2,45.1 194.2,50.8 195.3,42.3 196.3,50.1 197.3,52.9 198.4,54.5 199.4,54.9 200.4,55.2 201.4,52.7 202.5,47.0 203.5,45.5 204.5,53.4 205.6,43.2 206.6,52.1 207.6,50.8 208.6,54.3 209.7,54.9 210.7,54.2 211.7,56.7 212.8,45.4 213.8,56.2 214.8,47.9 215.8,56.5 216.9,58.6 217.9,50.2 218.9,55.6 220.0,58.6 221.0,57.4 222.0,47.3 223.0,55.5 224.1,53.1 225.1,47.0 226.1,55.0 227.2,54.8 228.2,40.6 229.2,34.0 230.2,35.9 231.3,22.3 232.3,6.0 233.3,6.7 234.4,9.2 235.4,11.0 236.4,13.9 237.4,20.9 238.5,15.7 239.5,37.8 240.5,41.0 241.6,46.6 242.6,47.6 243.6,38.1 244.6,39.7 245.7,35.4 246.7,31.9 247.7,40.6 248.8,43.6 249.8,37.2 250.8,41.7 251.8,41.7 252.9,41.6 253.9,40.8 254.9,45.2 256.0,46.1 257.0,42.3 258.0,36.6 259.0,35.3 260.1,30.2 261.1,44.4 262.1,45.5 263.1,43.3 264.2,42.7 265.2,41.9 266.2,48.2 267.3,46.8 268.3,50.2 269.3,51.8 270.3,54.5 271.4,54.8 272.4,50.1 273.4,53.1 274.5,53.0 275.5,53.4 276.5,52.6 277.5,56.7 278.6,57.5 279.6,54.5 280.6,57.5 281.7,54.6 282.7,57.4 283.7,57.2 284.7,58.9 285.8,58.4 286.8,57.7 287.8,58.4 288.9,55.8 289.9,58.4 290.9,58.1 291.9,59.0 293.0,58.4 294.0,56.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SPOKANE HOLD ROOM<\/b><br>411 W Cataldo Avenue<br>Spokane, WA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 26<\/b> (2025-10-10)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 26<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,46.8 6.1,44.7 7.1,46.8 8.1,54.9 9.1,59.0 10.2,59.0 11.2,59.0 12.2,50.8 13.3,59.0 14.3,38.6 15.3,38.6 16.3,59.0 17.4,59.0 18.4,59.0 19.4,50.8 20.5,59.0 21.5,59.0 22.5,59.0 23.5,54.9 24.6,59.0 25.6,59.0 26.6,59.0 27.7,42.7 28.7,59.0 29.7,52.9 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,54.9 36.9,59.0 37.9,59.0 39.0,59.0 40.0,57.0 41.0,59.0 42.0,57.0 43.1,59.0 44.1,59.0 45.1,50.8 46.2,59.0 47.2,59.0 48.2,42.7 49.2,59.0 50.3,38.6 51.3,59.0 52.3,54.9 53.4,59.0 54.4,59.0 55.4,54.9 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,57.0 64.7,59.0 65.7,52.9 66.7,52.9 67.8,59.0 68.8,59.0 69.8,54.9 70.8,59.0 71.9,44.7 72.9,57.0 73.9,57.0 75.0,59.0 76.0,59.0 77.0,48.8 78.0,52.9 79.1,59.0 80.1,54.9 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,48.8 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,57.0 94.5,54.9 95.5,46.8 96.6,59.0 97.6,50.8 98.6,59.0 99.6,48.8 100.7,59.0 101.7,59.0 102.7,52.9 103.8,59.0 104.8,59.0 105.8,50.8 106.8,59.0 107.9,59.0 108.9,57.0 109.9,54.9 111.0,59.0 112.0,59.0 113.0,59.0 114.0,48.8 115.1,59.0 116.1,54.9 117.1,48.8 118.1,59.0 119.2,59.0 120.2,54.9 121.2,54.9 122.3,57.0 123.3,59.0 124.3,50.8 125.3,59.0 126.4,59.0 127.4,46.8 128.4,57.0 129.5,57.0 130.5,48.8 131.5,52.9 132.5,59.0 133.6,59.0 134.6,34.5 135.6,54.9 136.7,59.0 137.7,57.0 138.7,6.0 139.7,59.0 140.8,59.0 141.8,52.9 142.8,46.8 143.9,59.0 144.9,54.9 145.9,42.7 146.9,59.0 148.0,59.0 149.0,57.0 150.0,59.0 151.1,36.6 152.1,59.0 153.1,40.7 154.1,59.0 155.2,59.0 156.2,44.7 157.2,44.7 158.3,59.0 159.3,57.0 160.3,32.5 161.3,59.0 162.4,59.0 163.4,46.8 164.4,57.0 165.5,59.0 166.5,59.0 167.5,42.7 168.5,59.0 169.6,59.0 170.6,44.7 171.6,59.0 172.7,52.9 173.7,46.8 174.7,59.0 175.7,59.0 176.8,57.0 177.8,42.7 178.8,57.0 179.9,59.0 180.9,50.8 181.9,46.8 182.9,59.0 184.0,59.0 185.0,38.6 186.0,57.0 187.0,50.8 188.1,57.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,40.7 193.2,59.0 194.2,40.7 195.3,57.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,50.8 200.4,32.5 201.4,38.6 202.5,36.6 203.5,44.7 204.5,59.0 205.6,59.0 206.6,40.7 207.6,54.9 208.6,59.0 209.7,59.0 210.7,52.9 211.7,59.0 212.8,59.0 213.8,44.7 214.8,59.0 215.8,57.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,57.0 222.0,42.7 223.0,59.0 224.1,59.0 225.1,59.0 226.1,54.9 227.2,59.0 228.2,48.8 229.2,59.0 230.2,57.0 231.3,52.9 232.3,59.0 233.3,59.0 234.4,54.9 235.4,48.8 236.4,59.0 237.4,38.6 238.5,59.0 239.5,44.7 240.5,59.0 241.6,59.0 242.6,59.0 243.6,38.6 244.6,54.9 245.7,54.9 246.7,54.9 247.7,59.0 248.8,59.0 249.8,59.0 250.8,48.8 251.8,59.0 252.9,52.9 253.9,48.8 254.9,57.0 256.0,59.0 257.0,54.9 258.0,57.0 259.0,57.0 260.1,26.4 261.1,48.8 262.1,59.0 263.1,59.0 264.2,54.9 265.2,59.0 266.2,38.6 267.3,59.0 268.3,48.8 269.3,59.0 270.3,59.0 271.4,52.9 272.4,50.8 273.4,59.0 274.5,57.0 275.5,46.8 276.5,59.0 277.5,59.0 278.6,50.8 279.6,50.8 280.6,48.8 281.7,52.9 282.7,54.9 283.7,59.0 284.7,59.0 285.8,54.9 286.8,59.0 287.8,48.8 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,57.0 294.0,57.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SAINT ALBANS HOLD ROOM<\/b><br>64 GRICEBROOK ROAD<br>SAINT ALBANS, VT<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 3<\/b> (2025-11-07)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 3<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,6.0 19.4,41.3 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,41.3 47.2,41.3 48.2,41.3 49.2,41.3 50.3,41.3 51.3,41.3 52.3,41.3 53.4,41.3 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,41.3 69.8,41.3 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,41.3 106.8,59.0 107.9,59.0 108.9,59.0 109.9,41.3 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,23.7 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,41.3 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,6.0 168.5,59.0 169.6,41.3 170.6,59.0 171.6,41.3 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,41.3 187.0,59.0 188.1,59.0 189.1,23.7 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,41.3 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,41.3 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,41.3 230.2,41.3 231.3,23.7 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,23.7 261.1,23.7 262.1,23.7 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,23.7 280.6,6.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,41.3 285.8,59.0 286.8,59.0 287.8,23.7 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,41.3 294.0,23.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ST CHARLES PARISH JAIL<\/b><br>5061 La Highway 3127<br>Killona, LA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 2<\/b> (2026-02-05)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,32.5 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,32.5 258.0,59.0 259.0,59.0 260.1,6.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SOUTH TEXAS/PEARSALL HOLD ROOM<\/b><br>566 VETERAN DRIVE<br>PEARSALL, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 54<\/b> (2025-10-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 21/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 54<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,58.0 5.0,58.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,58.0 18.4,57.0 19.4,55.1 20.5,50.2 21.5,26.6 22.5,36.4 23.5,38.4 24.6,51.1 25.6,53.1 26.6,52.1 27.7,46.2 28.7,41.3 29.7,39.4 30.7,38.4 31.8,28.6 32.8,46.2 33.8,36.4 34.9,42.3 35.9,31.5 36.9,8.9 37.9,26.6 39.0,52.1 40.0,46.2 41.0,48.2 42.0,38.4 43.1,40.4 44.1,30.5 45.1,31.5 46.2,33.5 47.2,44.3 48.2,46.2 49.2,48.2 50.3,48.2 51.3,48.2 52.3,41.3 53.4,45.3 54.4,46.2 55.4,49.2 56.4,36.4 57.5,38.4 58.5,41.3 59.5,30.5 60.6,31.5 61.6,44.3 62.6,41.3 63.6,30.5 64.7,34.5 65.7,21.7 66.7,28.6 67.8,17.8 68.8,37.4 69.8,52.1 70.8,58.0 71.9,58.0 72.9,59.0 73.9,58.0 75.0,41.3 76.0,59.0 77.0,59.0 78.0,59.0 79.1,46.2 80.1,46.2 81.1,57.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,52.1 89.4,52.1 90.4,59.0 91.4,59.0 92.4,48.2 93.5,43.3 94.5,35.4 95.5,54.1 96.6,35.4 97.6,50.2 98.6,50.2 99.6,47.2 100.7,48.2 101.7,39.4 102.7,29.6 103.8,45.3 104.8,58.0 105.8,53.1 106.8,41.3 107.9,37.4 108.9,26.6 109.9,33.5 111.0,23.7 112.0,42.3 113.0,44.3 114.0,37.4 115.1,41.3 116.1,31.5 117.1,23.7 118.1,45.3 119.2,52.1 120.2,42.3 121.2,33.5 122.3,28.6 123.3,24.6 124.3,39.4 125.3,38.4 126.4,39.4 127.4,47.2 128.4,43.3 129.5,34.5 130.5,28.6 131.5,6.0 132.5,45.3 133.6,43.3 134.6,44.3 135.6,49.2 136.7,38.4 137.7,48.2 138.7,44.3 139.7,36.4 140.8,45.3 141.8,47.2 142.8,33.5 143.9,46.2 144.9,31.5 145.9,37.4 146.9,36.4 148.0,55.1 149.0,51.1 150.0,30.5 151.1,42.3 152.1,47.2 153.1,20.7 154.1,37.4 155.2,44.3 156.2,55.1 157.2,38.4 158.3,49.2 159.3,32.5 160.3,41.3 161.3,29.6 162.4,31.5 163.4,41.3 164.4,43.3 165.5,45.3 166.5,26.6 167.5,27.6 168.5,41.3 169.6,56.1 170.6,47.2 171.6,42.3 172.7,37.4 173.7,37.4 174.7,26.6 175.7,40.4 176.8,42.3 177.8,19.7 178.8,14.8 179.9,25.6 180.9,31.5 181.9,24.6 182.9,34.5 184.0,41.3 185.0,47.2 186.0,27.6 187.0,28.6 188.1,24.6 189.1,52.1 190.1,44.3 191.2,52.1 192.2,52.1 193.2,47.2 194.2,39.4 195.3,49.2 196.3,43.3 197.3,39.4 198.4,50.2 199.4,55.1 200.4,36.4 201.4,39.4 202.5,34.5 203.5,8.9 204.5,32.5 205.6,43.3 206.6,57.0 207.6,51.1 208.6,45.3 209.7,46.2 210.7,49.2 211.7,46.2 212.8,46.2 213.8,55.1 214.8,44.3 215.8,49.2 216.9,31.5 217.9,34.5 218.9,22.7 220.0,35.4 221.0,52.1 222.0,46.2 223.0,38.4 224.1,32.5 225.1,38.4 226.1,54.1 227.2,42.3 228.2,40.4 229.2,49.2 230.2,30.5 231.3,21.7 232.3,12.9 233.3,33.5 234.4,26.6 235.4,42.3 236.4,30.5 237.4,28.6 238.5,38.4 239.5,7.0 240.5,26.6 241.6,17.8 242.6,39.4 243.6,28.6 244.6,45.3 245.7,42.3 246.7,22.7 247.7,33.5 248.8,40.4 249.8,43.3 250.8,50.2 251.8,51.1 252.9,19.7 253.9,24.6 254.9,34.5 256.0,42.3 257.0,40.4 258.0,34.5 259.0,39.4 260.1,45.3 261.1,39.4 262.1,39.4 263.1,48.2 264.2,46.2 265.2,46.2 266.2,47.2 267.3,39.4 268.3,43.3 269.3,41.3 270.3,44.3 271.4,47.2 272.4,47.2 273.4,19.7 274.5,31.5 275.5,26.6 276.5,32.5 277.5,46.2 278.6,44.3 279.6,33.5 280.6,41.3 281.7,46.2 282.7,48.2 283.7,42.3 284.7,42.3 285.8,39.4 286.8,41.3 287.8,36.4 288.9,44.3 289.9,34.5 290.9,39.4 291.9,44.3 293.0,46.2 294.0,39.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ST. JOHN'S COUNTY JAIL<\/b><br>3955 Lewis Speedway<br>St. Augustine, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 23<\/b> (2026-01-14)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 23<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,56.7 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,56.7 233.3,59.0 234.4,59.0 235.4,59.0 236.4,31.3 237.4,6.0 238.5,33.7 239.5,45.2 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">STOCKTON STAGING FACILITY<\/b><br>22 EAST MARKET STREET<br>STOCKTON, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 32<\/b> (2025-12-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 6/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 32<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,57.3 5.0,44.1 6.1,40.8 7.1,52.4 8.1,49.1 9.1,55.7 10.2,55.7 11.2,52.4 12.2,47.4 13.3,42.4 14.3,50.7 15.3,54.0 16.3,50.7 17.4,55.7 18.4,59.0 19.4,57.3 20.5,54.0 21.5,49.1 22.5,55.7 23.5,57.3 24.6,57.3 25.6,57.3 26.6,57.3 27.7,54.0 28.7,52.4 29.7,49.1 30.7,47.4 31.8,57.3 32.8,59.0 33.8,55.7 34.9,52.4 35.9,50.7 36.9,55.7 37.9,59.0 39.0,55.7 40.0,59.0 41.0,59.0 42.0,54.0 43.1,52.4 44.1,49.1 45.1,47.4 46.2,49.1 47.2,55.7 48.2,55.7 49.2,47.4 50.3,55.7 51.3,35.8 52.3,40.8 53.4,50.7 54.4,49.1 55.4,52.4 56.4,50.7 57.5,55.7 58.5,45.8 59.5,49.1 60.6,50.7 61.6,42.4 62.6,57.3 63.6,35.8 64.7,57.3 65.7,54.0 66.7,57.3 67.8,49.1 68.8,59.0 69.8,59.0 70.8,59.0 71.9,57.3 72.9,57.3 73.9,59.0 75.0,57.3 76.0,59.0 77.0,57.3 78.0,57.3 79.1,54.0 80.1,55.7 81.1,57.3 82.2,57.3 83.2,52.4 84.2,52.4 85.2,59.0 86.3,50.7 87.3,59.0 88.3,57.3 89.4,55.7 90.4,57.3 91.4,57.3 92.4,57.3 93.5,54.0 94.5,59.0 95.5,52.4 96.6,57.3 97.6,57.3 98.6,52.4 99.6,55.7 100.7,49.1 101.7,54.0 102.7,49.1 103.8,57.3 104.8,59.0 105.8,54.0 106.8,55.7 107.9,39.1 108.9,55.7 109.9,52.4 111.0,57.3 112.0,57.3 113.0,57.3 114.0,49.1 115.1,40.8 116.1,47.4 117.1,42.4 118.1,54.0 119.2,59.0 120.2,57.3 121.2,44.1 122.3,47.4 123.3,34.2 124.3,52.4 125.3,59.0 126.4,57.3 127.4,54.0 128.4,45.8 129.5,55.7 130.5,50.7 131.5,55.7 132.5,59.0 133.6,59.0 134.6,52.4 135.6,44.1 136.7,54.0 137.7,47.4 138.7,55.7 139.7,59.0 140.8,59.0 141.8,59.0 142.8,47.4 143.9,42.4 144.9,45.8 145.9,49.1 146.9,59.0 148.0,59.0 149.0,52.4 150.0,49.1 151.1,47.4 152.1,45.8 153.1,52.4 154.1,27.5 155.2,59.0 156.2,54.0 157.2,47.4 158.3,39.1 159.3,50.7 160.3,55.7 161.3,55.7 162.4,57.3 163.4,47.4 164.4,47.4 165.5,47.4 166.5,52.4 167.5,54.0 168.5,52.4 169.6,57.3 170.6,55.7 171.6,52.4 172.7,55.7 173.7,49.1 174.7,52.4 175.7,49.1 176.8,57.3 177.8,55.7 178.8,54.0 179.9,49.1 180.9,42.4 181.9,55.7 182.9,57.3 184.0,59.0 185.0,52.4 186.0,47.4 187.0,42.4 188.1,52.4 189.1,57.3 190.1,57.3 191.2,55.7 192.2,49.1 193.2,22.6 194.2,6.0 195.3,7.7 196.3,25.9 197.3,44.1 198.4,49.1 199.4,17.6 200.4,20.9 201.4,19.2 202.5,11.0 203.5,32.5 204.5,52.4 205.6,57.3 206.6,29.2 207.6,40.8 208.6,39.1 209.7,22.6 210.7,34.2 211.7,50.7 212.8,55.7 213.8,34.2 214.8,30.8 215.8,44.1 216.9,54.0 217.9,42.4 218.9,57.3 220.0,59.0 221.0,55.7 222.0,49.1 223.0,52.4 224.1,59.0 225.1,49.1 226.1,57.3 227.2,57.3 228.2,47.4 229.2,47.4 230.2,54.0 231.3,50.7 232.3,47.4 233.3,54.0 234.4,57.3 235.4,49.1 236.4,47.4 237.4,35.8 238.5,45.8 239.5,52.4 240.5,44.1 241.6,54.0 242.6,45.8 243.6,45.8 244.6,37.5 245.7,55.7 246.7,44.1 247.7,55.7 248.8,55.7 249.8,54.0 250.8,45.8 251.8,50.7 252.9,52.4 253.9,54.0 254.9,57.3 256.0,55.7 257.0,50.7 258.0,52.4 259.0,42.4 260.1,57.3 261.1,55.7 262.1,59.0 263.1,57.3 264.2,59.0 265.2,52.4 266.2,47.4 267.3,44.1 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,54.0 273.4,47.4 274.5,57.3 275.5,55.7 276.5,59.0 277.5,59.0 278.6,57.3 279.6,54.0 280.6,57.3 281.7,52.4 282.7,50.7 283.7,57.3 284.7,57.3 285.8,55.7 286.8,52.4 287.8,50.7 288.9,50.7 289.9,50.7 290.9,55.7 291.9,55.7 293.0,54.0 294.0,52.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ST. LOUIS HOLDROOM<\/b><br>1222 SPRUCE STREET<br>ST. LOUIS, MO<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 42<\/b> (2026-01-18)&nbsp;&nbsp;<br><b>Mean:<\/b> 6/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 42<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,56.5 5.0,51.4 6.1,36.3 7.1,33.8 8.1,28.7 9.1,50.2 10.2,54.0 11.2,51.4 12.2,47.6 13.3,46.4 14.3,42.6 15.3,50.2 16.3,51.4 17.4,54.0 18.4,52.7 19.4,48.9 20.5,38.8 21.5,47.6 22.5,54.0 23.5,55.2 24.6,54.0 25.6,52.7 26.6,45.1 27.7,45.1 28.7,51.4 29.7,47.6 30.7,47.6 31.8,54.0 32.8,57.7 33.8,50.2 34.9,42.6 35.9,47.6 36.9,52.7 37.9,50.2 39.0,55.2 40.0,57.7 41.0,57.7 42.0,50.2 43.1,50.2 44.1,46.4 45.1,59.0 46.2,54.0 47.2,56.5 48.2,51.4 49.2,42.6 50.3,41.3 51.3,54.0 52.3,48.9 53.4,48.9 54.4,52.7 55.4,52.7 56.4,52.7 57.5,48.9 58.5,42.6 59.5,55.2 60.6,55.2 61.6,54.0 62.6,42.6 63.6,51.4 64.7,42.6 65.7,55.2 66.7,50.2 67.8,54.0 68.8,57.7 69.8,50.2 70.8,52.7 71.9,48.9 72.9,36.3 73.9,55.2 75.0,50.2 76.0,52.7 77.0,42.6 78.0,52.7 79.1,46.4 80.1,50.2 81.1,55.2 82.2,54.0 83.2,54.0 84.2,46.4 85.2,48.9 86.3,52.7 87.3,55.2 88.3,52.7 89.4,52.7 90.4,55.2 91.4,46.4 92.4,55.2 93.5,37.5 94.5,50.2 95.5,51.4 96.6,59.0 97.6,57.7 98.6,57.7 99.6,13.6 100.7,46.4 101.7,54.0 102.7,59.0 103.8,56.5 104.8,57.7 105.8,54.0 106.8,51.4 107.9,54.0 108.9,50.2 109.9,48.9 111.0,55.2 112.0,56.5 113.0,54.0 114.0,47.6 115.1,51.4 116.1,52.7 117.1,51.4 118.1,55.2 119.2,56.5 120.2,42.6 121.2,50.2 122.3,51.4 123.3,55.2 124.3,52.7 125.3,57.7 126.4,57.7 127.4,52.7 128.4,50.2 129.5,56.5 130.5,57.7 131.5,46.4 132.5,59.0 133.6,52.7 134.6,46.4 135.6,47.6 136.7,52.7 137.7,51.4 138.7,56.5 139.7,56.5 140.8,56.5 141.8,59.0 142.8,51.4 143.9,48.9 144.9,55.2 145.9,54.0 146.9,47.6 148.0,55.2 149.0,56.5 150.0,50.2 151.1,51.4 152.1,52.7 153.1,42.6 154.1,54.0 155.2,57.7 156.2,51.4 157.2,46.4 158.3,47.6 159.3,50.2 160.3,54.0 161.3,54.0 162.4,56.5 163.4,55.2 164.4,55.2 165.5,51.4 166.5,52.7 167.5,50.2 168.5,55.2 169.6,57.7 170.6,52.7 171.6,55.2 172.7,52.7 173.7,51.4 174.7,50.2 175.7,55.2 176.8,50.2 177.8,43.9 178.8,55.2 179.9,51.4 180.9,51.4 181.9,50.2 182.9,54.0 184.0,55.2 185.0,47.6 186.0,50.2 187.0,52.7 188.1,56.5 189.1,55.2 190.1,56.5 191.2,57.7 192.2,54.0 193.2,48.9 194.2,45.1 195.3,42.6 196.3,50.2 197.3,54.0 198.4,56.5 199.4,55.2 200.4,48.9 201.4,50.2 202.5,50.2 203.5,51.4 204.5,50.2 205.6,52.7 206.6,48.9 207.6,46.4 208.6,47.6 209.7,45.1 210.7,45.1 211.7,54.0 212.8,52.7 213.8,56.5 214.8,51.4 215.8,56.5 216.9,57.7 217.9,54.0 218.9,54.0 220.0,57.7 221.0,51.4 222.0,52.7 223.0,57.7 224.1,56.5 225.1,56.5 226.1,56.5 227.2,56.5 228.2,51.4 229.2,36.3 230.2,52.7 231.3,45.1 232.3,46.4 233.3,52.7 234.4,55.2 235.4,48.9 236.4,45.1 237.4,47.6 238.5,45.1 239.5,50.2 240.5,54.0 241.6,6.0 242.6,55.2 243.6,52.7 244.6,43.9 245.7,48.9 246.7,46.4 247.7,54.0 248.8,59.0 249.8,59.0 250.8,55.2 251.8,48.9 252.9,47.6 253.9,55.2 254.9,55.2 256.0,56.5 257.0,52.7 258.0,54.0 259.0,54.0 260.1,50.2 261.1,52.7 262.1,52.7 263.1,52.7 264.2,46.4 265.2,47.6 266.2,50.2 267.3,52.7 268.3,48.9 269.3,52.7 270.3,56.5 271.4,48.9 272.4,46.4 273.4,46.4 274.5,48.9 275.5,55.2 276.5,54.0 277.5,52.7 278.6,47.6 279.6,50.2 280.6,52.7 281.7,48.9 282.7,50.2 283.7,54.0 284.7,52.7 285.8,46.4 286.8,52.7 287.8,43.9 288.9,51.4 289.9,51.4 290.9,54.0 291.9,55.2 293.0,54.0 294.0,43.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">ST. LUCIE COUNTY JAIL<\/b><br>900 N. Rock Rd<br>Fort Pierce, FL<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 11<\/b> (2025-12-26)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 11<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,54.2 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,49.4 37.9,49.4 39.0,59.0 40.0,59.0 41.0,54.2 42.0,54.2 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,54.2 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,54.2 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,54.2 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,49.4 200.4,49.4 201.4,49.4 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,34.9 213.8,34.9 214.8,59.0 215.8,34.9 216.9,34.9 217.9,6.0 218.9,30.1 220.0,25.3 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,54.2 230.2,54.2 231.3,54.2 232.3,54.2 233.3,54.2 234.4,54.2 235.4,54.2 236.4,49.4 237.4,54.2 238.5,54.2 239.5,54.2 240.5,54.2 241.6,54.2 242.6,34.9 243.6,34.9 244.6,6.0 245.7,6.0 246.7,6.0 247.7,54.2 248.8,54.2 249.8,54.2 250.8,54.2 251.8,54.2 252.9,54.2 253.9,54.2 254.9,54.2 256.0,54.2 257.0,54.2 258.0,54.2 259.0,49.4 260.1,49.4 261.1,54.2 262.1,54.2 263.1,54.2 264.2,54.2 265.2,54.2 266.2,54.2 267.3,54.2 268.3,54.2 269.3,54.2 270.3,54.2 271.4,54.2 272.4,49.4 273.4,49.4 274.5,49.4 275.5,49.4 276.5,49.4 277.5,49.4 278.6,49.4 279.6,49.4 280.6,49.4 281.7,49.4 282.7,49.4 283.7,49.4 284.7,49.4 285.8,49.4 286.8,49.4 287.8,49.4 288.9,49.4 289.9,49.4 290.9,49.4 291.9,49.4 293.0,49.4 294.0,49.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">STUART HOLD ROOM<\/b><br>3500 SE COMMERCE AVE<br>STUART, FL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 45<\/b> (2025-10-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 15/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 54<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,57.0 5.0,55.1 6.1,50.2 7.1,43.3 8.1,57.0 9.1,57.0 10.2,57.0 11.2,54.1 12.2,54.1 13.3,49.2 14.3,45.3 15.3,54.1 16.3,56.1 17.4,57.0 18.4,57.0 19.4,51.1 20.5,45.3 21.5,51.1 22.5,56.1 23.5,56.1 24.6,50.2 25.6,55.1 26.6,51.1 27.7,53.1 28.7,53.1 29.7,51.1 30.7,56.1 31.8,46.2 32.8,43.3 33.8,46.2 34.9,49.2 35.9,53.1 36.9,57.0 37.9,57.0 39.0,57.0 40.0,57.0 41.0,57.0 42.0,57.0 43.1,50.2 44.1,47.2 45.1,57.0 46.2,57.0 47.2,55.1 48.2,56.1 49.2,56.1 50.3,42.3 51.3,57.0 52.3,57.0 53.4,57.0 54.4,57.0 55.4,57.0 56.4,56.1 57.5,54.1 58.5,53.1 59.5,44.3 60.6,34.5 61.6,53.1 62.6,48.2 63.6,56.1 64.7,54.1 65.7,47.2 66.7,50.2 67.8,56.1 68.8,56.1 69.8,56.1 70.8,56.1 71.9,48.2 72.9,53.1 73.9,53.1 75.0,49.2 76.0,49.2 77.0,47.2 78.0,57.0 79.1,47.2 80.1,44.3 81.1,42.3 82.2,41.3 83.2,47.2 84.2,45.3 85.2,52.1 86.3,48.2 87.3,45.3 88.3,46.2 89.4,58.0 90.4,58.0 91.4,58.0 92.4,57.0 93.5,57.0 94.5,52.1 95.5,53.1 96.6,56.1 97.6,58.0 98.6,58.0 99.6,53.1 100.7,54.1 101.7,52.1 102.7,58.0 103.8,56.1 104.8,56.1 105.8,46.2 106.8,49.2 107.9,41.3 108.9,40.4 109.9,41.3 111.0,33.5 112.0,43.3 113.0,54.1 114.0,37.4 115.1,21.7 116.1,6.0 117.1,38.4 118.1,56.1 119.2,57.0 120.2,46.2 121.2,49.2 122.3,38.4 123.3,57.0 124.3,41.3 125.3,39.4 126.4,41.3 127.4,57.0 128.4,36.4 129.5,35.4 130.5,21.7 131.5,14.8 132.5,41.3 133.6,51.1 134.6,45.3 135.6,51.1 136.7,41.3 137.7,58.0 138.7,37.4 139.7,40.4 140.8,53.1 141.8,42.3 142.8,55.1 143.9,46.2 144.9,52.1 145.9,47.2 146.9,50.2 148.0,55.1 149.0,52.1 150.0,53.1 151.1,47.2 152.1,55.1 153.1,46.2 154.1,44.3 155.2,46.2 156.2,42.3 157.2,52.1 158.3,51.1 159.3,40.4 160.3,46.2 161.3,42.3 162.4,39.4 163.4,53.1 164.4,50.2 165.5,37.4 166.5,52.1 167.5,44.3 168.5,47.2 169.6,26.6 170.6,46.2 171.6,48.2 172.7,45.3 173.7,52.1 174.7,49.2 175.7,49.2 176.8,59.0 177.8,49.2 178.8,55.1 179.9,44.3 180.9,42.3 181.9,48.2 182.9,30.5 184.0,47.2 185.0,34.5 186.0,37.4 187.0,43.3 188.1,45.3 189.1,26.6 190.1,36.4 191.2,50.2 192.2,30.5 193.2,43.3 194.2,35.4 195.3,43.3 196.3,37.4 197.3,46.2 198.4,43.3 199.4,36.4 200.4,51.1 201.4,29.6 202.5,18.8 203.5,41.3 204.5,24.6 205.6,25.6 206.6,28.6 207.6,34.5 208.6,37.4 209.7,43.3 210.7,34.5 211.7,46.2 212.8,57.0 213.8,43.3 214.8,50.2 215.8,39.4 216.9,57.0 217.9,51.1 218.9,46.2 220.0,42.3 221.0,51.1 222.0,51.1 223.0,42.3 224.1,57.0 225.1,52.1 226.1,47.2 227.2,56.1 228.2,53.1 229.2,48.2 230.2,39.4 231.3,45.3 232.3,52.1 233.3,34.5 234.4,43.3 235.4,44.3 236.4,34.5 237.4,50.2 238.5,47.2 239.5,57.0 240.5,50.2 241.6,49.2 242.6,58.0 243.6,38.4 244.6,45.3 245.7,51.1 246.7,29.6 247.7,36.4 248.8,35.4 249.8,58.0 250.8,54.1 251.8,37.4 252.9,51.1 253.9,51.1 254.9,37.4 256.0,47.2 257.0,45.3 258.0,52.1 259.0,46.2 260.1,44.3 261.1,43.3 262.1,34.5 263.1,46.2 264.2,53.1 265.2,50.2 266.2,37.4 267.3,51.1 268.3,39.4 269.3,45.3 270.3,39.4 271.4,51.1 272.4,45.3 273.4,51.1 274.5,51.1 275.5,42.3 276.5,45.3 277.5,44.3 278.6,49.2 279.6,39.4 280.6,21.7 281.7,36.4 282.7,46.2 283.7,48.2 284.7,38.4 285.8,52.1 286.8,52.1 287.8,45.3 288.9,50.2 289.9,47.2 290.9,50.2 291.9,52.1 293.0,53.1 294.0,51.1\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SYRACUSE HOLD ROOM<\/b><br>401 S. Salina Street, Suite 108<br>Syracuse, NY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 23<\/b> (2026-01-31)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 23<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,54.4 7.1,54.4 8.1,59.0 9.1,59.0 10.2,56.7 11.2,59.0 12.2,56.7 13.3,54.4 14.3,56.7 15.3,56.7 16.3,54.4 17.4,59.0 18.4,56.7 19.4,52.1 20.5,59.0 21.5,54.4 22.5,56.7 23.5,54.4 24.6,59.0 25.6,59.0 26.6,56.7 27.7,52.1 28.7,49.8 29.7,59.0 30.7,59.0 31.8,56.7 32.8,59.0 33.8,36.0 34.9,56.7 35.9,59.0 36.9,59.0 37.9,59.0 39.0,56.7 40.0,59.0 41.0,56.7 42.0,56.7 43.1,59.0 44.1,56.7 45.1,56.7 46.2,59.0 47.2,59.0 48.2,56.7 49.2,56.7 50.3,52.1 51.3,59.0 52.3,56.7 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,56.7 59.5,59.0 60.6,52.1 61.6,56.7 62.6,59.0 63.6,56.7 64.7,59.0 65.7,59.0 66.7,54.4 67.8,59.0 68.8,59.0 69.8,59.0 70.8,52.1 71.9,54.4 72.9,56.7 73.9,59.0 75.0,56.7 76.0,59.0 77.0,56.7 78.0,56.7 79.1,56.7 80.1,54.4 81.1,59.0 82.2,59.0 83.2,56.7 84.2,56.7 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,52.1 92.4,56.7 93.5,59.0 94.5,59.0 95.5,59.0 96.6,56.7 97.6,59.0 98.6,59.0 99.6,56.7 100.7,54.4 101.7,54.4 102.7,59.0 103.8,56.7 104.8,52.1 105.8,47.5 106.8,47.5 107.9,49.8 108.9,49.8 109.9,52.1 111.0,54.4 112.0,54.4 113.0,26.7 114.0,26.7 115.1,45.2 116.1,42.9 117.1,54.4 118.1,54.4 119.2,52.1 120.2,52.1 121.2,54.4 122.3,45.2 123.3,49.8 124.3,54.4 125.3,52.1 126.4,54.4 127.4,49.8 128.4,56.7 129.5,54.4 130.5,56.7 131.5,59.0 132.5,54.4 133.6,59.0 134.6,45.2 135.6,56.7 136.7,54.4 137.7,54.4 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,45.2 143.9,52.1 144.9,54.4 145.9,49.8 146.9,59.0 148.0,59.0 149.0,49.8 150.0,59.0 151.1,52.1 152.1,49.8 153.1,49.8 154.1,52.1 155.2,59.0 156.2,52.1 157.2,47.5 158.3,49.8 159.3,56.7 160.3,56.7 161.3,59.0 162.4,59.0 163.4,49.8 164.4,54.4 165.5,54.4 166.5,49.8 167.5,54.4 168.5,52.1 169.6,59.0 170.6,59.0 171.6,52.1 172.7,45.2 173.7,52.1 174.7,54.4 175.7,56.7 176.8,59.0 177.8,54.4 178.8,54.4 179.9,52.1 180.9,49.8 181.9,54.4 182.9,56.7 184.0,59.0 185.0,56.7 186.0,52.1 187.0,56.7 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,54.4 193.2,59.0 194.2,52.1 195.3,49.8 196.3,54.4 197.3,56.7 198.4,59.0 199.4,54.4 200.4,54.4 201.4,59.0 202.5,54.4 203.5,59.0 204.5,56.7 205.6,59.0 206.6,59.0 207.6,54.4 208.6,59.0 209.7,54.4 210.7,59.0 211.7,59.0 212.8,59.0 213.8,52.1 214.8,59.0 215.8,52.1 216.9,56.7 217.9,54.4 218.9,59.0 220.0,56.7 221.0,49.8 222.0,56.7 223.0,56.7 224.1,59.0 225.1,59.0 226.1,59.0 227.2,56.7 228.2,56.7 229.2,45.2 230.2,56.7 231.3,59.0 232.3,56.7 233.3,56.7 234.4,56.7 235.4,52.1 236.4,45.2 237.4,45.2 238.5,52.1 239.5,52.1 240.5,59.0 241.6,59.0 242.6,54.4 243.6,49.8 244.6,54.4 245.7,56.7 246.7,56.7 247.7,59.0 248.8,59.0 249.8,59.0 250.8,56.7 251.8,56.7 252.9,56.7 253.9,59.0 254.9,6.0 256.0,59.0 257.0,59.0 258.0,56.7 259.0,54.4 260.1,54.4 261.1,56.7 262.1,59.0 263.1,59.0 264.2,54.4 265.2,54.4 266.2,33.7 267.3,59.0 268.3,54.4 269.3,56.7 270.3,52.1 271.4,52.1 272.4,38.3 273.4,54.4 274.5,56.7 275.5,56.7 276.5,56.7 277.5,59.0 278.6,59.0 279.6,54.4 280.6,47.5 281.7,54.4 282.7,59.0 283.7,56.7 284.7,59.0 285.8,59.0 286.8,59.0 287.8,54.4 288.9,56.7 289.9,56.7 290.9,59.0 291.9,59.0 293.0,54.4 294.0,54.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">TALLAHASSEE HOLD ROOM<\/b><br>1530 COMMONWEALTH BUSINESS BLVD<br>TALLAHASSEE, FL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 49<\/b> (2025-11-24)&nbsp;&nbsp;<br><b>Mean:<\/b> 16/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 51<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,48.6 5.0,56.9 6.1,43.4 7.1,44.5 8.1,56.9 9.1,34.1 10.2,59.0 11.2,55.9 12.2,26.8 13.3,56.9 14.3,36.1 15.3,58.0 16.3,29.9 17.4,59.0 18.4,59.0 19.4,40.3 20.5,44.5 21.5,40.3 22.5,55.9 23.5,23.7 24.6,21.6 25.6,59.0 26.6,43.4 27.7,48.6 28.7,59.0 29.7,58.0 30.7,35.1 31.8,59.0 32.8,39.3 33.8,34.1 34.9,48.6 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,50.7 41.0,48.6 42.0,56.9 43.1,51.7 44.1,59.0 45.1,36.1 46.2,59.0 47.2,59.0 48.2,59.0 49.2,51.7 50.3,49.6 51.3,56.9 52.3,55.9 53.4,58.0 54.4,55.9 55.4,22.6 56.4,51.7 57.5,49.6 58.5,55.9 59.5,56.9 60.6,58.0 61.6,58.0 62.6,56.9 63.6,50.7 64.7,55.9 65.7,54.8 66.7,43.4 67.8,55.9 68.8,55.9 69.8,51.7 70.8,55.9 71.9,52.8 72.9,56.9 73.9,50.7 75.0,56.9 76.0,54.8 77.0,53.8 78.0,55.9 79.1,49.6 80.1,50.7 81.1,14.3 82.2,53.8 83.2,56.9 84.2,56.9 85.2,48.6 86.3,12.2 87.3,14.3 88.3,59.0 89.4,48.6 90.4,59.0 91.4,59.0 92.4,52.8 93.5,49.6 94.5,50.7 95.5,50.7 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,29.9 101.7,39.3 102.7,37.2 103.8,56.9 104.8,58.0 105.8,16.4 106.8,47.6 107.9,39.3 108.9,45.5 109.9,55.9 111.0,58.0 112.0,58.0 113.0,58.0 114.0,42.4 115.1,34.1 116.1,52.8 117.1,28.9 118.1,58.0 119.2,52.8 120.2,38.2 121.2,55.9 122.3,39.3 123.3,58.0 124.3,6.0 125.3,55.9 126.4,55.9 127.4,44.5 128.4,32.0 129.5,32.0 130.5,54.8 131.5,32.0 132.5,51.7 133.6,54.8 134.6,30.9 135.6,50.7 136.7,38.2 137.7,50.7 138.7,23.7 139.7,58.0 140.8,58.0 141.8,33.0 142.8,33.0 143.9,52.8 144.9,50.7 145.9,19.5 146.9,56.9 148.0,58.0 149.0,35.1 150.0,48.6 151.1,20.5 152.1,45.5 153.1,29.9 154.1,55.9 155.2,54.8 156.2,35.1 157.2,46.5 158.3,33.0 159.3,42.4 160.3,14.3 161.3,58.0 162.4,56.9 163.4,15.4 164.4,55.9 165.5,40.3 166.5,54.8 167.5,40.3 168.5,55.9 169.6,49.6 170.6,36.1 171.6,45.5 172.7,37.2 173.7,49.6 174.7,16.4 175.7,54.8 176.8,55.9 177.8,28.9 178.8,54.8 179.9,33.0 180.9,46.5 181.9,49.6 182.9,55.9 184.0,55.9 185.0,8.1 186.0,52.8 187.0,17.4 188.1,55.9 189.1,53.8 190.1,54.8 191.2,54.8 192.2,19.5 193.2,54.8 194.2,27.8 195.3,48.6 196.3,33.0 197.3,43.4 198.4,55.9 199.4,34.1 200.4,39.3 201.4,19.5 202.5,50.7 203.5,30.9 204.5,54.8 205.6,54.8 206.6,29.9 207.6,48.6 208.6,23.7 209.7,45.5 210.7,36.1 211.7,55.9 212.8,55.9 213.8,35.1 214.8,37.2 215.8,22.6 216.9,54.8 217.9,46.5 218.9,53.8 220.0,51.7 221.0,33.0 222.0,44.5 223.0,27.8 224.1,53.8 225.1,51.7 226.1,55.9 227.2,49.6 228.2,23.7 229.2,21.6 230.2,41.3 231.3,45.5 232.3,25.7 233.3,50.7 234.4,33.0 235.4,36.1 236.4,34.1 237.4,24.7 238.5,21.6 239.5,22.6 240.5,45.5 241.6,28.9 242.6,54.8 243.6,34.1 244.6,51.7 245.7,52.8 246.7,52.8 247.7,55.9 248.8,55.9 249.8,24.7 250.8,51.7 251.8,27.8 252.9,40.3 253.9,43.4 254.9,53.8 256.0,53.8 257.0,40.3 258.0,44.5 259.0,42.4 260.1,42.4 261.1,33.0 262.1,41.3 263.1,54.8 264.2,35.1 265.2,35.1 266.2,44.5 267.3,23.7 268.3,35.1 269.3,53.8 270.3,54.8 271.4,30.9 272.4,52.8 273.4,42.4 274.5,28.9 275.5,36.1 276.5,32.0 277.5,45.5 278.6,21.6 279.6,46.5 280.6,24.7 281.7,33.0 282.7,34.1 283.7,41.3 284.7,56.9 285.8,29.9 286.8,50.7 287.8,41.3 288.9,55.9 289.9,40.3 290.9,52.8 291.9,58.0 293.0,44.5 294.0,41.3\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">TAMPA HOLD ROOM<\/b><br>1201 Orient Rd<br>TAMPA, FL<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 87<\/b> (2025-10-27)&nbsp;&nbsp;<br><b>Mean:<\/b> 41/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 87<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,54.7 5.0,35.2 6.1,47.4 7.1,29.8 8.1,45.0 9.1,32.8 10.2,54.7 11.2,56.6 12.2,38.9 13.3,49.3 14.3,44.4 15.3,45.6 16.3,49.3 17.4,47.4 18.4,54.1 19.4,41.9 20.5,36.5 21.5,36.5 22.5,45.6 23.5,43.8 24.6,57.2 25.6,54.7 26.6,41.9 27.7,49.3 28.7,38.3 29.7,49.9 30.7,54.7 31.8,54.1 32.8,53.5 33.8,51.7 34.9,45.6 35.9,43.8 36.9,37.1 37.9,21.8 39.0,35.2 40.0,55.3 41.0,43.8 42.0,50.5 43.1,34.6 44.1,44.4 45.1,42.6 46.2,54.7 47.2,52.9 48.2,52.9 49.2,35.2 50.3,49.9 51.3,46.2 52.3,35.2 53.4,56.0 54.4,40.7 55.4,53.5 56.4,40.7 57.5,39.5 58.5,49.3 59.5,28.5 60.6,50.5 61.6,41.9 62.6,49.9 63.6,48.0 64.7,29.1 65.7,49.9 66.7,45.0 67.8,40.7 68.8,40.1 69.8,43.8 70.8,46.2 71.9,39.5 72.9,44.4 73.9,9.0 75.0,54.1 76.0,43.8 77.0,44.4 78.0,41.3 79.1,41.9 80.1,34.0 81.1,29.8 82.2,53.5 83.2,41.9 84.2,24.9 85.2,31.6 86.3,48.6 87.3,21.2 88.3,39.5 89.4,52.9 90.4,37.1 91.4,43.8 92.4,34.0 93.5,50.5 94.5,34.6 95.5,40.7 96.6,54.7 97.6,46.2 98.6,46.2 99.6,35.9 100.7,53.5 101.7,38.9 102.7,32.8 103.8,45.0 104.8,29.8 105.8,46.2 106.8,42.6 107.9,35.2 108.9,27.9 109.9,40.1 111.0,47.4 112.0,31.6 113.0,51.7 114.0,44.4 115.1,35.9 116.1,34.0 117.1,46.2 118.1,37.1 119.2,28.5 120.2,45.6 121.2,45.6 122.3,14.5 123.3,29.8 124.3,31.0 125.3,41.9 126.4,25.5 127.4,32.8 128.4,27.9 129.5,41.3 130.5,26.7 131.5,11.5 132.5,51.7 133.6,30.4 134.6,43.8 135.6,24.9 136.7,46.2 137.7,19.4 138.7,32.2 139.7,50.5 140.8,41.9 141.8,43.2 142.8,18.8 143.9,47.4 144.9,40.1 145.9,34.6 146.9,40.7 148.0,43.2 149.0,40.1 150.0,29.1 151.1,43.8 152.1,34.0 153.1,31.0 154.1,34.6 155.2,30.4 156.2,6.0 157.2,19.4 158.3,45.6 159.3,21.2 160.3,7.8 161.3,34.6 162.4,41.9 163.4,37.1 164.4,16.4 165.5,35.2 166.5,27.9 167.5,20.6 168.5,30.4 169.6,43.8 170.6,35.9 171.6,33.4 172.7,39.5 173.7,39.5 174.7,17.0 175.7,40.1 176.8,44.4 177.8,39.5 178.8,23.1 179.9,41.9 180.9,34.6 181.9,27.9 182.9,26.1 184.0,32.8 185.0,31.6 186.0,23.7 187.0,39.5 188.1,46.8 189.1,26.7 190.1,51.1 191.2,51.7 192.2,43.8 193.2,17.6 194.2,41.9 195.3,22.4 196.3,15.7 197.3,29.8 198.4,34.0 199.4,31.0 200.4,32.8 201.4,31.6 202.5,17.0 203.5,22.4 204.5,7.8 205.6,42.6 206.6,24.3 207.6,30.4 208.6,12.7 209.7,34.0 210.7,7.2 211.7,43.8 212.8,55.3 213.8,34.0 214.8,33.4 215.8,42.6 216.9,47.4 217.9,32.2 218.9,46.8 220.0,46.8 221.0,42.6 222.0,46.8 223.0,50.5 224.1,38.9 225.1,46.2 226.1,43.2 227.2,47.4 228.2,40.1 229.2,48.0 230.2,40.7 231.3,36.5 232.3,24.3 233.3,32.8 234.4,41.9 235.4,37.7 236.4,37.1 237.4,36.5 238.5,26.1 239.5,20.0 240.5,37.1 241.6,51.1 242.6,35.9 243.6,29.1 244.6,41.3 245.7,41.9 246.7,16.4 247.7,21.8 248.8,36.5 249.8,29.8 250.8,29.1 251.8,38.3 252.9,34.6 253.9,23.1 254.9,35.2 256.0,40.7 257.0,23.7 258.0,33.4 259.0,43.8 260.1,37.7 261.1,18.8 262.1,39.5 263.1,43.8 264.2,30.4 265.2,28.5 266.2,32.2 267.3,37.7 268.3,29.8 269.3,36.5 270.3,48.0 271.4,18.8 272.4,21.8 273.4,26.1 274.5,29.1 275.5,24.9 276.5,41.3 277.5,48.0 278.6,26.1 279.6,39.5 280.6,30.4 281.7,39.5 282.7,27.3 283.7,35.2 284.7,41.9 285.8,31.0 286.8,31.0 287.8,33.4 288.9,23.1 289.9,22.4 290.9,37.1 291.9,46.8 293.0,24.3 294.0,24.9\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">TWIN FALLS HOLD ROOM<\/b><br>2496 ADDISON AVENUE EAST<br>TWIN FALLS, ID<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 8<\/b> (2025-10-05)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 8<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,52.4 5.0,52.4 6.1,45.8 7.1,52.4 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,52.4 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,52.4 50.3,52.4 51.3,59.0 52.3,45.8 53.4,59.0 54.4,59.0 55.4,59.0 56.4,52.4 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,52.4 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,45.8 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,52.4 109.9,39.1 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,25.9 130.5,59.0 131.5,59.0 132.5,59.0 133.6,6.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,6.0 138.7,6.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,52.4 146.9,59.0 148.0,59.0 149.0,52.4 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,52.4 158.3,52.4 159.3,59.0 160.3,59.0 161.3,52.4 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,52.4 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,52.4 173.7,52.4 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,25.9 182.9,32.5 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,45.8 193.2,52.4 194.2,19.2 195.3,32.5 196.3,45.8 197.3,45.8 198.4,59.0 199.4,59.0 200.4,39.1 201.4,45.8 202.5,39.1 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,52.4 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,52.4 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,52.4 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,52.4 239.5,59.0 240.5,52.4 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,52.4 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,52.4 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">TITUS COUNTY JAIL<\/b><br>304 South Van Buren Avenue<br>Mt. Pleasant, TX<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 3<\/b> (2026-01-07)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 5<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,48.4 27.7,48.4 28.7,48.4 29.7,59.0 30.7,16.6 31.8,16.6 32.8,16.6 33.8,59.0 34.9,48.4 35.9,48.4 36.9,48.4 37.9,48.4 39.0,48.4 40.0,48.4 41.0,59.0 42.0,27.2 43.1,16.6 44.1,6.0 45.1,37.8 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,48.4 80.1,37.8 81.1,37.8 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,48.4 87.3,27.2 88.3,27.2 89.4,48.4 90.4,59.0 91.4,59.0 92.4,59.0 93.5,48.4 94.5,37.8 95.5,48.4 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,48.4 116.1,48.4 117.1,48.4 118.1,48.4 119.2,48.4 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,48.4 227.2,48.4 228.2,59.0 229.2,37.8 230.2,27.2 231.3,48.4 232.3,59.0 233.3,48.4 234.4,48.4 235.4,48.4 236.4,48.4 237.4,48.4 238.5,37.8 239.5,37.8 240.5,48.4 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,48.4 246.7,48.4 247.7,48.4 248.8,48.4 249.8,48.4 250.8,48.4 251.8,59.0 252.9,48.4 253.9,48.4 254.9,48.4 256.0,48.4 257.0,48.4 258.0,59.0 259.0,48.4 260.1,48.4 261.1,48.4 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,48.4 279.6,48.4 280.6,48.4 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,48.4 287.8,48.4 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">TUCSON INS HOLD ROOM<\/b><br>6431 SOUTH COUNTRY CLUB ROAD<br>TUCSON, AZ<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 47<\/b> (2025-12-15)&nbsp;&nbsp;<br><b>Mean:<\/b> 7/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 47<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,54.5 6.1,52.2 7.1,47.7 8.1,52.2 9.1,43.2 10.2,57.9 11.2,57.9 12.2,53.4 13.3,50.0 14.3,54.5 15.3,57.9 16.3,53.4 17.4,59.0 18.4,57.9 19.4,51.1 20.5,44.3 21.5,51.1 22.5,50.0 23.5,47.7 24.6,59.0 25.6,57.9 26.6,55.6 27.7,48.9 28.7,52.2 29.7,54.5 30.7,56.7 31.8,59.0 32.8,59.0 33.8,57.9 34.9,55.6 35.9,48.9 36.9,52.2 37.9,57.9 39.0,55.6 40.0,56.7 41.0,55.6 42.0,55.6 43.1,51.1 44.1,50.0 45.1,54.5 46.2,59.0 47.2,57.9 48.2,50.0 49.2,55.6 50.3,50.0 51.3,52.2 52.3,51.1 53.4,57.9 54.4,59.0 55.4,56.7 56.4,56.7 57.5,53.4 58.5,59.0 59.5,47.7 60.6,57.9 61.6,56.7 62.6,55.6 63.6,55.6 64.7,56.7 65.7,56.7 66.7,53.4 67.8,59.0 68.8,59.0 69.8,56.7 70.8,53.4 71.9,53.4 72.9,56.7 73.9,51.1 75.0,57.9 76.0,57.9 77.0,59.0 78.0,55.6 79.1,57.9 80.1,55.6 81.1,52.2 82.2,56.7 83.2,59.0 84.2,55.6 85.2,51.1 86.3,53.4 87.3,55.6 88.3,45.5 89.4,48.9 90.4,59.0 91.4,48.9 92.4,52.2 93.5,52.2 94.5,56.7 95.5,47.7 96.6,57.9 97.6,59.0 98.6,56.7 99.6,52.2 100.7,55.6 101.7,54.5 102.7,50.0 103.8,59.0 104.8,57.9 105.8,53.4 106.8,53.4 107.9,54.5 108.9,50.0 109.9,53.4 111.0,57.9 112.0,59.0 113.0,50.0 114.0,56.7 115.1,55.6 116.1,56.7 117.1,45.5 118.1,57.9 119.2,59.0 120.2,57.9 121.2,55.6 122.3,50.0 123.3,52.2 124.3,56.7 125.3,59.0 126.4,57.9 127.4,52.2 128.4,57.9 129.5,55.6 130.5,54.5 131.5,54.5 132.5,59.0 133.6,56.7 134.6,56.7 135.6,57.9 136.7,53.4 137.7,56.7 138.7,44.3 139.7,59.0 140.8,59.0 141.8,59.0 142.8,56.7 143.9,55.6 144.9,55.6 145.9,56.7 146.9,59.0 148.0,59.0 149.0,56.7 150.0,53.4 151.1,53.4 152.1,54.5 153.1,50.0 154.1,57.9 155.2,59.0 156.2,51.1 157.2,51.1 158.3,46.6 159.3,54.5 160.3,50.0 161.3,59.0 162.4,59.0 163.4,54.5 164.4,47.7 165.5,52.2 166.5,48.9 167.5,47.7 168.5,55.6 169.6,59.0 170.6,52.2 171.6,50.0 172.7,52.2 173.7,53.4 174.7,43.2 175.7,54.5 176.8,59.0 177.8,51.1 178.8,52.2 179.9,56.7 180.9,52.2 181.9,50.0 182.9,56.7 184.0,59.0 185.0,53.4 186.0,54.5 187.0,46.6 188.1,56.7 189.1,53.4 190.1,56.7 191.2,59.0 192.2,57.9 193.2,45.5 194.2,55.6 195.3,52.2 196.3,21.8 197.3,59.0 198.4,57.9 199.4,56.7 200.4,56.7 201.4,46.6 202.5,48.9 203.5,29.7 204.5,25.2 205.6,15.0 206.6,6.0 207.6,11.6 208.6,24.0 209.7,30.8 210.7,44.3 211.7,33.1 212.8,39.8 213.8,47.7 214.8,51.1 215.8,46.6 216.9,57.9 217.9,55.6 218.9,59.0 220.0,55.6 221.0,51.1 222.0,56.7 223.0,44.3 224.1,59.0 225.1,43.2 226.1,59.0 227.2,52.2 228.2,57.9 229.2,50.0 230.2,59.0 231.3,57.9 232.3,48.9 233.3,55.6 234.4,56.7 235.4,53.4 236.4,56.7 237.4,45.5 238.5,53.4 239.5,52.2 240.5,55.6 241.6,54.5 242.6,55.6 243.6,57.9 244.6,57.9 245.7,53.4 246.7,41.0 247.7,54.5 248.8,56.7 249.8,55.6 250.8,54.5 251.8,51.1 252.9,52.2 253.9,50.0 254.9,55.6 256.0,53.4 257.0,53.4 258.0,56.7 259.0,54.5 260.1,52.2 261.1,53.4 262.1,59.0 263.1,57.9 264.2,53.4 265.2,52.2 266.2,56.7 267.3,56.7 268.3,52.2 269.3,55.6 270.3,59.0 271.4,56.7 272.4,55.6 273.4,57.9 274.5,57.9 275.5,53.4 276.5,54.5 277.5,55.6 278.6,55.6 279.6,56.7 280.6,55.6 281.7,57.9 282.7,55.6 283.7,59.0 284.7,56.7 285.8,55.6 286.8,51.1 287.8,54.5 288.9,45.5 289.9,50.0 290.9,59.0 291.9,59.0 293.0,55.6 294.0,51.1\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">TULSA HOLD ROOM<\/b><br>, OK<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 51<\/b> (2025-10-29)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 51<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,58.0 7.1,56.9 8.1,58.0 9.1,58.0 10.2,59.0 11.2,59.0 12.2,56.9 13.3,56.9 14.3,53.8 15.3,56.9 16.3,58.0 17.4,59.0 18.4,59.0 19.4,58.0 20.5,52.8 21.5,56.9 22.5,58.0 23.5,53.8 24.6,59.0 25.6,59.0 26.6,58.0 27.7,55.9 28.7,56.9 29.7,53.8 30.7,58.0 31.8,59.0 32.8,59.0 33.8,58.0 34.9,53.8 35.9,55.9 36.9,55.9 37.9,55.9 39.0,59.0 40.0,59.0 41.0,59.0 42.0,56.9 43.1,58.0 44.1,55.9 45.1,54.8 46.2,59.0 47.2,59.0 48.2,55.9 49.2,56.9 50.3,54.8 51.3,58.0 52.3,55.9 53.4,59.0 54.4,59.0 55.4,58.0 56.4,54.8 57.5,58.0 58.5,58.0 59.5,54.8 60.6,59.0 61.6,58.0 62.6,58.0 63.6,54.8 64.7,53.8 65.7,49.6 66.7,54.8 67.8,59.0 68.8,59.0 69.8,59.0 70.8,55.9 71.9,53.8 72.9,55.9 73.9,54.8 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,58.0 80.1,58.0 81.1,55.9 82.2,59.0 83.2,59.0 84.2,56.9 85.2,54.8 86.3,56.9 87.3,51.7 88.3,56.9 89.4,59.0 90.4,59.0 91.4,54.8 92.4,53.8 93.5,54.8 94.5,56.9 95.5,56.9 96.6,59.0 97.6,59.0 98.6,56.9 99.6,53.8 100.7,58.0 101.7,51.7 102.7,49.6 103.8,59.0 104.8,59.0 105.8,55.9 106.8,54.8 107.9,54.8 108.9,56.9 109.9,56.9 111.0,59.0 112.0,59.0 113.0,56.9 114.0,58.0 115.1,42.4 116.1,54.8 117.1,53.8 118.1,58.0 119.2,59.0 120.2,58.0 121.2,55.9 122.3,55.9 123.3,58.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,58.0 129.5,48.6 130.5,53.8 131.5,52.8 132.5,59.0 133.6,59.0 134.6,50.7 135.6,53.8 136.7,55.9 137.7,53.8 138.7,54.8 139.7,59.0 140.8,59.0 141.8,51.7 142.8,58.0 143.9,56.9 144.9,58.0 145.9,56.9 146.9,59.0 148.0,59.0 149.0,54.8 150.0,51.7 151.1,51.7 152.1,52.8 153.1,59.0 154.1,59.0 155.2,59.0 156.2,55.9 157.2,47.6 158.3,6.0 159.3,17.4 160.3,56.9 161.3,59.0 162.4,59.0 163.4,55.9 164.4,56.9 165.5,54.8 166.5,51.7 167.5,54.8 168.5,59.0 169.6,59.0 170.6,54.8 171.6,56.9 172.7,55.9 173.7,56.9 174.7,51.7 175.7,58.0 176.8,59.0 177.8,56.9 178.8,53.8 179.9,53.8 180.9,53.8 181.9,52.8 182.9,59.0 184.0,59.0 185.0,56.9 186.0,58.0 187.0,55.9 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,58.0 193.2,55.9 194.2,58.0 195.3,56.9 196.3,48.6 197.3,59.0 198.4,59.0 199.4,56.9 200.4,56.9 201.4,55.9 202.5,58.0 203.5,58.0 204.5,59.0 205.6,59.0 206.6,44.5 207.6,55.9 208.6,54.8 209.7,53.8 210.7,59.0 211.7,59.0 212.8,59.0 213.8,56.9 214.8,53.8 215.8,54.8 216.9,59.0 217.9,58.0 218.9,59.0 220.0,59.0 221.0,53.8 222.0,58.0 223.0,56.9 224.1,58.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,49.6 229.2,56.9 230.2,58.0 231.3,53.8 232.3,59.0 233.3,59.0 234.4,59.0 235.4,51.7 236.4,55.9 237.4,56.9 238.5,54.8 239.5,55.9 240.5,59.0 241.6,59.0 242.6,59.0 243.6,56.9 244.6,52.8 245.7,48.6 246.7,58.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,53.8 253.9,53.8 254.9,59.0 256.0,59.0 257.0,59.0 258.0,51.7 259.0,55.9 260.1,58.0 261.1,52.8 262.1,59.0 263.1,59.0 264.2,58.0 265.2,51.7 266.2,58.0 267.3,58.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,55.9 273.4,55.9 274.5,56.9 275.5,55.9 276.5,59.0 277.5,59.0 278.6,56.9 279.6,59.0 280.6,55.9 281.7,56.9 282.7,55.9 283.7,59.0 284.7,59.0 285.8,51.7 286.8,56.9 287.8,59.0 288.9,56.9 289.9,58.0 290.9,59.0 291.9,59.0 293.0,49.6 294.0,52.8\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">TEXARKANA HOLDROOM<\/b><br>100 NORTH STATELINE AVENUE<br>TEXARKANA, AR<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 10<\/b> (2025-12-02)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 10<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,48.4 8.1,53.7 9.1,59.0 10.2,59.0 11.2,53.7 12.2,59.0 13.3,48.4 14.3,53.7 15.3,53.7 16.3,43.1 17.4,59.0 18.4,59.0 19.4,43.1 20.5,59.0 21.5,48.4 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,53.7 28.7,53.7 29.7,43.1 30.7,53.7 31.8,59.0 32.8,48.4 33.8,48.4 34.9,53.7 35.9,48.4 36.9,59.0 37.9,59.0 39.0,59.0 40.0,43.1 41.0,53.7 42.0,59.0 43.1,59.0 44.1,53.7 45.1,53.7 46.2,43.1 47.2,59.0 48.2,53.7 49.2,48.4 50.3,53.7 51.3,53.7 52.3,59.0 53.4,53.7 54.4,59.0 55.4,53.7 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,53.7 61.6,59.0 62.6,48.4 63.6,53.7 64.7,53.7 65.7,59.0 66.7,59.0 67.8,37.8 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,53.7 76.0,59.0 77.0,43.1 78.0,53.7 79.1,48.4 80.1,59.0 81.1,59.0 82.2,53.7 83.2,59.0 84.2,43.1 85.2,48.4 86.3,43.1 87.3,53.7 88.3,53.7 89.4,48.4 90.4,59.0 91.4,59.0 92.4,53.7 93.5,48.4 94.5,43.1 95.5,59.0 96.6,53.7 97.6,59.0 98.6,59.0 99.6,48.4 100.7,59.0 101.7,43.1 102.7,59.0 103.8,59.0 104.8,59.0 105.8,48.4 106.8,43.1 107.9,59.0 108.9,53.7 109.9,53.7 111.0,37.8 112.0,59.0 113.0,59.0 114.0,59.0 115.1,53.7 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,53.7 123.3,53.7 124.3,59.0 125.3,43.1 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,37.8 131.5,59.0 132.5,53.7 133.6,59.0 134.6,43.1 135.6,59.0 136.7,48.4 137.7,59.0 138.7,43.1 139.7,59.0 140.8,59.0 141.8,59.0 142.8,53.7 143.9,48.4 144.9,59.0 145.9,59.0 146.9,48.4 148.0,59.0 149.0,37.8 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,43.1 157.2,53.7 158.3,48.4 159.3,59.0 160.3,59.0 161.3,59.0 162.4,48.4 163.4,48.4 164.4,43.1 165.5,59.0 166.5,53.7 167.5,48.4 168.5,59.0 169.6,53.7 170.6,53.7 171.6,53.7 172.7,53.7 173.7,43.1 174.7,43.1 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,48.4 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,53.7 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,6.0 194.2,48.4 195.3,53.7 196.3,59.0 197.3,59.0 198.4,59.0 199.4,48.4 200.4,59.0 201.4,48.4 202.5,59.0 203.5,59.0 204.5,43.1 205.6,48.4 206.6,53.7 207.6,53.7 208.6,48.4 209.7,53.7 210.7,43.1 211.7,48.4 212.8,59.0 213.8,48.4 214.8,53.7 215.8,53.7 216.9,59.0 217.9,43.1 218.9,59.0 220.0,59.0 221.0,53.7 222.0,59.0 223.0,53.7 224.1,59.0 225.1,48.4 226.1,59.0 227.2,53.7 228.2,59.0 229.2,59.0 230.2,43.1 231.3,48.4 232.3,53.7 233.3,48.4 234.4,59.0 235.4,53.7 236.4,48.4 237.4,53.7 238.5,59.0 239.5,59.0 240.5,43.1 241.6,59.0 242.6,53.7 243.6,53.7 244.6,53.7 245.7,59.0 246.7,53.7 247.7,59.0 248.8,59.0 249.8,59.0 250.8,48.4 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,53.7 260.1,48.4 261.1,27.2 262.1,59.0 263.1,43.1 264.2,59.0 265.2,53.7 266.2,37.8 267.3,27.2 268.3,59.0 269.3,53.7 270.3,59.0 271.4,59.0 272.4,43.1 273.4,48.4 274.5,53.7 275.5,53.7 276.5,59.0 277.5,59.0 278.6,59.0 279.6,53.7 280.6,43.1 281.7,53.7 282.7,53.7 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,53.7 288.9,59.0 289.9,59.0 290.9,59.0 291.9,53.7 293.0,59.0 294.0,53.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">UNION COUNTY JAIL<\/b><br>209 E Main St #250<br>Elk Point, SD<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 4<\/b> (2025-12-08)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 9<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,53.1 13.3,53.1 14.3,53.1 15.3,53.1 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,35.4 31.8,35.4 32.8,35.4 33.8,35.4 34.9,35.4 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,29.6 95.5,6.0 96.6,29.6 97.6,29.6 98.6,29.6 99.6,29.6 100.7,29.6 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,35.4 200.4,35.4 201.4,35.4 202.5,35.4 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">URSULA CENTRALIZED PROCESSING CNTR<\/b><br>3700 W Ursula Ave<br>Mcallen, TX<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 5<\/b> (2026-01-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 463<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,56.3 30.7,56.0 31.8,56.6 32.8,55.9 33.8,49.0 34.9,42.1 35.9,39.1 36.9,40.9 37.9,36.4 39.0,47.6 40.0,49.2 41.0,49.8 42.0,48.7 43.1,40.9 44.1,12.5 45.1,6.0 46.2,28.2 47.2,29.9 48.2,25.9 49.2,25.6 50.3,24.9 51.3,29.5 52.3,39.7 53.4,46.1 54.4,45.5 55.4,44.0 56.4,42.1 57.5,32.8 58.5,17.3 59.5,18.6 60.6,31.2 61.6,28.9 62.6,32.8 63.6,26.8 64.7,28.6 65.7,19.5 66.7,20.8 67.8,20.1 68.8,23.1 69.8,25.6 70.8,35.2 71.9,29.0 72.9,25.8 73.9,19.6 75.0,26.1 76.0,25.7 77.0,22.9 78.0,28.4 79.1,24.5 80.1,33.9 81.1,49.0 82.2,59.0 83.2,59.0 84.2,57.7 85.2,57.7 86.3,58.8 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,58.9 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,58.4 99.6,59.0 100.7,59.0 101.7,58.9 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,58.9 114.0,58.9 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,58.9 153.1,59.0 154.1,58.9 155.2,59.0 156.2,59.0 157.2,59.0 158.3,58.9 159.3,59.0 160.3,59.0 161.3,58.8 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,58.8 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,58.8 178.8,58.9 179.9,59.0 180.9,59.0 181.9,58.8 182.9,58.7 184.0,58.9 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,58.9 193.2,59.0 194.2,58.9 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,58.8 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,58.9 207.6,59.0 208.6,59.0 209.7,59.0 210.7,58.9 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,58.9 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,58.8 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,58.7 232.3,58.4 233.3,58.9 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,58.9 243.6,59.0 244.6,59.0 245.7,58.9 246.7,59.0 247.7,59.0 248.8,59.0 249.8,58.7 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,58.9 260.1,59.0 261.1,59.0 262.1,59.0 263.1,58.9 264.2,59.0 265.2,59.0 266.2,59.0 267.3,58.9 268.3,59.0 269.3,59.0 270.3,59.0 271.4,58.3 272.4,59.0 273.4,59.0 274.5,59.0 275.5,58.9 276.5,59.0 277.5,58.9 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,58.8 291.9,59.0 293.0,59.0 294.0,58.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">UVALDE COUNTY JAIL<\/b><br>399 East Nopal<br>Uvalde, TX<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 2<\/b> (2025-10-26)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,6.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,32.5 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,32.5 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,32.5 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,32.5 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,6.0 156.2,59.0 157.2,32.5 158.3,32.5 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,32.5 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,32.5 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,32.5 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,32.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">VENTURA CUSTODY CASE<\/b><br>275 SKYWAY DRIVE<br>CAMARRILLO, CA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 41<\/b> (2025-12-29)&nbsp;&nbsp;<br><b>Mean:<\/b> 9/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 80<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,55.0 5.0,53.7 6.1,51.0 7.1,55.0 8.1,53.7 9.1,50.4 10.2,57.0 11.2,53.0 12.2,51.7 13.3,40.5 14.3,53.7 15.3,45.8 16.3,41.8 17.4,49.1 18.4,54.4 19.4,53.7 20.5,45.1 21.5,41.8 22.5,47.7 23.5,41.8 24.6,57.7 25.6,57.7 26.6,47.7 27.7,48.4 28.7,48.4 29.7,54.4 30.7,48.4 31.8,59.0 32.8,59.0 33.8,49.1 34.9,49.1 35.9,49.7 36.9,43.1 37.9,58.3 39.0,59.0 40.0,57.0 41.0,53.7 42.0,45.8 43.1,50.4 44.1,23.2 45.1,6.0 46.2,59.0 47.2,59.0 48.2,57.7 49.2,53.7 50.3,53.0 51.3,53.0 52.3,52.4 53.4,58.3 54.4,59.0 55.4,57.7 56.4,55.0 57.5,55.0 58.5,55.7 59.5,51.0 60.6,58.3 61.6,58.3 62.6,55.0 63.6,53.7 64.7,55.0 65.7,56.3 66.7,50.4 67.8,57.7 68.8,59.0 69.8,55.0 70.8,56.3 71.9,52.4 72.9,55.7 73.9,50.4 75.0,59.0 76.0,59.0 77.0,50.4 78.0,53.7 79.1,53.7 80.1,51.0 81.1,49.1 82.2,58.3 83.2,57.0 84.2,51.7 85.2,53.7 86.3,55.0 87.3,52.4 88.3,55.7 89.4,59.0 90.4,59.0 91.4,55.0 92.4,51.7 93.5,54.4 94.5,51.7 95.5,52.4 96.6,59.0 97.6,57.7 98.6,57.7 99.6,53.0 100.7,53.0 101.7,56.3 102.7,51.0 103.8,57.0 104.8,57.7 105.8,53.0 106.8,51.0 107.9,53.7 108.9,50.4 109.9,47.7 111.0,58.3 112.0,59.0 113.0,57.0 114.0,52.4 115.1,49.7 116.1,52.4 117.1,49.1 118.1,57.0 119.2,59.0 120.2,55.0 121.2,51.0 122.3,53.0 123.3,55.0 124.3,54.4 125.3,56.3 126.4,59.0 127.4,54.4 128.4,57.7 129.5,54.4 130.5,51.0 131.5,51.0 132.5,58.3 133.6,58.3 134.6,51.7 135.6,55.0 136.7,55.0 137.7,53.7 138.7,51.0 139.7,58.3 140.8,57.0 141.8,56.3 142.8,51.7 143.9,51.0 144.9,51.0 145.9,52.4 146.9,58.3 148.0,59.0 149.0,55.7 150.0,52.4 151.1,48.4 152.1,52.4 153.1,52.4 154.1,57.7 155.2,55.0 156.2,53.7 157.2,51.0 158.3,50.4 159.3,50.4 160.3,47.1 161.3,59.0 162.4,57.0 163.4,53.0 164.4,52.4 165.5,55.0 166.5,57.0 167.5,55.7 168.5,59.0 169.6,57.7 170.6,52.4 171.6,57.0 172.7,51.7 173.7,51.0 174.7,53.0 175.7,58.3 176.8,55.0 177.8,52.4 178.8,52.4 179.9,45.8 180.9,51.7 181.9,45.1 182.9,55.7 184.0,56.3 185.0,54.4 186.0,53.7 187.0,53.7 188.1,57.0 189.1,51.7 190.1,57.7 191.2,57.0 192.2,54.4 193.2,55.0 194.2,49.1 195.3,53.7 196.3,51.7 197.3,57.7 198.4,56.3 199.4,53.0 200.4,47.7 201.4,50.4 202.5,49.1 203.5,47.1 204.5,51.7 205.6,52.4 206.6,55.0 207.6,47.7 208.6,47.7 209.7,55.0 210.7,49.1 211.7,58.3 212.8,57.0 213.8,56.3 214.8,40.5 215.8,59.0 216.9,57.7 217.9,58.3 218.9,36.5 220.0,49.1 221.0,31.8 222.0,40.5 223.0,49.7 224.1,57.0 225.1,55.0 226.1,58.3 227.2,59.0 228.2,56.3 229.2,52.4 230.2,54.4 231.3,51.7 232.3,45.8 233.3,58.3 234.4,59.0 235.4,51.7 236.4,53.7 237.4,52.4 238.5,53.7 239.5,49.1 240.5,58.3 241.6,57.0 242.6,53.0 243.6,47.1 244.6,52.4 245.7,54.4 246.7,48.4 247.7,57.7 248.8,58.3 249.8,54.4 250.8,48.4 251.8,55.7 252.9,49.1 253.9,50.4 254.9,59.0 256.0,58.3 257.0,55.0 258.0,54.4 259.0,53.0 260.1,55.0 261.1,55.7 262.1,59.0 263.1,59.0 264.2,55.0 265.2,53.0 266.2,53.0 267.3,55.0 268.3,51.7 269.3,59.0 270.3,58.3 271.4,57.7 272.4,53.7 273.4,54.4 274.5,53.7 275.5,51.7 276.5,58.3 277.5,58.3 278.6,54.4 279.6,53.0 280.6,53.7 281.7,53.7 282.7,47.7 283.7,58.3 284.7,58.3 285.8,55.0 286.8,51.7 287.8,53.0 288.9,55.0 289.9,54.4 290.9,56.3 291.9,59.0 293.0,52.4 294.0,51.7\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">VIRGINIA BEACH<\/b><br>2501 James Madison Boulevard<br>Virginia Beach, VA<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 2<\/b> (2025-10-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 2<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,32.5 81.1,6.0 82.2,59.0 83.2,59.0 84.2,32.5 85.2,32.5 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,32.5 93.5,32.5 94.5,32.5 95.5,32.5 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,32.5 101.7,32.5 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,32.5 107.9,32.5 108.9,59.0 109.9,32.5 111.0,32.5 112.0,59.0 113.0,59.0 114.0,59.0 115.1,6.0 116.1,6.0 117.1,6.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,6.0 132.5,6.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">VRK PRCS<\/b><br>201 VARICK STREET<br>NEW YORK, NY<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 17<\/b> (2025-11-04)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 17<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,52.8 93.5,52.8 94.5,55.9 95.5,52.8 96.6,59.0 97.6,59.0 98.6,59.0 99.6,52.8 100.7,40.3 101.7,49.6 102.7,59.0 103.8,59.0 104.8,59.0 105.8,46.5 106.8,46.5 107.9,55.9 108.9,40.3 109.9,59.0 111.0,59.0 112.0,59.0 113.0,55.9 114.0,46.5 115.1,55.9 116.1,55.9 117.1,55.9 118.1,55.9 119.2,59.0 120.2,49.6 121.2,21.6 122.3,49.6 123.3,59.0 124.3,49.6 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,43.4 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,40.3 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,52.8 142.8,49.6 143.9,59.0 144.9,49.6 145.9,55.9 146.9,59.0 148.0,59.0 149.0,55.9 150.0,55.9 151.1,30.9 152.1,40.3 153.1,59.0 154.1,59.0 155.2,46.5 156.2,52.8 157.2,49.6 158.3,49.6 159.3,49.6 160.3,55.9 161.3,59.0 162.4,59.0 163.4,24.7 164.4,6.0 165.5,34.1 166.5,37.2 167.5,40.3 168.5,46.5 169.6,55.9 170.6,40.3 171.6,40.3 172.7,27.8 173.7,40.3 174.7,49.6 175.7,59.0 176.8,59.0 177.8,49.6 178.8,46.5 179.9,30.9 180.9,21.6 181.9,43.4 182.9,59.0 184.0,59.0 185.0,37.2 186.0,30.9 187.0,43.4 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,55.9 193.2,52.8 194.2,43.4 195.3,52.8 196.3,27.8 197.3,59.0 198.4,59.0 199.4,52.8 200.4,43.4 201.4,21.6 202.5,21.6 203.5,12.2 204.5,46.5 205.6,59.0 206.6,43.4 207.6,43.4 208.6,49.6 209.7,40.3 210.7,52.8 211.7,27.8 212.8,24.7 213.8,52.8 214.8,40.3 215.8,52.8 216.9,59.0 217.9,55.9 218.9,59.0 220.0,59.0 221.0,59.0 222.0,37.2 223.0,12.2 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,55.9 229.2,46.5 230.2,55.9 231.3,49.6 232.3,40.3 233.3,52.8 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,37.2 239.5,59.0 240.5,59.0 241.6,59.0 242.6,59.0 243.6,43.4 244.6,49.6 245.7,46.5 246.7,46.5 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,46.5 252.9,52.8 253.9,55.9 254.9,59.0 256.0,59.0 257.0,55.9 258.0,59.0 259.0,59.0 260.1,52.8 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,55.9 266.2,59.0 267.3,59.0 268.3,55.9 269.3,59.0 270.3,59.0 271.4,59.0 272.4,55.9 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,52.8 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,55.9 288.9,55.9 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">SHREVEPORT HOLD ROOM<\/b><br>400 TEXAS STREET, SUITE 900<br>SHREVEPORT, LA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 5<\/b> (2025-11-19)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 14<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,55.2 6.1,47.6 7.1,59.0 8.1,47.6 9.1,59.0 10.2,55.2 11.2,59.0 12.2,59.0 13.3,55.2 14.3,51.4 15.3,59.0 16.3,40.1 17.4,55.2 18.4,55.2 19.4,51.4 20.5,55.2 21.5,43.9 22.5,59.0 23.5,59.0 24.6,55.2 25.6,51.4 26.6,59.0 27.7,55.2 28.7,51.4 29.7,51.4 30.7,59.0 31.8,55.2 32.8,51.4 33.8,59.0 34.9,55.2 35.9,55.2 36.9,47.6 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,55.2 43.1,55.2 44.1,47.6 45.1,55.2 46.2,55.2 47.2,59.0 48.2,47.6 49.2,51.4 50.3,55.2 51.3,55.2 52.3,59.0 53.4,51.4 54.4,59.0 55.4,51.4 56.4,55.2 57.5,55.2 58.5,59.0 59.5,51.4 60.6,59.0 61.6,59.0 62.6,55.2 63.6,40.1 64.7,59.0 65.7,51.4 66.7,59.0 67.8,43.9 68.8,59.0 69.8,55.2 70.8,51.4 71.9,59.0 72.9,51.4 73.9,47.6 75.0,55.2 76.0,55.2 77.0,59.0 78.0,40.1 79.1,51.4 80.1,55.2 81.1,55.2 82.2,55.2 83.2,55.2 84.2,43.9 85.2,47.6 86.3,55.2 87.3,47.6 88.3,51.4 89.4,51.4 90.4,59.0 91.4,55.2 92.4,47.6 93.5,47.6 94.5,28.7 95.5,51.4 96.6,47.6 97.6,47.6 98.6,55.2 99.6,55.2 100.7,43.9 101.7,51.4 102.7,47.6 103.8,59.0 104.8,40.1 105.8,43.9 106.8,59.0 107.9,59.0 108.9,43.9 109.9,51.4 111.0,47.6 112.0,59.0 113.0,59.0 114.0,40.1 115.1,47.6 116.1,59.0 117.1,59.0 118.1,55.2 119.2,59.0 120.2,59.0 121.2,51.4 122.3,51.4 123.3,55.2 124.3,59.0 125.3,55.2 126.4,55.2 127.4,59.0 128.4,55.2 129.5,43.9 130.5,55.2 131.5,55.2 132.5,59.0 133.6,59.0 134.6,51.4 135.6,59.0 136.7,55.2 137.7,51.4 138.7,55.2 139.7,51.4 140.8,51.4 141.8,59.0 142.8,43.9 143.9,43.9 144.9,43.9 145.9,51.4 146.9,47.6 148.0,51.4 149.0,51.4 150.0,43.9 151.1,59.0 152.1,59.0 153.1,47.6 154.1,59.0 155.2,59.0 156.2,55.2 157.2,55.2 158.3,51.4 159.3,51.4 160.3,59.0 161.3,55.2 162.4,59.0 163.4,59.0 164.4,47.6 165.5,59.0 166.5,59.0 167.5,43.9 168.5,47.6 169.6,59.0 170.6,51.4 171.6,59.0 172.7,47.6 173.7,51.4 174.7,43.9 175.7,59.0 176.8,55.2 177.8,43.9 178.8,47.6 179.9,40.1 180.9,51.4 181.9,51.4 182.9,59.0 184.0,59.0 185.0,51.4 186.0,59.0 187.0,55.2 188.1,59.0 189.1,55.2 190.1,55.2 191.2,59.0 192.2,59.0 193.2,55.2 194.2,43.9 195.3,55.2 196.3,43.9 197.3,59.0 198.4,59.0 199.4,51.4 200.4,59.0 201.4,55.2 202.5,59.0 203.5,47.6 204.5,59.0 205.6,55.2 206.6,55.2 207.6,51.4 208.6,55.2 209.7,55.2 210.7,51.4 211.7,51.4 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,55.2 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,51.4 223.0,55.2 224.1,55.2 225.1,55.2 226.1,55.2 227.2,59.0 228.2,59.0 229.2,55.2 230.2,51.4 231.3,40.1 232.3,51.4 233.3,59.0 234.4,55.2 235.4,55.2 236.4,51.4 237.4,55.2 238.5,47.6 239.5,47.6 240.5,51.4 241.6,59.0 242.6,59.0 243.6,59.0 244.6,51.4 245.7,55.2 246.7,55.2 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,55.2 253.9,51.4 254.9,59.0 256.0,59.0 257.0,59.0 258.0,55.2 259.0,55.2 260.1,47.6 261.1,51.4 262.1,59.0 263.1,55.2 264.2,51.4 265.2,51.4 266.2,59.0 267.3,43.9 268.3,51.4 269.3,55.2 270.3,51.4 271.4,59.0 272.4,55.2 273.4,59.0 274.5,55.2 275.5,59.0 276.5,47.6 277.5,55.2 278.6,51.4 279.6,13.6 280.6,6.0 281.7,55.2 282.7,55.2 283.7,59.0 284.7,59.0 285.8,55.2 286.8,47.6 287.8,51.4 288.9,59.0 289.9,55.2 290.9,59.0 291.9,51.4 293.0,51.4 294.0,55.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">WASHINGTON COUNTY JAIL<\/b><br>1155 West Clydesdale Drive<br>Fayetteville, AR<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 21<\/b> (2025-10-28)&nbsp;&nbsp;<br><b>Mean:<\/b> 8/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 28<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,47.6 5.0,40.1 6.1,47.6 7.1,51.4 8.1,47.6 9.1,55.2 10.2,57.1 11.2,53.3 12.2,53.3 13.3,40.1 14.3,26.8 15.3,45.8 16.3,57.1 17.4,57.1 18.4,57.1 19.4,53.3 20.5,34.4 21.5,24.9 22.5,43.9 23.5,40.1 24.6,42.0 25.6,36.3 26.6,32.5 27.7,47.6 28.7,47.6 29.7,43.9 30.7,43.9 31.8,49.5 32.8,51.4 33.8,47.6 34.9,49.5 35.9,26.8 36.9,24.9 37.9,57.1 39.0,53.3 40.0,47.6 41.0,43.9 42.0,36.3 43.1,32.5 44.1,47.6 45.1,36.3 46.2,30.6 47.2,30.6 48.2,11.7 49.2,6.0 50.3,23.0 51.3,53.3 52.3,51.4 53.4,57.1 54.4,49.5 55.4,43.9 56.4,30.6 57.5,36.3 58.5,47.6 59.5,53.3 60.6,51.4 61.6,43.9 62.6,45.8 63.6,36.3 64.7,40.1 65.7,32.5 66.7,30.6 67.8,47.6 68.8,43.9 69.8,38.2 70.8,30.6 71.9,17.4 72.9,34.4 73.9,42.0 75.0,51.4 76.0,49.5 77.0,38.2 78.0,36.3 79.1,32.5 80.1,26.8 81.1,26.8 82.2,36.3 83.2,30.6 84.2,19.2 85.2,17.4 86.3,40.1 87.3,38.2 88.3,45.8 89.4,43.9 90.4,43.9 91.4,32.5 92.4,32.5 93.5,28.7 94.5,38.2 95.5,51.4 96.6,53.3 97.6,49.5 98.6,49.5 99.6,51.4 100.7,43.9 101.7,42.0 102.7,40.1 103.8,49.5 104.8,47.6 105.8,43.9 106.8,36.3 107.9,30.6 108.9,40.1 109.9,47.6 111.0,47.6 112.0,45.8 113.0,42.0 114.0,42.0 115.1,43.9 116.1,49.5 117.1,40.1 118.1,43.9 119.2,40.1 120.2,36.3 121.2,43.9 122.3,38.2 123.3,36.3 124.3,47.6 125.3,38.2 126.4,38.2 127.4,26.8 128.4,28.7 129.5,32.5 130.5,42.0 131.5,51.4 132.5,51.4 133.6,51.4 134.6,43.9 135.6,40.1 136.7,40.1 137.7,43.9 138.7,30.6 139.7,28.7 140.8,23.0 141.8,21.1 142.8,21.1 143.9,30.6 144.9,34.4 145.9,42.0 146.9,47.6 148.0,47.6 149.0,42.0 150.0,49.5 151.1,43.9 152.1,36.3 153.1,28.7 154.1,26.8 155.2,26.8 156.2,23.0 157.2,19.2 158.3,40.1 159.3,45.8 160.3,45.8 161.3,53.3 162.4,53.3 163.4,49.5 164.4,36.3 165.5,23.0 166.5,36.3 167.5,45.8 168.5,49.5 169.6,49.5 170.6,36.3 171.6,36.3 172.7,38.2 173.7,45.8 174.7,53.3 175.7,53.3 176.8,53.3 177.8,47.6 178.8,42.0 179.9,42.0 180.9,40.1 181.9,45.8 182.9,43.9 184.0,42.0 185.0,34.4 186.0,36.3 187.0,45.8 188.1,53.3 189.1,53.3 190.1,49.5 191.2,49.5 192.2,42.0 193.2,24.9 194.2,36.3 195.3,36.3 196.3,43.9 197.3,51.4 198.4,51.4 199.4,47.6 200.4,43.9 201.4,55.2 202.5,53.3 203.5,51.4 204.5,53.3 205.6,53.3 206.6,51.4 207.6,36.3 208.6,36.3 209.7,45.8 210.7,47.6 211.7,53.3 212.8,53.3 213.8,51.4 214.8,45.8 215.8,45.8 216.9,53.3 217.9,53.3 218.9,55.2 220.0,55.2 221.0,40.1 222.0,38.2 223.0,47.6 224.1,51.4 225.1,51.4 226.1,49.5 227.2,49.5 228.2,49.5 229.2,42.0 230.2,36.3 231.3,40.1 232.3,42.0 233.3,43.9 234.4,42.0 235.4,42.0 236.4,43.9 237.4,40.1 238.5,43.9 239.5,36.3 240.5,40.1 241.6,36.3 242.6,30.6 243.6,38.2 244.6,47.6 245.7,47.6 246.7,55.2 247.7,59.0 248.8,57.1 249.8,49.5 250.8,47.6 251.8,45.8 252.9,53.3 253.9,53.3 254.9,57.1 256.0,51.4 257.0,43.9 258.0,32.5 259.0,45.8 260.1,55.2 261.1,43.9 262.1,40.1 263.1,40.1 264.2,34.4 265.2,34.4 266.2,45.8 267.3,49.5 268.3,51.4 269.3,55.2 270.3,55.2 271.4,49.5 272.4,45.8 273.4,47.6 274.5,53.3 275.5,55.2 276.5,49.5 277.5,49.5 278.6,43.9 279.6,45.8 280.6,34.4 281.7,42.0 282.7,42.0 283.7,49.5 284.7,47.6 285.8,40.1 286.8,43.9 287.8,43.9 288.9,40.1 289.9,47.6 290.9,51.4 291.9,45.8 293.0,40.1 294.0,36.3\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">WASHINGTON FIELD OFFICE<\/b><br>14797 Murdock Street<br>Chantilly, VA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 69<\/b> (2025-10-08)&nbsp;&nbsp;<br><b>Mean:<\/b> 25/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 126<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,58.2 5.0,48.1 6.1,45.1 7.1,39.2 8.1,46.4 9.1,50.2 10.2,53.5 11.2,49.3 12.2,51.0 13.3,49.7 14.3,50.2 15.3,48.1 16.3,54.0 17.4,55.6 18.4,56.1 19.4,54.4 20.5,53.1 21.5,51.0 22.5,52.7 23.5,53.5 24.6,56.5 25.6,57.7 26.6,52.7 27.7,55.6 28.7,55.2 29.7,53.5 30.7,50.2 31.8,56.9 32.8,52.7 33.8,55.2 34.9,53.1 35.9,51.4 36.9,48.5 37.9,55.2 39.0,55.2 40.0,56.9 41.0,51.4 42.0,52.3 43.1,53.5 44.1,48.5 45.1,50.6 46.2,53.1 47.2,52.3 48.2,50.2 49.2,48.1 50.3,54.0 51.3,49.7 52.3,51.0 53.4,51.4 54.4,57.7 55.4,51.4 56.4,51.8 57.5,51.8 58.5,50.2 59.5,53.5 60.6,55.6 61.6,56.9 62.6,53.1 63.6,51.8 64.7,46.4 65.7,49.7 66.7,51.4 67.8,56.5 68.8,58.6 69.8,54.4 70.8,52.3 71.9,49.3 72.9,51.8 73.9,52.3 75.0,57.3 76.0,58.6 77.0,52.3 78.0,40.5 79.1,38.8 80.1,42.6 81.1,38.8 82.2,42.6 83.2,43.4 84.2,30.8 85.2,21.6 86.3,16.5 87.3,12.7 88.3,27.0 89.4,6.0 90.4,23.2 91.4,32.1 92.4,30.8 93.5,23.2 94.5,32.1 95.5,36.3 96.6,23.2 97.6,33.3 98.6,30.8 99.6,29.6 100.7,25.8 101.7,22.4 102.7,32.9 103.8,26.2 104.8,24.1 105.8,22.0 106.8,39.7 107.9,22.0 108.9,25.3 109.9,36.7 111.0,39.2 112.0,41.3 113.0,41.3 114.0,44.7 115.1,46.0 116.1,46.0 117.1,38.0 118.1,51.8 119.2,49.7 120.2,42.2 121.2,46.0 122.3,33.3 123.3,38.8 124.3,43.0 125.3,45.1 126.4,55.2 127.4,47.6 128.4,38.8 129.5,40.9 130.5,42.6 131.5,38.0 132.5,38.4 133.6,41.8 134.6,38.8 135.6,35.4 136.7,30.0 137.7,35.9 138.7,39.7 139.7,39.7 140.8,51.8 141.8,46.0 142.8,39.7 143.9,39.7 144.9,38.8 145.9,40.5 146.9,44.3 148.0,48.9 149.0,46.4 150.0,33.8 151.1,34.6 152.1,40.1 153.1,38.4 154.1,45.5 155.2,53.1 156.2,46.8 157.2,43.0 158.3,43.0 159.3,41.8 160.3,51.4 161.3,54.4 162.4,55.2 163.4,52.7 164.4,45.1 165.5,37.5 166.5,43.4 167.5,45.5 168.5,47.6 169.6,54.0 170.6,52.3 171.6,51.4 172.7,43.0 173.7,47.6 174.7,43.9 175.7,58.2 176.8,54.8 177.8,51.8 178.8,49.3 179.9,49.7 180.9,46.8 181.9,47.2 182.9,47.2 184.0,54.0 185.0,53.5 186.0,47.6 187.0,50.6 188.1,54.8 189.1,51.0 190.1,56.1 191.2,57.3 192.2,53.1 193.2,50.2 194.2,48.9 195.3,47.2 196.3,44.7 197.3,47.6 198.4,48.9 199.4,51.0 200.4,48.9 201.4,48.5 202.5,48.1 203.5,49.7 204.5,52.3 205.6,49.7 206.6,49.3 207.6,47.6 208.6,46.4 209.7,50.2 210.7,46.4 211.7,47.2 212.8,53.5 213.8,53.1 214.8,46.0 215.8,50.2 216.9,54.0 217.9,56.1 218.9,53.1 220.0,51.8 221.0,54.8 222.0,49.7 223.0,52.3 224.1,52.7 225.1,52.3 226.1,49.7 227.2,53.1 228.2,50.2 229.2,47.6 230.2,51.0 231.3,48.1 232.3,48.9 233.3,54.4 234.4,55.6 235.4,53.5 236.4,49.3 237.4,44.7 238.5,48.5 239.5,41.8 240.5,44.3 241.6,43.4 242.6,42.6 243.6,47.6 244.6,48.1 245.7,55.6 246.7,55.2 247.7,54.0 248.8,59.0 249.8,59.0 250.8,55.6 251.8,49.3 252.9,51.8 253.9,52.3 254.9,55.2 256.0,57.7 257.0,57.3 258.0,52.3 259.0,48.9 260.1,52.3 261.1,52.7 262.1,53.1 263.1,56.9 264.2,54.0 265.2,54.8 266.2,49.7 267.3,53.5 268.3,52.7 269.3,54.0 270.3,55.2 271.4,52.7 272.4,51.0 273.4,50.2 274.5,54.0 275.5,47.2 276.5,48.5 277.5,56.9 278.6,53.1 279.6,51.4 280.6,45.1 281.7,50.2 282.7,46.8 283.7,54.4 284.7,55.2 285.8,52.3 286.8,50.2 287.8,50.2 288.9,51.4 289.9,52.3 290.9,57.7 291.9,54.4 293.0,50.6 294.0,47.2\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">WACO DRO HOLD ROOM<\/b><br>800 FRANKLIN AVENUE<br>WACO, TX<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 24<\/b> (2025-12-12)&nbsp;&nbsp;<br><b>Mean:<\/b> 5/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 24<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,39.1 6.1,39.1 7.1,41.3 8.1,34.7 9.1,45.8 10.2,45.8 11.2,59.0 12.2,19.2 13.3,45.8 14.3,25.9 15.3,48.0 16.3,50.2 17.4,59.0 18.4,59.0 19.4,12.6 20.5,30.3 21.5,41.3 22.5,25.9 23.5,50.2 24.6,59.0 25.6,59.0 26.6,8.2 27.7,52.4 28.7,39.1 29.7,41.3 30.7,34.7 31.8,59.0 32.8,59.0 33.8,6.0 34.9,48.0 35.9,50.2 36.9,32.5 37.9,43.5 39.0,59.0 40.0,59.0 41.0,50.2 42.0,43.5 43.1,34.7 44.1,41.3 45.1,45.8 46.2,59.0 47.2,59.0 48.2,28.1 49.2,43.5 50.3,50.2 51.3,45.8 52.3,43.5 53.4,59.0 54.4,59.0 55.4,25.9 56.4,48.0 57.5,41.3 58.5,41.3 59.5,48.0 60.6,48.0 61.6,59.0 62.6,30.3 63.6,50.2 64.7,45.8 65.7,21.5 66.7,32.5 67.8,59.0 68.8,59.0 69.8,45.8 70.8,39.1 71.9,39.1 72.9,34.7 73.9,45.8 75.0,59.0 76.0,59.0 77.0,36.9 78.0,48.0 79.1,50.2 80.1,50.2 81.1,43.5 82.2,59.0 83.2,36.9 84.2,48.0 85.2,39.1 86.3,39.1 87.3,21.5 88.3,32.5 89.4,54.6 90.4,59.0 91.4,39.1 92.4,48.0 93.5,50.2 94.5,48.0 95.5,43.5 96.6,59.0 97.6,59.0 98.6,48.0 99.6,54.6 100.7,54.6 101.7,43.5 102.7,54.6 103.8,59.0 104.8,59.0 105.8,52.4 106.8,54.6 107.9,50.2 108.9,39.1 109.9,52.4 111.0,59.0 112.0,50.2 113.0,54.6 114.0,56.8 115.1,54.6 116.1,50.2 117.1,39.1 118.1,59.0 119.2,59.0 120.2,43.5 121.2,43.5 122.3,45.8 123.3,41.3 124.3,56.8 125.3,59.0 126.4,59.0 127.4,59.0 128.4,39.1 129.5,56.8 130.5,48.0 131.5,50.2 132.5,59.0 133.6,59.0 134.6,36.9 135.6,48.0 136.7,54.6 137.7,52.4 138.7,39.1 139.7,59.0 140.8,59.0 141.8,59.0 142.8,43.5 143.9,48.0 144.9,45.8 145.9,48.0 146.9,59.0 148.0,59.0 149.0,34.7 150.0,50.2 151.1,45.8 152.1,43.5 153.1,54.6 154.1,59.0 155.2,54.6 156.2,56.8 157.2,43.5 158.3,43.5 159.3,43.5 160.3,30.3 161.3,59.0 162.4,59.0 163.4,8.2 164.4,52.4 165.5,50.2 166.5,36.9 167.5,34.7 168.5,59.0 169.6,59.0 170.6,39.1 171.6,56.8 172.7,14.8 173.7,45.8 174.7,59.0 175.7,56.8 176.8,59.0 177.8,45.8 178.8,17.0 179.9,36.9 180.9,32.5 181.9,23.7 182.9,59.0 184.0,56.8 185.0,45.8 186.0,39.1 187.0,59.0 188.1,59.0 189.1,45.8 190.1,59.0 191.2,59.0 192.2,52.4 193.2,41.3 194.2,45.8 195.3,34.7 196.3,34.7 197.3,59.0 198.4,59.0 199.4,45.8 200.4,41.3 201.4,52.4 202.5,59.0 203.5,6.0 204.5,59.0 205.6,59.0 206.6,14.8 207.6,30.3 208.6,43.5 209.7,45.8 210.7,52.4 211.7,59.0 212.8,59.0 213.8,50.2 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,43.5 222.0,56.8 223.0,54.6 224.1,59.0 225.1,41.3 226.1,59.0 227.2,59.0 228.2,52.4 229.2,48.0 230.2,45.8 231.3,39.1 232.3,32.5 233.3,59.0 234.4,59.0 235.4,21.5 236.4,43.5 237.4,59.0 238.5,50.2 239.5,45.8 240.5,56.8 241.6,59.0 242.6,36.9 243.6,59.0 244.6,48.0 245.7,54.6 246.7,48.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,45.8 252.9,59.0 253.9,12.6 254.9,59.0 256.0,59.0 257.0,39.1 258.0,59.0 259.0,19.2 260.1,39.1 261.1,39.1 262.1,59.0 263.1,59.0 264.2,6.0 265.2,45.8 266.2,36.9 267.3,50.2 268.3,43.5 269.3,59.0 270.3,59.0 271.4,52.4 272.4,30.3 273.4,45.8 274.5,54.6 275.5,30.3 276.5,59.0 277.5,59.0 278.6,34.7 279.6,41.3 280.6,59.0 281.7,36.9 282.7,43.5 283.7,59.0 284.7,59.0 285.8,52.4 286.8,50.2 287.8,59.0 288.9,39.1 289.9,48.0 290.9,59.0 291.9,59.0 293.0,30.3 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">WENATCHEE HOLD ROOM<\/b><br>3701 River Road<br>Yakima, WA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 5<\/b> (2025-10-17)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 5<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,37.8 7.1,37.8 8.1,48.4 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,27.2 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,27.2 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,37.8 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,48.4 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,48.4 43.1,59.0 44.1,27.2 45.1,48.4 46.2,59.0 47.2,59.0 48.2,59.0 49.2,48.4 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,48.4 64.7,59.0 65.7,48.4 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,48.4 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,48.4 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,48.4 92.4,48.4 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,48.4 106.8,59.0 107.9,48.4 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,27.2 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,48.4 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,6.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,37.8 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,48.4 178.8,59.0 179.9,37.8 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,48.4 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,48.4 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,48.4 207.6,59.0 208.6,59.0 209.7,48.4 210.7,59.0 211.7,59.0 212.8,48.4 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,48.4 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,37.8 238.5,37.8 239.5,37.8 240.5,59.0 241.6,59.0 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,48.4 280.6,59.0 281.7,59.0 282.7,48.4 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">WOODFORD COUNTY SHERIFF/JAIL<\/b><br>204 Beasley Drive<br>Versailles, KY<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 4<\/b> (2025-12-17)&nbsp;&nbsp;<br><b>Mean:<\/b> 0/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 4<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,32.5 137.7,32.5 138.7,59.0 139.7,59.0 140.8,59.0 141.8,45.8 142.8,45.8 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,45.8 154.1,45.8 155.2,45.8 156.2,45.8 157.2,59.0 158.3,45.8 159.3,45.8 160.3,45.8 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,45.8 194.2,45.8 195.3,45.8 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,32.5 206.6,32.5 207.6,59.0 208.6,6.0 209.7,6.0 210.7,6.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,59.0 230.2,59.0 231.3,59.0 232.3,59.0 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,59.0 238.5,59.0 239.5,59.0 240.5,45.8 241.6,45.8 242.6,45.8 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,45.8 266.2,45.8 267.3,45.8 268.3,59.0 269.3,45.8 270.3,45.8 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">WILLIAMSPORT HOLD ROOM<\/b><br>2851 S Reach Rd<br>Williamsport, PA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 5<\/b> (2025-10-24)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 21<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,46.4 8.1,59.0 9.1,59.0 10.2,56.5 11.2,59.0 12.2,59.0 13.3,33.8 14.3,48.9 15.3,48.9 16.3,59.0 17.4,59.0 18.4,56.5 19.4,59.0 20.5,54.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,56.5 27.7,59.0 28.7,59.0 29.7,54.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,56.5 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,51.4 43.1,59.0 44.1,56.5 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,41.3 52.3,48.9 53.4,54.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,56.5 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,48.9 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,56.5 72.9,59.0 73.9,59.0 75.0,51.4 76.0,59.0 77.0,59.0 78.0,56.5 79.1,59.0 80.1,59.0 81.1,59.0 82.2,56.5 83.2,59.0 84.2,59.0 85.2,6.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,54.0 93.5,59.0 94.5,59.0 95.5,59.0 96.6,59.0 97.6,59.0 98.6,59.0 99.6,59.0 100.7,56.5 101.7,59.0 102.7,56.5 103.8,56.5 104.8,59.0 105.8,36.3 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,51.4 112.0,54.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,54.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,54.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,56.5 137.7,59.0 138.7,59.0 139.7,54.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,46.4 154.1,59.0 155.2,56.5 156.2,56.5 157.2,54.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,51.4 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,56.5 167.5,59.0 168.5,51.4 169.6,51.4 170.6,59.0 171.6,54.0 172.7,56.5 173.7,48.9 174.7,59.0 175.7,56.5 176.8,59.0 177.8,59.0 178.8,59.0 179.9,46.4 180.9,59.0 181.9,56.5 182.9,59.0 184.0,59.0 185.0,59.0 186.0,54.0 187.0,56.5 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,54.0 194.2,59.0 195.3,59.0 196.3,51.4 197.3,54.0 198.4,56.5 199.4,59.0 200.4,56.5 201.4,59.0 202.5,59.0 203.5,51.4 204.5,59.0 205.6,59.0 206.6,56.5 207.6,56.5 208.6,59.0 209.7,59.0 210.7,59.0 211.7,51.4 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,56.5 218.9,56.5 220.0,59.0 221.0,54.0 222.0,56.5 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,56.5 229.2,59.0 230.2,59.0 231.3,46.4 232.3,56.5 233.3,59.0 234.4,59.0 235.4,59.0 236.4,59.0 237.4,56.5 238.5,54.0 239.5,56.5 240.5,59.0 241.6,59.0 242.6,56.5 243.6,59.0 244.6,59.0 245.7,59.0 246.7,56.5 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,56.5 258.0,54.0 259.0,54.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,56.5 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,48.9 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,54.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,54.0 286.8,56.5 287.8,54.0 288.9,56.5 289.9,56.5 290.9,56.5 291.9,56.5 293.0,56.5 294.0,56.5\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">EASTERN REGIONAL JAIL<\/b><br>1406 Charles Town Road<br>Martinsburg, WV<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 55<\/b> (2026-01-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 17/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 55<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,58.0 5.0,58.0 6.1,57.1 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,58.0 16.3,55.1 17.4,55.1 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,58.0 35.9,57.1 36.9,58.0 37.9,58.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,58.0 44.1,54.2 45.1,55.1 46.2,55.1 47.2,55.1 48.2,59.0 49.2,59.0 50.3,59.0 51.3,58.0 52.3,58.0 53.4,57.1 54.4,57.1 55.4,54.2 56.4,54.2 57.5,58.0 58.5,58.0 59.5,55.1 60.6,55.1 61.6,59.0 62.6,58.0 63.6,58.0 64.7,58.0 65.7,56.1 66.7,52.3 67.8,51.3 68.8,54.2 69.8,59.0 70.8,59.0 71.9,59.0 72.9,58.0 73.9,57.1 75.0,57.1 76.0,57.1 77.0,56.1 78.0,54.2 79.1,52.3 80.1,57.1 81.1,57.1 82.2,59.0 83.2,59.0 84.2,58.0 85.2,58.0 86.3,58.0 87.3,56.1 88.3,55.1 89.4,55.1 90.4,52.3 91.4,55.1 92.4,53.2 93.5,51.3 94.5,57.1 95.5,56.1 96.6,56.1 97.6,59.0 98.6,59.0 99.6,58.0 100.7,56.1 101.7,51.3 102.7,51.3 103.8,57.1 104.8,56.1 105.8,54.2 106.8,53.2 107.9,55.1 108.9,55.1 109.9,57.1 111.0,55.1 112.0,53.2 113.0,52.3 114.0,58.0 115.1,56.1 116.1,54.2 117.1,56.1 118.1,56.1 119.2,55.1 120.2,53.2 121.2,52.3 122.3,56.1 123.3,56.1 124.3,50.3 125.3,49.4 126.4,46.5 127.4,45.5 128.4,56.1 129.5,53.2 130.5,49.4 131.5,47.4 132.5,47.4 133.6,59.0 134.6,58.0 135.6,56.1 136.7,53.2 137.7,55.1 138.7,53.2 139.7,47.4 140.8,46.5 141.8,36.8 142.8,48.4 143.9,43.6 144.9,46.5 145.9,51.3 146.9,50.3 148.0,52.3 149.0,52.3 150.0,56.1 151.1,53.2 152.1,51.3 153.1,50.3 154.1,50.3 155.2,43.6 156.2,39.7 157.2,45.5 158.3,51.3 159.3,51.3 160.3,56.1 161.3,49.4 162.4,52.3 163.4,44.5 164.4,31.1 165.5,23.3 166.5,22.4 167.5,22.4 168.5,39.7 169.6,43.6 170.6,36.8 171.6,25.3 172.7,16.6 173.7,25.3 174.7,14.7 175.7,26.2 176.8,34.9 177.8,34.9 178.8,51.3 179.9,33.9 180.9,33.9 181.9,32.0 182.9,29.1 184.0,43.6 185.0,49.4 186.0,56.1 187.0,53.2 188.1,56.1 189.1,56.1 190.1,56.1 191.2,59.0 192.2,54.2 193.2,45.5 194.2,43.6 195.3,38.8 196.3,47.4 197.3,49.4 198.4,40.7 199.4,50.3 200.4,47.4 201.4,42.6 202.5,49.4 203.5,46.5 204.5,46.5 205.6,51.3 206.6,42.6 207.6,45.5 208.6,30.1 209.7,27.2 210.7,26.2 211.7,29.1 212.8,47.4 213.8,42.6 214.8,47.4 215.8,51.3 216.9,49.4 217.9,47.4 218.9,48.4 220.0,48.4 221.0,46.5 222.0,44.5 223.0,35.9 224.1,33.9 225.1,37.8 226.1,37.8 227.2,52.3 228.2,45.5 229.2,38.8 230.2,20.5 231.3,21.4 232.3,6.0 233.3,13.7 234.4,22.4 235.4,29.1 236.4,22.4 237.4,8.9 238.5,7.9 239.5,11.8 240.5,14.7 241.6,36.8 242.6,42.6 243.6,45.5 244.6,46.5 245.7,49.4 246.7,52.3 247.7,52.3 248.8,59.0 249.8,59.0 250.8,59.0 251.8,53.2 252.9,49.4 253.9,49.4 254.9,48.4 256.0,56.1 257.0,54.2 258.0,54.2 259.0,52.3 260.1,49.4 261.1,47.4 262.1,44.5 263.1,55.1 264.2,51.3 265.2,48.4 266.2,49.4 267.3,48.4 268.3,52.3 269.3,51.3 270.3,57.1 271.4,57.1 272.4,57.1 273.4,52.3 274.5,45.5 275.5,45.5 276.5,50.3 277.5,57.1 278.6,51.3 279.6,47.4 280.6,32.0 281.7,27.2 282.7,34.9 283.7,54.2 284.7,54.2 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">WESTERN VIRGINIA REGIONAL JAIL<\/b><br>5885 W River Rd<br>Salem, VA<br><span style=\"color:#666;\">Type: Federal<\/span><br><b>Peak during FY26: 13<\/b> (2025-10-03)&nbsp;&nbsp;<br><b>Mean:<\/b> 3/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 57<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,57.1 6.1,57.1 7.1,59.0 8.1,57.1 9.1,57.1 10.2,54.4 11.2,54.4 12.2,59.0 13.3,56.2 14.3,56.2 15.3,57.1 16.3,56.2 17.4,56.2 18.4,58.1 19.4,56.2 20.5,56.2 21.5,59.0 22.5,58.1 23.5,58.1 24.6,58.1 25.6,57.1 26.6,56.2 27.7,55.3 28.7,56.2 29.7,58.1 30.7,58.1 31.8,58.1 32.8,58.1 33.8,58.1 34.9,58.1 35.9,58.1 36.9,59.0 37.9,59.0 39.0,58.1 40.0,53.4 41.0,53.4 42.0,53.4 43.1,53.4 44.1,51.6 45.1,51.6 46.2,55.3 47.2,55.3 48.2,57.1 49.2,58.1 50.3,58.1 51.3,58.1 52.3,58.1 53.4,58.1 54.4,58.1 55.4,57.1 56.4,58.1 57.5,59.0 58.5,59.0 59.5,55.3 60.6,54.4 61.6,57.1 62.6,54.4 63.6,53.4 64.7,56.2 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,57.1 70.8,53.4 71.9,53.4 72.9,54.4 73.9,54.4 75.0,53.4 76.0,58.1 77.0,58.1 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,58.1 85.2,58.1 86.3,57.1 87.3,57.1 88.3,59.0 89.4,59.0 90.4,59.0 91.4,57.1 92.4,54.4 93.5,53.4 94.5,51.6 95.5,55.3 96.6,36.7 97.6,40.4 98.6,40.4 99.6,40.4 100.7,39.5 101.7,8.8 102.7,12.5 103.8,6.0 104.8,9.7 105.8,37.6 106.8,38.5 107.9,55.3 108.9,59.0 109.9,58.1 111.0,58.1 112.0,58.1 113.0,57.1 114.0,56.2 115.1,55.3 116.1,52.5 117.1,54.4 118.1,57.1 119.2,58.1 120.2,54.4 121.2,52.5 122.3,32.0 123.3,19.0 124.3,24.6 125.3,25.5 126.4,51.6 127.4,50.6 128.4,53.4 129.5,57.1 130.5,48.8 131.5,46.9 132.5,51.6 133.6,51.6 134.6,50.6 135.6,58.1 136.7,56.2 137.7,55.3 138.7,58.1 139.7,58.1 140.8,58.1 141.8,58.1 142.8,58.1 143.9,57.1 144.9,57.1 145.9,57.1 146.9,56.2 148.0,58.1 149.0,57.1 150.0,56.2 151.1,57.1 152.1,54.4 153.1,54.4 154.1,59.0 155.2,57.1 156.2,56.2 157.2,56.2 158.3,56.2 159.3,56.2 160.3,59.0 161.3,57.1 162.4,57.1 163.4,56.2 164.4,56.2 165.5,57.1 166.5,58.1 167.5,57.1 168.5,58.1 169.6,58.1 170.6,58.1 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,57.1 177.8,55.3 178.8,55.3 179.9,56.2 180.9,54.4 181.9,53.4 182.9,58.1 184.0,58.1 185.0,55.3 186.0,55.3 187.0,53.4 188.1,56.2 189.1,55.3 190.1,56.2 191.2,56.2 192.2,55.3 193.2,55.3 194.2,55.3 195.3,53.4 196.3,48.8 197.3,47.8 198.4,54.4 199.4,53.4 200.4,58.1 201.4,56.2 202.5,54.4 203.5,57.1 204.5,57.1 205.6,57.1 206.6,56.2 207.6,55.3 208.6,58.1 209.7,54.4 210.7,54.4 211.7,57.1 212.8,57.1 213.8,55.3 214.8,54.4 215.8,53.4 216.9,58.1 217.9,56.2 218.9,57.1 220.0,57.1 221.0,56.2 222.0,57.1 223.0,56.2 224.1,52.5 225.1,49.7 226.1,53.4 227.2,59.0 228.2,55.3 229.2,55.3 230.2,55.3 231.3,54.4 232.3,54.4 233.3,54.4 234.4,57.1 235.4,57.1 236.4,56.2 237.4,56.2 238.5,54.4 239.5,53.4 240.5,53.4 241.6,58.1 242.6,56.2 243.6,55.3 244.6,55.3 245.7,55.3 246.7,53.4 247.7,57.1 248.8,59.0 249.8,58.1 250.8,58.1 251.8,58.1 252.9,56.2 253.9,56.2 254.9,58.1 256.0,56.2 257.0,55.3 258.0,50.6 259.0,53.4 260.1,56.2 261.1,56.2 262.1,58.1 263.1,58.1 264.2,58.1 265.2,56.2 266.2,54.4 267.3,51.6 268.3,47.8 269.3,47.8 270.3,58.1 271.4,51.6 272.4,50.6 273.4,49.7 274.5,54.4 275.5,51.6 276.5,53.4 277.5,57.1 278.6,56.2 279.6,58.1 280.6,58.1 281.7,57.1 282.7,54.4 283.7,53.4 284.7,54.4 285.8,51.6 286.8,55.3 287.8,52.5 288.9,53.4 289.9,51.6 290.9,53.4 291.9,52.5 293.0,52.5 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">POTOMAC HIGHLANDS REGIONAL JAIL<\/b><br>355 Dolan Drive<br>Augusta, WV<br><span style=\"color:#666;\">Type: Non-Dedicated<\/span><br><b>Peak during FY26: 19<\/b> (2026-01-09)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 19<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,59.0 6.1,59.0 7.1,59.0 8.1,59.0 9.1,59.0 10.2,59.0 11.2,59.0 12.2,59.0 13.3,59.0 14.3,59.0 15.3,59.0 16.3,59.0 17.4,59.0 18.4,59.0 19.4,59.0 20.5,59.0 21.5,59.0 22.5,59.0 23.5,59.0 24.6,59.0 25.6,59.0 26.6,59.0 27.7,59.0 28.7,59.0 29.7,59.0 30.7,59.0 31.8,59.0 32.8,59.0 33.8,59.0 34.9,59.0 35.9,59.0 36.9,59.0 37.9,59.0 39.0,59.0 40.0,59.0 41.0,59.0 42.0,59.0 43.1,59.0 44.1,59.0 45.1,59.0 46.2,59.0 47.2,59.0 48.2,59.0 49.2,59.0 50.3,59.0 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,59.0 56.4,59.0 57.5,59.0 58.5,59.0 59.5,59.0 60.6,59.0 61.6,59.0 62.6,59.0 63.6,59.0 64.7,59.0 65.7,59.0 66.7,59.0 67.8,59.0 68.8,59.0 69.8,59.0 70.8,59.0 71.9,59.0 72.9,59.0 73.9,59.0 75.0,59.0 76.0,59.0 77.0,59.0 78.0,59.0 79.1,59.0 80.1,59.0 81.1,59.0 82.2,59.0 83.2,59.0 84.2,59.0 85.2,59.0 86.3,59.0 87.3,59.0 88.3,59.0 89.4,59.0 90.4,59.0 91.4,59.0 92.4,59.0 93.5,59.0 94.5,56.2 95.5,56.2 96.6,56.2 97.6,56.2 98.6,59.0 99.6,59.0 100.7,59.0 101.7,59.0 102.7,59.0 103.8,59.0 104.8,59.0 105.8,59.0 106.8,59.0 107.9,59.0 108.9,59.0 109.9,59.0 111.0,59.0 112.0,59.0 113.0,59.0 114.0,59.0 115.1,59.0 116.1,59.0 117.1,59.0 118.1,59.0 119.2,59.0 120.2,59.0 121.2,59.0 122.3,59.0 123.3,59.0 124.3,59.0 125.3,59.0 126.4,59.0 127.4,59.0 128.4,59.0 129.5,59.0 130.5,59.0 131.5,59.0 132.5,59.0 133.6,59.0 134.6,59.0 135.6,59.0 136.7,59.0 137.7,59.0 138.7,59.0 139.7,59.0 140.8,59.0 141.8,59.0 142.8,59.0 143.9,59.0 144.9,59.0 145.9,59.0 146.9,59.0 148.0,59.0 149.0,59.0 150.0,59.0 151.1,59.0 152.1,59.0 153.1,59.0 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,59.0 164.4,59.0 165.5,59.0 166.5,59.0 167.5,59.0 168.5,59.0 169.6,59.0 170.6,59.0 171.6,59.0 172.7,59.0 173.7,59.0 174.7,59.0 175.7,59.0 176.8,59.0 177.8,59.0 178.8,59.0 179.9,59.0 180.9,59.0 181.9,59.0 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,59.0 188.1,59.0 189.1,59.0 190.1,59.0 191.2,59.0 192.2,59.0 193.2,59.0 194.2,59.0 195.3,59.0 196.3,59.0 197.3,59.0 198.4,59.0 199.4,59.0 200.4,59.0 201.4,59.0 202.5,59.0 203.5,59.0 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,59.0 214.8,59.0 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,59.0 224.1,59.0 225.1,59.0 226.1,59.0 227.2,59.0 228.2,59.0 229.2,45.1 230.2,31.1 231.3,14.4 232.3,6.0 233.3,25.5 234.4,33.9 235.4,31.1 236.4,36.7 237.4,31.1 238.5,53.4 239.5,53.4 240.5,56.2 241.6,50.6 242.6,59.0 243.6,59.0 244.6,59.0 245.7,59.0 246.7,59.0 247.7,59.0 248.8,59.0 249.8,59.0 250.8,59.0 251.8,59.0 252.9,59.0 253.9,59.0 254.9,59.0 256.0,59.0 257.0,59.0 258.0,59.0 259.0,59.0 260.1,59.0 261.1,59.0 262.1,59.0 263.1,59.0 264.2,59.0 265.2,59.0 266.2,59.0 267.3,59.0 268.3,59.0 269.3,59.0 270.3,59.0 271.4,59.0 272.4,59.0 273.4,59.0 274.5,59.0 275.5,59.0 276.5,59.0 277.5,59.0 278.6,59.0 279.6,59.0 280.6,59.0 281.7,59.0 282.7,59.0 283.7,59.0 284.7,59.0 285.8,59.0 286.8,59.0 287.8,59.0 288.9,59.0 289.9,59.0 290.9,59.0 291.9,59.0 293.0,59.0 294.0,59.0\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">YAKIMA SUB-OFFICE<\/b><br>3701 RIVER ROAD<br>YAKIMA, WA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 9<\/b> (2025-11-17)&nbsp;&nbsp;<br><b>Mean:<\/b> 2/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 12<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,50.2 5.0,45.8 6.1,45.8 7.1,6.0 8.1,10.4 9.1,54.6 10.2,54.6 11.2,54.6 12.2,54.6 13.3,36.9 14.3,32.5 15.3,14.8 16.3,36.9 17.4,59.0 18.4,59.0 19.4,41.3 20.5,45.8 21.5,41.3 22.5,41.3 23.5,41.3 24.6,59.0 25.6,54.6 26.6,45.8 27.7,41.3 28.7,54.6 29.7,54.6 30.7,59.0 31.8,59.0 32.8,59.0 33.8,50.2 34.9,50.2 35.9,41.3 36.9,50.2 37.9,59.0 39.0,59.0 40.0,54.6 41.0,50.2 42.0,41.3 43.1,50.2 44.1,54.6 45.1,50.2 46.2,54.6 47.2,59.0 48.2,59.0 49.2,50.2 50.3,54.6 51.3,54.6 52.3,59.0 53.4,59.0 54.4,54.6 55.4,45.8 56.4,54.6 57.5,45.8 58.5,32.5 59.5,41.3 60.6,50.2 61.6,59.0 62.6,19.2 63.6,41.3 64.7,41.3 65.7,36.9 66.7,50.2 67.8,54.6 68.8,59.0 69.8,59.0 70.8,50.2 71.9,41.3 72.9,36.9 73.9,54.6 75.0,59.0 76.0,59.0 77.0,45.8 78.0,45.8 79.1,45.8 80.1,50.2 81.1,54.6 82.2,54.6 83.2,50.2 84.2,50.2 85.2,59.0 86.3,45.8 87.3,54.6 88.3,54.6 89.4,59.0 90.4,59.0 91.4,32.5 92.4,32.5 93.5,50.2 94.5,54.6 95.5,50.2 96.6,59.0 97.6,59.0 98.6,10.4 99.6,50.2 100.7,50.2 101.7,45.8 102.7,45.8 103.8,50.2 104.8,59.0 105.8,41.3 106.8,50.2 107.9,28.1 108.9,32.5 109.9,45.8 111.0,50.2 112.0,59.0 113.0,36.9 114.0,54.6 115.1,28.1 116.1,54.6 117.1,50.2 118.1,50.2 119.2,54.6 120.2,54.6 121.2,50.2 122.3,59.0 123.3,54.6 124.3,41.3 125.3,54.6 126.4,41.3 127.4,41.3 128.4,50.2 129.5,50.2 130.5,54.6 131.5,23.7 132.5,59.0 133.6,59.0 134.6,28.1 135.6,45.8 136.7,36.9 137.7,59.0 138.7,36.9 139.7,59.0 140.8,45.8 141.8,54.6 142.8,50.2 143.9,32.5 144.9,36.9 145.9,32.5 146.9,59.0 148.0,59.0 149.0,41.3 150.0,41.3 151.1,36.9 152.1,45.8 153.1,50.2 154.1,59.0 155.2,28.1 156.2,32.5 157.2,23.7 158.3,41.3 159.3,54.6 160.3,45.8 161.3,59.0 162.4,59.0 163.4,54.6 164.4,36.9 165.5,50.2 166.5,59.0 167.5,41.3 168.5,59.0 169.6,36.9 170.6,54.6 171.6,59.0 172.7,54.6 173.7,45.8 174.7,45.8 175.7,59.0 176.8,59.0 177.8,19.2 178.8,45.8 179.9,50.2 180.9,59.0 181.9,54.6 182.9,59.0 184.0,54.6 185.0,41.3 186.0,50.2 187.0,59.0 188.1,54.6 189.1,59.0 190.1,59.0 191.2,59.0 192.2,45.8 193.2,36.9 194.2,41.3 195.3,45.8 196.3,32.5 197.3,59.0 198.4,59.0 199.4,45.8 200.4,45.8 201.4,59.0 202.5,45.8 203.5,54.6 204.5,59.0 205.6,59.0 206.6,41.3 207.6,54.6 208.6,54.6 209.7,50.2 210.7,41.3 211.7,59.0 212.8,45.8 213.8,54.6 214.8,41.3 215.8,45.8 216.9,50.2 217.9,54.6 218.9,59.0 220.0,59.0 221.0,50.2 222.0,45.8 223.0,59.0 224.1,54.6 225.1,59.0 226.1,59.0 227.2,59.0 228.2,41.3 229.2,28.1 230.2,41.3 231.3,59.0 232.3,50.2 233.3,59.0 234.4,59.0 235.4,50.2 236.4,45.8 237.4,59.0 238.5,54.6 239.5,54.6 240.5,59.0 241.6,59.0 242.6,54.6 243.6,59.0 244.6,54.6 245.7,59.0 246.7,36.9 247.7,59.0 248.8,59.0 249.8,59.0 250.8,54.6 251.8,45.8 252.9,59.0 253.9,54.6 254.9,54.6 256.0,59.0 257.0,59.0 258.0,50.2 259.0,59.0 260.1,54.6 261.1,59.0 262.1,54.6 263.1,59.0 264.2,54.6 265.2,54.6 266.2,54.6 267.3,50.2 268.3,54.6 269.3,59.0 270.3,59.0 271.4,59.0 272.4,50.2 273.4,59.0 274.5,54.6 275.5,59.0 276.5,59.0 277.5,59.0 278.6,54.6 279.6,54.6 280.6,32.5 281.7,41.3 282.7,59.0 283.7,59.0 284.7,59.0 285.8,54.6 286.8,41.3 287.8,54.6 288.9,59.0 289.9,50.2 290.9,59.0 291.9,59.0 293.0,59.0 294.0,54.6\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">YORK HOLD ROOM<\/b><br>1605 Clugston Road<br>York, PA<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 14<\/b> (2025-10-04)&nbsp;&nbsp;<br><b>Mean:<\/b> 5/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 16<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,35.8 6.1,6.0 7.1,35.8 8.1,52.4 9.1,42.4 10.2,19.2 11.2,49.1 12.2,55.7 13.3,42.4 14.3,32.5 15.3,45.8 16.3,52.4 17.4,39.1 18.4,49.1 19.4,55.7 20.5,42.4 21.5,19.2 22.5,19.2 23.5,39.1 24.6,39.1 25.6,39.1 26.6,45.8 27.7,45.8 28.7,42.4 29.7,52.4 30.7,45.8 31.8,52.4 32.8,52.4 33.8,55.7 34.9,32.5 35.9,29.2 36.9,39.1 37.9,49.1 39.0,49.1 40.0,29.2 41.0,55.7 42.0,45.8 43.1,42.4 44.1,32.5 45.1,45.8 46.2,52.4 47.2,35.8 48.2,55.7 49.2,45.8 50.3,55.7 51.3,45.8 52.3,49.1 53.4,49.1 54.4,42.4 55.4,49.1 56.4,39.1 57.5,35.8 58.5,52.4 59.5,55.7 60.6,22.6 61.6,52.4 62.6,52.4 63.6,35.8 64.7,45.8 65.7,39.1 66.7,55.7 67.8,35.8 68.8,39.1 69.8,45.8 70.8,42.4 71.9,42.4 72.9,52.4 73.9,52.4 75.0,45.8 76.0,49.1 77.0,45.8 78.0,42.4 79.1,25.9 80.1,42.4 81.1,29.2 82.2,35.8 83.2,52.4 84.2,59.0 85.2,55.7 86.3,45.8 87.3,52.4 88.3,49.1 89.4,45.8 90.4,45.8 91.4,52.4 92.4,49.1 93.5,15.9 94.5,45.8 95.5,52.4 96.6,35.8 97.6,52.4 98.6,45.8 99.6,42.4 100.7,49.1 101.7,49.1 102.7,55.7 103.8,45.8 104.8,59.0 105.8,59.0 106.8,49.1 107.9,49.1 108.9,55.7 109.9,45.8 111.0,25.9 112.0,52.4 113.0,55.7 114.0,49.1 115.1,59.0 116.1,52.4 117.1,52.4 118.1,52.4 119.2,55.7 120.2,55.7 121.2,55.7 122.3,55.7 123.3,55.7 124.3,52.4 125.3,45.8 126.4,55.7 127.4,59.0 128.4,39.1 129.5,55.7 130.5,49.1 131.5,42.4 132.5,12.6 133.6,52.4 134.6,49.1 135.6,49.1 136.7,15.9 137.7,25.9 138.7,52.4 139.7,45.8 140.8,59.0 141.8,45.8 142.8,35.8 143.9,49.1 144.9,32.5 145.9,42.4 146.9,42.4 148.0,59.0 149.0,45.8 150.0,45.8 151.1,45.8 152.1,42.4 153.1,52.4 154.1,55.7 155.2,59.0 156.2,45.8 157.2,55.7 158.3,39.1 159.3,52.4 160.3,35.8 161.3,49.1 162.4,52.4 163.4,52.4 164.4,32.5 165.5,55.7 166.5,45.8 167.5,39.1 168.5,32.5 169.6,59.0 170.6,25.9 171.6,35.8 172.7,35.8 173.7,45.8 174.7,45.8 175.7,39.1 176.8,49.1 177.8,22.6 178.8,49.1 179.9,49.1 180.9,52.4 181.9,32.5 182.9,45.8 184.0,59.0 185.0,35.8 186.0,42.4 187.0,19.2 188.1,49.1 189.1,32.5 190.1,22.6 191.2,55.7 192.2,42.4 193.2,42.4 194.2,25.9 195.3,29.2 196.3,45.8 197.3,49.1 198.4,22.6 199.4,42.4 200.4,32.5 201.4,39.1 202.5,35.8 203.5,29.2 204.5,35.8 205.6,32.5 206.6,39.1 207.6,29.2 208.6,49.1 209.7,22.6 210.7,39.1 211.7,42.4 212.8,45.8 213.8,45.8 214.8,39.1 215.8,39.1 216.9,55.7 217.9,59.0 218.9,52.4 220.0,55.7 221.0,45.8 222.0,39.1 223.0,45.8 224.1,55.7 225.1,49.1 226.1,42.4 227.2,52.4 228.2,49.1 229.2,35.8 230.2,39.1 231.3,25.9 232.3,42.4 233.3,55.7 234.4,55.7 235.4,29.2 236.4,29.2 237.4,39.1 238.5,39.1 239.5,19.2 240.5,49.1 241.6,49.1 242.6,25.9 243.6,32.5 244.6,32.5 245.7,42.4 246.7,49.1 247.7,35.8 248.8,59.0 249.8,59.0 250.8,42.4 251.8,29.2 252.9,19.2 253.9,29.2 254.9,42.4 256.0,49.1 257.0,35.8 258.0,39.1 259.0,42.4 260.1,12.6 261.1,42.4 262.1,25.9 263.1,45.8 264.2,55.7 265.2,6.0 266.2,42.4 267.3,39.1 268.3,32.5 269.3,29.2 270.3,55.7 271.4,52.4 272.4,45.8 273.4,29.2 274.5,52.4 275.5,35.8 276.5,45.8 277.5,52.4 278.6,39.1 279.6,39.1 280.6,29.2 281.7,39.1 282.7,25.9 283.7,55.7 284.7,42.4 285.8,32.5 286.8,42.4 287.8,35.8 288.9,42.4 289.9,35.8 290.9,45.8 291.9,42.4 293.0,49.1 294.0,42.4\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>","<div style=\"min-width:240px; font-family:sans-serif; font-size:14px;\"><b style=\"font-size:16px;\">YUMA HOLDROOM<\/b><br>3911 S. PICO AVE.<br>YUMA, AZ<br><span style=\"color:#666;\">Type: Hold/Staging<\/span><br><b>Peak during FY26: 9<\/b> (2025-12-08)&nbsp;&nbsp;<br><b>Mean:<\/b> 1/day<br><svg width=\"300\" height=\"75\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"299\" y=\"5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#555\" text-anchor=\"end\">peak 9<\/text><line x1=\"4.0\" y1=\"59\" x2=\"4.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"34.9\" y1=\"59\" x2=\"34.9\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"66.7\" y1=\"59\" x2=\"66.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"98.6\" y1=\"59\" x2=\"98.6\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"129.5\" y1=\"59\" x2=\"129.5\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"161.3\" y1=\"59\" x2=\"161.3\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"192.2\" y1=\"59\" x2=\"192.2\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"224.1\" y1=\"59\" x2=\"224.1\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"256.0\" y1=\"59\" x2=\"256.0\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><line x1=\"284.7\" y1=\"59\" x2=\"284.7\" y2=\"62\" stroke=\"#bbb\" stroke-width=\"1\"/><text x=\"4.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jun<\/text><text x=\"34.9\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jul<\/text><text x=\"66.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Aug<\/text><text x=\"98.6\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Sep<\/text><text x=\"129.5\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Oct<\/text><text x=\"161.3\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Nov<\/text><text x=\"192.2\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Dec<\/text><text x=\"224.1\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Jan<\/text><text x=\"256.0\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Feb<\/text><text x=\"284.7\" y=\"73\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#666\" text-anchor=\"middle\">Mar<\/text><polyline points=\"4.0,59.0 5.0,47.2 6.1,53.1 7.1,53.1 8.1,41.3 9.1,35.4 10.2,35.4 11.2,35.4 12.2,41.3 13.3,53.1 14.3,53.1 15.3,53.1 16.3,35.4 17.4,53.1 18.4,59.0 19.4,29.6 20.5,17.8 21.5,41.3 22.5,59.0 23.5,35.4 24.6,59.0 25.6,59.0 26.6,47.2 27.7,53.1 28.7,53.1 29.7,53.1 30.7,47.2 31.8,59.0 32.8,53.1 33.8,59.0 34.9,53.1 35.9,47.2 36.9,29.6 37.9,59.0 39.0,59.0 40.0,59.0 41.0,53.1 42.0,47.2 43.1,53.1 44.1,53.1 45.1,53.1 46.2,59.0 47.2,59.0 48.2,59.0 49.2,53.1 50.3,53.1 51.3,59.0 52.3,59.0 53.4,59.0 54.4,59.0 55.4,53.1 56.4,53.1 57.5,47.2 58.5,53.1 59.5,47.2 60.6,59.0 61.6,59.0 62.6,47.2 63.6,53.1 64.7,47.2 65.7,11.9 66.7,35.4 67.8,59.0 68.8,59.0 69.8,53.1 70.8,59.0 71.9,59.0 72.9,53.1 73.9,59.0 75.0,59.0 76.0,59.0 77.0,53.1 78.0,53.1 79.1,59.0 80.1,35.4 81.1,53.1 82.2,59.0 83.2,59.0 84.2,35.4 85.2,47.2 86.3,59.0 87.3,47.2 88.3,53.1 89.4,59.0 90.4,47.2 91.4,47.2 92.4,59.0 93.5,23.7 94.5,59.0 95.5,59.0 96.6,23.7 97.6,29.6 98.6,59.0 99.6,59.0 100.7,53.1 101.7,47.2 102.7,53.1 103.8,47.2 104.8,59.0 105.8,59.0 106.8,47.2 107.9,59.0 108.9,47.2 109.9,23.7 111.0,41.3 112.0,59.0 113.0,47.2 114.0,59.0 115.1,47.2 116.1,53.1 117.1,59.0 118.1,59.0 119.2,59.0 120.2,47.2 121.2,59.0 122.3,53.1 123.3,53.1 124.3,59.0 125.3,59.0 126.4,59.0 127.4,47.2 128.4,59.0 129.5,53.1 130.5,23.7 131.5,53.1 132.5,59.0 133.6,59.0 134.6,53.1 135.6,59.0 136.7,59.0 137.7,47.2 138.7,59.0 139.7,59.0 140.8,59.0 141.8,53.1 142.8,47.2 143.9,47.2 144.9,53.1 145.9,53.1 146.9,47.2 148.0,59.0 149.0,59.0 150.0,53.1 151.1,59.0 152.1,59.0 153.1,53.1 154.1,59.0 155.2,59.0 156.2,59.0 157.2,59.0 158.3,59.0 159.3,59.0 160.3,59.0 161.3,59.0 162.4,59.0 163.4,53.1 164.4,47.2 165.5,41.3 166.5,59.0 167.5,29.6 168.5,59.0 169.6,59.0 170.6,23.7 171.6,47.2 172.7,53.1 173.7,41.3 174.7,53.1 175.7,59.0 176.8,59.0 177.8,35.4 178.8,59.0 179.9,53.1 180.9,53.1 181.9,53.1 182.9,59.0 184.0,59.0 185.0,59.0 186.0,59.0 187.0,53.1 188.1,53.1 189.1,35.4 190.1,59.0 191.2,59.0 192.2,53.1 193.2,59.0 194.2,59.0 195.3,47.2 196.3,47.2 197.3,59.0 198.4,59.0 199.4,6.0 200.4,59.0 201.4,59.0 202.5,53.1 203.5,41.3 204.5,59.0 205.6,59.0 206.6,59.0 207.6,59.0 208.6,59.0 209.7,59.0 210.7,59.0 211.7,59.0 212.8,59.0 213.8,53.1 214.8,53.1 215.8,59.0 216.9,59.0 217.9,59.0 218.9,59.0 220.0,59.0 221.0,59.0 222.0,59.0 223.0,17.8 224.1,59.0 225.1,53.1 226.1,59.0 227.2,59.0 228.2,29.6 229.2,59.0 230.2,47.2 231.3,53.1 232.3,35.4 233.3,59.0 234.4,59.0 235.4,59.0 236.4,53.1 237.4,53.1 238.5,41.3 239.5,47.2 240.5,59.0 241.6,59.0 242.6,53.1 243.6,59.0 244.6,59.0 245.7,59.0 246.7,53.1 247.7,59.0 248.8,59.0 249.8,47.2 250.8,47.2 251.8,47.2 252.9,47.2 253.9,59.0 254.9,59.0 256.0,59.0 257.0,53.1 258.0,53.1 259.0,59.0 260.1,47.2 261.1,29.6 262.1,59.0 263.1,59.0 264.2,47.2 265.2,47.2 266.2,59.0 267.3,59.0 268.3,47.2 269.3,53.1 270.3,59.0 271.4,53.1 272.4,47.2 273.4,53.1 274.5,53.1 275.5,47.2 276.5,59.0 277.5,59.0 278.6,47.2 279.6,59.0 280.6,59.0 281.7,47.2 282.7,59.0 283.7,59.0 284.7,59.0 285.8,53.1 286.8,47.2 287.8,53.1 288.9,53.1 289.9,41.3 290.9,59.0 291.9,53.1 293.0,41.3 294.0,53.1\" fill=\"none\" stroke=\"#4682B4\" stroke-width=\"1.2\"/><\/svg><\/div>"],null,["SW VIRGINIA REG JAIL AUTH-ABG FAC (VA: peak 3)","ALBUQUERQUE HOLD ROOM (NM: peak 15)","ABRAXAS ACADEMY (PA: peak 5)","AGUADILLA SPC (PR: peak 34)","HIGHLAND MTN COR CTR (AK: peak 2)","ALAMANCE CO. DET. FACILITY (NC: peak 69)","ALBANY HOLDROOM (NY: peak 11)","ALAMOSA HOLDROOM (CO: peak 2)","AMARILLO HOLD ROOM (TX: peak 30)","ATLANTA DIST. HOLD RM (GA: peak 131)","AUSTIN DRO HOLD ROOM (TX: peak 58)","BALTIMORE HOLD ROOM (MD: peak 209)","BELL COUNTY JAIL (TX: peak 5)","BIRMINGHAM HOLD ROOM (AL: peak 28)","BI INCORORATED, GEO GROUP COMPANY (CO: peak 6)","BAKERFIELD HOLD (CA: peak 33)","BOISE HOLD ROOM (ID: peak 84)","BOSTON HOLDROOM (MA: peak 164)","BOURBON CO DET CENTER (KY: peak 17)","BOSTON SPC (MA: peak 2)","BREVARD COUNTY JAIL COMPLEX (FL: peak 7)","BROOKS COUNTY JAIL (CONTRACT) (TX: peak 81)","BROADVIEW SERVICE STAGING (IL: peak 326)","BIG SPRING HOLD ROOM (TX: peak 4)","BUFFALO HOLD ROOM (NY: peak 6)","CACHE CO. JAIL (UT: peak 9)","CAMPBELL COUNTY JAIL (WY: peak 8)","BUFFALO USBP HOLD ROOM (NY: peak 11)","CHARLOTTE AMALIE HOLDROOM (VI: peak 4)","CHARLESTON COUNTY CORRECT (SC: peak 5)","CHAVEZ DET CRT (NM: peak 12)","CHICAGO HOLD ROOM (IL: peak 18)","CHARLESTON, SC HOLD ROOM (SC: peak 86)","CHAMPLAIN HOLD ROOM (NY: peak 10)","CHESAPEAKE CITY JAIL (VA: peak 4)","CHEYENNE HOLDROOM (WY: peak 14)","CIBOLA COUNTY DET CTR (NM: peak 9)","CINCINNATI HOLDROOM (OH: peak 2)","CENTRAL ISLIP HOLD ROOM (NY: peak 35)","CLEVELAND HOLD ROOM (OH: peak 2)","COLUMBUS HOLDROOM (OH: peak 3)","CHARLOTTE HOLD ROOM (NC: peak 145)","BATAVIA COMMAND CENTER HOLDROOM (NY: peak 2)","CHATTANOOGA HOLD ROOM (TN: peak 15)","COLUMBIA, SC HOLDROOM (SC: peak 8)","COCONINO CO DETENTION FACILITY (AZ: peak 9)","CEDAR RAPIDS HOLD ROOM (IA: peak 12)","CORPUS CHRISTI EOR HOLD ROOM (TX: peak 8)","COLO SPRINGS DEN HSI HOLD (CO: peak 9)","CASPER HOLDROOM (WY: peak 2)","CUMBERLAND COUNTY JAIL (ME: peak 65)","CENTRAL VA REGIONAL JAIL (VA: peak 2)","DALLAS F.O. HOLD (TX: peak 213)","DENVER HOLD ROOM (CO: peak 21)","DETROIT HOLDROOM (MI: peak 10)","DEL RIO DRO HOLD ROOM (TX: peak 13)","DORCHESTER CO DET CTR (SC: peak 11)","DES MOINES HOLD ROOM (IA: peak 2)","DURANGO HOLDROOM (CO: peak 3)","DOVER HOLDROOM (DE: peak 8)","EGP CPC HOLDING (TX: peak 3)","ETOWAH ERO HOLD ROOM (AL: peak 6)","EUGENE HOLDROOM (OR: peak 7)","FAYETTE COUNTY DETENTION CENTER (KY: peak 10)","FAYETTEVILLE HOLD ROOM (AR: peak 2)","FERNDALE HOLD ROOM (WA: peak 6)","FLAGLER COUNTY JAIL (FL: peak 10)","FLOYD COUNTY JAIL (GA: peak 20)","FORT MYERS ERO HOLDROOM (FL: peak 36)","FREDERICK HOLDROOM (CO: peak 6)","FRESNO HOLDROOM (CA: peak 22)","GARVIN COUNTY JAIL (OK: peak 17)","GRAND JUNCTION HOLDROOM (CO: peak 4)","GRAND FORKS HOLD ROOM (ND: peak 5)","GRAND RAPIDS HOLDROOM (MI: peak 13)","GREER HOLD ROOM (SC: peak 6)","GLENWOOD SPRINGS HOLDROOM (CO: peak 4)","HALL CO JAIL (GA: peak 3)","HARTFORD OFFICE (CT: peak 11)","HARRISONBURG HOLD ROOM (VA: peak 9)","HEL DISTRICT CUSTODY (MT: peak 4)","HENDRY COUNTY JAIL (FL: peak 2)","HARLINGEN HOLD ROOM (TX: peak 80)","HOUSTON FO HOLDROOM (TX: peak 85)","IDAHO FALLS HOLD ROOM (ID: peak 6)","IMPERIAL SUB OFFICE HOLD ROOM (CA: peak 62)","INDIANAPOLIS HOLD ROOM (IN: peak 142)","AZ REM OP COORD CENTER (AROCC) (AZ: peak 777)","JACKSON MS HOLD ROOM (MS: peak 19)","JACKSONVILLE SUB-OFFICE (FL: peak 61)","JACK HARWELL DETENTION CENTER (TX: peak 11)","KARNES COUNTY CIVIL DET. FACILITY (TX: peak 2)","KINNEY COUNTY JAIL (TX: peak 2)","KNOXVILLE HOLD ROOM (TN: peak 30)","KROME/MIAMI HUB (FL: peak 17)","KROME HOLD ROOM (FL: peak 94)","LACKAWANA CNTY JAIL, PA (PA: peak 2)","LAS CRUCES HOLD ROOM (NM: peak 2)","LUBBOCK HOLD ROOM (TX: peak 17)","LEVY COUNTY JAIL (FL: peak 2)","LOS CUST CASE (CA: peak 208)","LOUDOUN COUNTY (VA: peak 4)","LOUISVILLE HOLD ROOM (KY: peak 6)","LITTLE ROCK HOLD ROOM (AR: peak 16)","LAREDO DETENTION CENTER HOLD ROOM (TX: peak 134)","LUBBOCK COUNTY JAIL (TX: peak 18)","LAS VEGAS HOLD ROOM (NV: peak 16)","MANATEE COUNTY DETENTION-ANNEX (FL: peak 3)","MANCHESTER HOLDROOM (NH: peak 6)","MARION COUNTY JAIL (FL: peak 2)","MAVERICK COUNTY JAIL (TX: peak 3)","MCALLEN HOLD ROOM (TX: peak 47)","MCLENNAN COUNTY JAIL (TX: peak 8)","MEDFORD SUB-OFFICE (OR: peak 4)","MEMPHIS HOLD ROOM (TN: peak 48)","MIAMI (MIRAMAR) HOLD ROOM (FL: peak 108)","MIDLAND DETENTION CENTER (TX: peak 12)","MILWAUKEE HOLDROOM (WI: peak 18)","MIDLAND, TX ERO HOLDROOM (TX: peak 13)","MOUNT LAUREL HOLD ROOM (NJ: peak 20)","MOBILE HOLDROOM (AL: peak 23)","MONROE COUNTY JAIL (FL: peak 11)","MONTGOMERY COUNTY JAIL (NY: peak 19)","MONTGOMERY HOLD RM (TX: peak 162)","NASSAU COUNTY JAIL (FL: peak 4)","NASSAU COUNTY ICE INTAKE (NY: peak 30)","NEWBURGH HOLDING (NY: peak 10)","NEW/INS OS HOLD ROOM (NJ: peak 13)","NEW ORLEANS HOLD ROOM (LA: peak 23)","NORFOLK SUB-OFFICE HOLD (VA: peak 15)","NW REG JUV DET CTR (VA: peak 6)","NASHVILLE HOLD ROOM (TN: peak 37)","NORTHWEST REG. ADULT DET. (VA: peak 2)","NYC HOLD ROOM (NY: peak 76)","OAKDALE HOLDING ROOM (LA: peak 48)","OGDEN HOLD ROOM (UT: peak 9)","OKLAHOMA CITY HOLD ROOM. (OK: peak 74)","LASALLE CORR CTR OLLA (LA: peak 2)","OMAHA FO HOLD (NE: peak 72)","ORLANDO HOLD ROOM (FL: peak 100)","OSCEOLA COUNTY JAIL (FL: peak 6)","PALM BEACH COUNTY JAIL (FL: peak 9)","PECOS HOLD ROOM (TX: peak 15)","PHI DISTRICT OFFICE (PA: peak 31)","PHOENIX DIST OFFICE (AZ: peak 155)","PITTSBURGH HOLDROOM (PA: peak 18)","PIKE COUNTY ERO HOLD ROOM (PA: peak 9)","PLATTE COUNTY JAIL (WY: peak 16)","PORTLAND, ME HOLDROOM (ME: peak 3)","PORTLAND DISTRICT OFFICE (OR: peak 51)","PRAIRIELAND SUBOFFICE HOLD ROOM (TX: peak 65)","PROHOLD (RI: peak 9)","PROVO HOLD ROOM (UT: peak 9)","PUEBLO HOLDROOM (CO: peak 7)","PUTNAM COUNTY JAIL (FL: peak 3)","PRINCE WILLIAM (VA: peak 2)","RAPP SEC CENTER (VA: peak 5)","RICHMOND SUB-OFFICE HOLD (VA: peak 126)","RALEIGH HOLD ROOM (NC: peak 21)","REDDING HOLD ROOM (CA: peak 5)","RIO GRANDE VALLEY STAGING (TX: peak 11)","RICHLAND HOLD ROOM (WA: peak 4)","ROCK ISLAND HOLD ROOM (IL: peak 5)","ROANOKE SUB-OFFICE HOLD ROOM (VA: peak 5)","RANDALL COUNTY JAIL (TX: peak 7)","ROCKINGHAM COUNTY JAIL (VA: peak 7)","RAPID CITY HOLD ROOM (SD: peak 5)","ROSWELL HOLD ROOM (NM: peak 11)","SANTA ANA DRO HOLDROOM (CA: peak 68)","SACRAMENTO HOLD (CA: peak 10)","SAN ANGELO HOLDROOM (TX: peak 12)","SAN JUAN SUB-OFFICE HOLD ROOM (PR: peak 6)","SALISBURY HOLD ROOM (MD: peak 12)","SARASOTA COUNTY JAIL (FL: peak 8)","SARASOTA COUNTY JAIL (FL: peak 8)","SAN BERNARDINO HOLD ROOM (CA: peak 50)","SCOTT COUNTY JAIL (IA: peak 8)","SEATTLE FIELD OFFICE HOLD ROOM (WA: peak 49)","SIOUX FALLS HOLD ROOM (SD: peak 7)","SFR HOLD ROOM (CA: peak 47)","ST. GEORGE, UT HOLDROOM (UT: peak 2)","SAN JUAN AIRPORT HOLD ROOM (PR: peak 8)","SALT LAKE CITY HOLD ROOM (UT: peak 67)","SALT LAKE COUNTY JAIL (UT: peak 7)","SANTA MARIA SUB OFFICE ERO (CA: peak 34)","SAN ANTONIO DRO HOLD ROOM (TX: peak 139)","ERO HOLD ROOM (SPRINGFIELD MO) (MO: peak 55)","BISHOP HENRY WHIPPLE FED BLDG (MN: peak 362)","SPOKANE HOLD ROOM (WA: peak 26)","SAINT ALBANS HOLD ROOM (VT: peak 3)","ST CHARLES PARISH JAIL (LA: peak 2)","SOUTH TEXAS/PEARSALL HOLD ROOM (TX: peak 54)","ST. JOHN'S COUNTY JAIL (FL: peak 23)","STOCKTON STAGING FACILITY (CA: peak 32)","ST. LOUIS HOLDROOM (MO: peak 42)","ST. LUCIE COUNTY JAIL (FL: peak 11)","STUART HOLD ROOM (FL: peak 45)","SYRACUSE HOLD ROOM (NY: peak 23)","TALLAHASSEE HOLD ROOM (FL: peak 49)","TAMPA HOLD ROOM (FL: peak 87)","TWIN FALLS HOLD ROOM (ID: peak 8)","TITUS COUNTY JAIL (TX: peak 3)","TUCSON INS HOLD ROOM (AZ: peak 47)","TULSA HOLD ROOM (OK: peak 51)","TEXARKANA HOLDROOM (AR: peak 10)","UNION COUNTY JAIL (SD: peak 4)","URSULA CENTRALIZED PROCESSING CNTR (TX: peak 5)","UVALDE COUNTY JAIL (TX: peak 2)","VENTURA CUSTODY CASE (CA: peak 41)","VIRGINIA BEACH (VA: peak 2)","VRK PRCS (NY: peak 17)","SHREVEPORT HOLD ROOM (LA: peak 5)","WASHINGTON COUNTY JAIL (AR: peak 21)","WASHINGTON FIELD OFFICE (VA: peak 69)","WACO DRO HOLD ROOM (TX: peak 24)","WENATCHEE HOLD ROOM (WA: peak 5)","WOODFORD COUNTY SHERIFF/JAIL (KY: peak 4)","WILLIAMSPORT HOLD ROOM (PA: peak 5)","EASTERN REGIONAL JAIL (WV: peak 55)","WESTERN VIRGINIA REGIONAL JAIL (VA: peak 13)","POTOMAC HIGHLANDS REGIONAL JAIL (WV: peak 19)","YAKIMA SUB-OFFICE (WA: peak 9)","YORK HOLD ROOM (PA: peak 14)","YUMA HOLDROOM (AZ: peak 9)"],{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addLegend","args":[{"colors":["#E41A1C","#A65628","#F781BF","#FF7F00","#377EB8","#999999","#444444"],"labels":["Dedicated","Non-Dedicated","Federal","Hold/Staging","Family/Youth","Other/Unknown","Unclassified"],"na_color":null,"na_label":"NA","opacity":0.5,"position":"bottomright","type":"factor","title":"Facility type","extra":null,"layerId":null,"className":"info legend","group":null}]},{"method":"addLayersControl","args":[[],["Peak < 2","Peak ≥ 2"],{"collapsed":false,"autoZIndex":true,"position":"topright"}]},{"method":"addSearchFeatures","args":[["Peak < 2","Peak ≥ 2"],{"openPopup":true,"propertyName":"label","moveToLocation":true,"zoom":9,"container":"","minLength":1,"initial":false,"casesensitive":false,"autoType":true,"delayType":400,"tooltipLimit":-1,"tipAutoSubmit":true,"firstTipSubmit":false,"autoResize":true,"collapsed":true,"autoCollapse":false,"autoCollapseTime":1200,"textErr":"Location Not Found","textCancel":"Cancel","textPlaceholder":"Search...","position":"topleft","hideMarkerOnCollapse":true,"marker":{"animate":true,"circle":{"radius":10,"weight":3,"color":"#e03","stroke":true,"fill":false}}}]},{"method":"addControl","args":["<style>\n      .leaflet-container .leaflet-control { text-align: left !important; }\n      .leaflet-container .leaflet-control .legend { text-align: left !important; }\n      .leaflet-container .leaflet-control .legend i {\n        display: inline-block !important; width: 14px !important;\n        height: 14px !important; margin: 0 8px 0 0 !important;\n        vertical-align: middle !important; }\n      .leaflet-container .leaflet-control .legend span {\n        display: inline !important; vertical-align: middle !important; }\n    <\/style>","bottomright",null,"info legend"]}],"limits":{"lat":[13.4760946,64.8326191],"lng":[-157.8638944,145.7028775]}},"evals":[],"jsHooks":[]}</script>
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-map-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;6: DDP facilities not in ICE FY26 annual statistics, sized by peak population (Oct 2025 – Feb 5 2026)
</figcaption>
</figure>
</div>
</div>
</div>


</section>

 ]]></description>
  <guid>https://carwilb.github.io/posts/ddp-comparison-26/</guid>
  <pubDate>Sun, 12 Apr 2026 13:50:35 GMT</pubDate>
</item>
<item>
  <title>Unreported Detention: Un- and under-reported ICE facilities</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/posts/ddp-comparison/</link>
  <description><![CDATA[ 





<section id="overview" class="level2">
<h2 class="anchored" data-anchor-id="overview">Overview</h2>
<p>This page offers an analysis of two forms of data on the population of people held by US Immigration and Customs Enforcement (ICE): summary data on detention published by ICE on its website and a detailed and granular dataset of arrests, removals, and overnight populations under ICE custody, released under the Freedom of Information Act and archived by the Deportation Data Project.</p>
<p>The former data, is published online the <a href="https://www.ice.gov/detain/detention-management">ICE Detention Management Division</a>. I have also produced a map of reported facilities based on sixteen years of reporting (eight annual reports and two summary sheets) from ICE.</p>
<p>The newer data covers “every ICE encounter, detainer request, arrest, book-in to detention, and removal” between September 1, 2022 and October 15, 2025.</p>
<p>As becomes clear below, the more extensive data shows that ICE’s public reporting is incomplete, and the uncounted population grew massively during 2025, from hundreds of individuals per night in the final months of the Biden administration to as many as forty-five hundred individuals, and frequently in excess of three thousand in summer and early fall 2025. This unreported network includes over ICE-owned holding facilities, nine dedicated ICE detention centers, local jail and state prisons, federal prisons, and over 200 medical facilities.</p>
<p>The FOIA-supplied data also exceeds ICE’s annual reporting in those facilities that do match by 1,038 detainees per night over the course of FY 2025, though this only amounts to 2% of the total population.</p>
<p>In much oyf this report, facility-level summaries distinguish between facilities with <strong>Peak Population ≥ 2</strong> and those with <strong>Peak Population &lt; 2</strong>. Facilities with no more than one detainees at a time account for many DDP facility codes but negligible population. Separating them keeps attention on facilities with substantive detention activity.</p>
<p><em>This page is part of a larger data project to gather, summarize, and analyze public data about immigration enforcement in the United States. The focus here is detention facilities used by US Immigration and Customs Enforcement (ICE).</em></p>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb1-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(dplyr)</span>
<span id="cb1-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(tidyr)</span>
<span id="cb1-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(ggplot2)</span>
<span id="cb1-4"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(scales)</span>
<span id="cb1-5"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(knitr)</span>
<span id="cb1-6"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(sf)</span>
<span id="cb1-7"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(leaflet)</span>
<span id="cb1-8"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(leafpop)</span>
<span id="cb1-9"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(kableExtra)</span>
<span id="cb1-10"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(leaflet.extras)</span></code></pre></div></div>
</details>
</div>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb2-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Pre-computed data from the ice-detention pipeline.</span></span>
<span id="cb2-2"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Run copy-data.sh to refresh from the pipeline project.</span></span>
<span id="cb2-3">ice_fy25          <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">readRDS</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"data/ice_fy25.rds"</span>)</span>
<span id="cb2-4">ddp_fy25          <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">readRDS</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"data/ddp_fy25.rds"</span>)</span>
<span id="cb2-5">ddp_fy25_keyed    <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">readRDS</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"data/ddp_fy25_keyed.rds"</span>)</span>
<span id="cb2-6">daily_totals      <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">readRDS</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"data/daily_totals.rds"</span>)</span>
<span id="cb2-7">unmatched         <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">readRDS</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"data/unmatched.rds"</span>)</span>
<span id="cb2-8">daily_unmatched   <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">readRDS</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"data/daily_unmatched.rds"</span>)</span>
<span id="cb2-9">monthly_unmatched <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">readRDS</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"data/monthly_unmatched.rds"</span>)</span>
<span id="cb2-10">peak_fy25         <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">readRDS</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"data/peak_fy25.rds"</span>)</span>
<span id="cb2-11">biden_unmatched   <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">readRDS</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"data/biden_unmatched.rds"</span>)</span>
<span id="cb2-12">trump_unmatched   <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">readRDS</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"data/trump_unmatched.rds"</span>)</span>
<span id="cb2-13">daily_unreported  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">readRDS</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"data/daily_unreported.rds"</span>)</span></code></pre></div></div>
</details>
</div>
</section>
<section id="aggregate-comparison" class="level2">
<h2 class="anchored" data-anchor-id="aggregate-comparison">Aggregate comparison</h2>
<p>The DDP data (Deportation Data Project) provides daily facility-level detention counts. To compare with the ICE FY25 annual statistics, we average DDP daily counts from October 1, 2024 through September 24, 2025—the date stamp on the FY25 spreadsheet. On average, the DDP data reflects 2581 more detainees per day than reported in the ICE FY25 annual statistics. As we’ll see below, about 1,000 of these detainees are in facilities that appear in both sources but with higher counts in the DDP data. The rest are in facilities that do not appear at all in the ICE FY25 spreadsheet, accounting for a full-year average of roughly fifteen-hundred detainees per day. However, since the unmatched population grew dramatically during 2025, the daily unmatched population was much higher towards the end of the year.</p>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb3-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">tibble</span>(</span>
<span id="cb3-2">  <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Source      =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ICE FY25 annual stats"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"DDP daily average"</span>),</span>
<span id="cb3-3">  <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Facilities  =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">nrow</span>(ice_fy25), <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">nrow</span>(ddp_fy25)),</span>
<span id="cb3-4">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Total ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(ice_fy25<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>ice_adp, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">na.rm =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>)),</span>
<span id="cb3-5">                   <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(ddp_fy25<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>ddp_adp)))</span>
<span id="cb3-6">) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb3-7">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>()</span></code></pre></div></div>
</details>
<div class="cell-output-display">
<table class="caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">Source</th>
<th style="text-align: right;">Facilities</th>
<th style="text-align: right;">Total ADP</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">ICE FY25 annual stats</td>
<td style="text-align: right;">189</td>
<td style="text-align: right;">47549</td>
</tr>
<tr class="even">
<td style="text-align: left;">DDP daily average</td>
<td style="text-align: right;">768</td>
<td style="text-align: right;">50130</td>
</tr>
</tbody>
</table>
</div>
</div>
<p>The DDP covers 768 facility codes while the ICE spreadsheet lists 189 facilities. The DDP’s higher total reflects the many additional facilities (hold rooms, federal prisons, medical facilities) not included in the ICE annual statistics.</p>
<section id="daily-population-over-time" class="level3">
<h3 class="anchored" data-anchor-id="daily-population-over-time">Daily population over time</h3>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb4-1">fy_breaks <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.Date</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2023-10-01"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-10-01"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2025-10-01"</span>))</span>
<span id="cb4-2">fy_labels <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">data.frame</span>(</span>
<span id="cb4-3">  <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.Date</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-04-01"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2025-04-01"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2025-10-08"</span>)),</span>
<span id="cb4-4">  <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">label =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"FY24"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"FY25"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"FY26"</span>)</span>
<span id="cb4-5">)</span>
<span id="cb4-6"></span>
<span id="cb4-7"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ggplot</span>(daily_totals, <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">aes</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> date, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> total_pop)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb4-8">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">geom_line</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">linewidth =</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.3</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb4-9">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">geom_vline</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">xintercept =</span> fy_breaks, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">linetype =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"dashed"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">alpha =</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.4</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb4-10">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Annual averages as calculated as follows</span></span>
<span id="cb4-11">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># facilities_aggregated$FY24$sum_criminality_levels |&gt; sum()</span></span>
<span id="cb4-12">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># 36276.8</span></span>
<span id="cb4-13">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># facilities_aggregated$FY25$sum_criminality_levels |&gt; sum()</span></span>
<span id="cb4-14">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># 47550.2</span></span>
<span id="cb4-15">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># facilities_aggregated$FY26$sum_criminality_levels |&gt; sum() # taken with February 2026 data</span></span>
<span id="cb4-16">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># 66811.9</span></span>
<span id="cb4-17">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># geom_segment(x=as.Date("2023-10-01"), xend=as.Date("2024-10-01"), </span></span>
<span id="cb4-18">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#              y=36276.8, linetype = "dashed", alpha = 0.4, linewidth=0.1, color = "blue") +</span></span>
<span id="cb4-19">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># geom_segment(x=as.Date("2024-10-01"), xend=as.Date("2025-10-01"),</span></span>
<span id="cb4-20">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#              y=47550.2, linetype = "dashed", alpha = 0.4, linewidth=0.1, color = "blue") +</span></span>
<span id="cb4-21">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># geom_segment(x=as.Date("2025-10-01"), xend=as.Date("2025-11-01"),</span></span>
<span id="cb4-22">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#              y=66811.9, linetype = "dashed", alpha = 0.4, linewidth=0.3, color = "blue") +</span></span>
<span id="cb4-23">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">geom_text</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">data =</span> fy_labels, <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">aes</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> x, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">max</span>(daily_totals<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>total_pop) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">1.04</span>,</span>
<span id="cb4-24">                                   <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">label =</span> label), <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">inherit.aes =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">FALSE</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">size =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb4-25">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scale_y_continuous</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">labels =</span> comma) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb4-26">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">labs</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">NULL</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Total detained population"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output-display">
<div id="fig-daily-total" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-daily-total-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://carwilb.github.io/posts/ddp-comparison/index_files/figure-html/fig-daily-total-1.png" class="img-fluid figure-img" width="672">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-daily-total-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;1: Total ICE detained population per day (DDP data, all facilities)
</figcaption>
</figure>
</div>
</div>
</div>
</section>
</section>
<section id="facility-level-matching" class="level2">
<h2 class="anchored" data-anchor-id="facility-level-matching">Facility-level matching</h2>
<p>ICE uses detainee locator codes, or DETLOCs to keep track of which facilities detainees are housed in. These codes are included in 2015 and 2017 facility lists (describing ICE detention populations from FY 2010 to 2017), in a list maintained by the Deportation Data Project, and in separate lists compiled by the Vera Institute and The Marshall Project. Our data wrangling matched the FY 2019-2026 data to these other lists by exact facility name, address, city and state, and other criteria. All 189 detention facilities listed in the ICE spreadsheet for FY2025 have one or more known DETLOC.</p>
<p>We join the two datasets through canonical facility IDs. Each DDP facility code is mapped to a canonical ID via <code>detloc_lookup_full</code>, which preserves all DETLOC variants from every source (DMCP, DDP, hold/ERO, Vera). Some canonical facilities have multiple codes—for example, Central Arizona Florence Correctional Complex uses <code>CCADCAZ</code> (DMCP) and <code>CCAFLAZ</code> (DDP), and Delaney Hall uses <code>ESSEXNJ</code> (DMCP) and <code>DHDFNJ</code> (DDP). Using the full lookup ensures all codes contribute ADP to the correct facility.</p>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb5-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Aggregate DDP by canonical_id for matched facilities.</span></span>
<span id="cb5-2">ddp_by_canonical <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> ddp_fy25_keyed <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb5-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(in_ice_fy25) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb5-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">group_by</span>(canonical_id) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb5-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">summarise</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">ddp_adp =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(ddp_adp), <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.groups =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"drop"</span>)</span>
<span id="cb5-6"></span>
<span id="cb5-7">comparison <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> ice_fy25 <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb5-8">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># ICE FY25 can have multiple rows per canonical_id (e.g., Adelanto + Desert View Annex)</span></span>
<span id="cb5-9">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">group_by</span>(canonical_id) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb5-10">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">summarise</span>(</span>
<span id="cb5-11">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">canonical_name =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">first</span>(canonical_name),</span>
<span id="cb5-12">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">ice_adp =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(ice_adp, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">na.rm =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>),</span>
<span id="cb5-13">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.groups =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"drop"</span></span>
<span id="cb5-14">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb5-15">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">full_join</span>(ddp_by_canonical, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">by =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"canonical_id"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb5-16">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mutate</span>(</span>
<span id="cb5-17">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">in_ice =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">!</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">is.na</span>(ice_adp),</span>
<span id="cb5-18">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">in_ddp =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">!</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">is.na</span>(ddp_adp),</span>
<span id="cb5-19">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">diff   =</span> ddp_adp <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> ice_adp,</span>
<span id="cb5-20">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">pct_diff =</span> diff <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> ice_adp <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">100</span></span>
<span id="cb5-21">  )</span>
<span id="cb5-22"></span>
<span id="cb5-23">matched <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> comparison <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(in_ice <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&amp;</span> in_ddp)</span>
<span id="cb5-24"></span>
<span id="cb5-25"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">tibble</span>(</span>
<span id="cb5-26">  <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Category =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"In both sources"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ICE only (no DDP match)"</span>,</span>
<span id="cb5-27">               <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Matched: ICE total ADP"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Matched: DDP total ADP"</span>,</span>
<span id="cb5-28">               <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Matched: aggregate difference"</span>),</span>
<span id="cb5-29">  <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Value =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(</span>
<span id="cb5-30">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(comparison<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>in_ice <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&amp;</span> comparison<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>in_ddp),</span>
<span id="cb5-31">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(comparison<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>in_ice <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&amp;</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">!</span>comparison<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>in_ddp),</span>
<span id="cb5-32">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(matched<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>ice_adp, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">na.rm =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>)),</span>
<span id="cb5-33">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(matched<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>ddp_adp, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">na.rm =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>)),</span>
<span id="cb5-34">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(matched<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>ddp_adp, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">na.rm =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span></span>
<span id="cb5-35">                   <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(matched<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>ice_adp, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">na.rm =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>)),</span>
<span id="cb5-36">           <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" ("</span>, <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>((<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(matched<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>ddp_adp, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">na.rm =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span></span>
<span id="cb5-37">                           <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(matched<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>ice_adp, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">na.rm =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">100</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>), <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"%)"</span>)</span>
<span id="cb5-38">  )</span>
<span id="cb5-39">) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb5-40">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>()</span></code></pre></div></div>
</details>
<div class="cell-output-display">
<table class="caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">Category</th>
<th style="text-align: left;">Value</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">In both sources</td>
<td style="text-align: left;">188</td>
</tr>
<tr class="even">
<td style="text-align: left;">ICE only (no DDP match)</td>
<td style="text-align: left;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Matched: ICE total ADP</td>
<td style="text-align: left;">47549</td>
</tr>
<tr class="even">
<td style="text-align: left;">Matched: DDP total ADP</td>
<td style="text-align: left;">48586</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Matched: aggregate difference</td>
<td style="text-align: left;">1037 (2.18%)</td>
</tr>
</tbody>
</table>
</div>
</div>
<section id="facility-level-agreement" class="level3">
<h3 class="anchored" data-anchor-id="facility-level-agreement">Facility-level agreement</h3>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb6-1">both_nonzero <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> matched <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(ice_adp <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, ddp_adp <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>)</span>
<span id="cb6-2"></span>
<span id="cb6-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ggplot</span>(both_nonzero, <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">aes</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> ice_adp, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> ddp_adp)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb6-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">geom_abline</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">slope =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">intercept =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">linetype =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"dashed"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">alpha =</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.5</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb6-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">geom_point</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">alpha =</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.6</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb6-6">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scale_x_log10</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">labels =</span> comma) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb6-7">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scale_y_log10</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">labels =</span> comma) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb6-8">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">labs</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ICE FY25 ADP (annual stats)"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"DDP mean daily population"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output-display">
<div id="fig-scatter" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-scatter-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://carwilb.github.io/posts/ddp-comparison/index_files/figure-html/fig-scatter-1.png" class="img-fluid figure-img" width="672">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-scatter-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;2: FY25 ADP comparison by facility (log scale). Dashed line = perfect agreement.
</figcaption>
</figure>
</div>
</div>
</div>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb7-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">tibble</span>(</span>
<span id="cb7-2">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Agreement band</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Within 10%"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Within 25%"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Within 50%"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&gt;50% difference"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Annual report shows greater value"</span>),</span>
<span id="cb7-3">  <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Facilities =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(</span>
<span id="cb7-4">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">abs</span>(both_nonzero<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>pct_diff) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>),</span>
<span id="cb7-5">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">abs</span>(both_nonzero<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>pct_diff) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&amp;</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">abs</span>(both_nonzero<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>pct_diff) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">25</span>),</span>
<span id="cb7-6">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">abs</span>(both_nonzero<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>pct_diff) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">25</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&amp;</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">abs</span>(both_nonzero<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>pct_diff) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">50</span>),</span>
<span id="cb7-7">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">abs</span>(both_nonzero<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>pct_diff) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">50</span>),</span>
<span id="cb7-8">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(both_nonzero<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>pct_diff <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>)</span>
<span id="cb7-9">  )</span>
<span id="cb7-10">) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb7-11">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>()</span></code></pre></div></div>
</details>
<div class="cell-output-display">
<table class="caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">Agreement band</th>
<th style="text-align: right;">Facilities</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Within 10%</td>
<td style="text-align: right;">115</td>
</tr>
<tr class="even">
<td style="text-align: left;">Within 25%</td>
<td style="text-align: right;">26</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Within 50%</td>
<td style="text-align: right;">30</td>
</tr>
<tr class="even">
<td style="text-align: left;">&gt;50% difference</td>
<td style="text-align: right;">17</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Annual report shows greater value</td>
<td style="text-align: right;">24</td>
</tr>
</tbody>
</table>
</div>
</div>
<p>Among the 188 matched facilities with nonzero ADP in both sources, 115 agree within 10%. The log-scale correlation is 0.998. There are 24 facilities with a lower count in the DDP data and the largest percentage difference in this direction is -4.2%.</p>
<div id="tbl-ice-only" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-ice-only-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;1: ICE FY25 facilities with no DDP match
</figcaption>
<div aria-describedby="tbl-ice-only-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb8-1">ice_only <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> comparison <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(in_ice <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&amp;</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">!</span>in_ddp)</span>
<span id="cb8-2"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> (<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">nrow</span>(ice_only) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>) {</span>
<span id="cb8-3">  ice_only <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb8-4">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">select</span>(canonical_id, canonical_name, ice_adp) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb8-5">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mutate</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">ice_adp =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(ice_adp)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb8-6">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">arrange</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">desc</span>(ice_adp)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb8-7">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">col.names =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ID"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facility"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ICE ADP"</span>))</span>
<span id="cb8-8">}</span></code></pre></div></div>
</details>
</div>
</figure>
</div>
<p>All ICE FY25 facilities have a matching DDP facility code.</p>
</section>
</section>
<section id="sec-unmatched" class="level2">
<h2 class="anchored" data-anchor-id="sec-unmatched">Unmatched facilities</h2>
<p><strong>576</strong> of 768 DDP facility codes do not appear in the ICE FY25 annual statistics. These are facilities where ICE holds detainees but which are excluded from the published spreadsheet.</p>
<section id="by-facility-type" class="level3">
<h3 class="anchored" data-anchor-id="by-facility-type">By facility type</h3>
<p>Facility types are drawn from the Vera Institute’s classification system. “Dedicated” facilities are purpose-built or contractually dedicated to ICE detention. “Non-Dedicated” are county jails and other facilities that also hold ICE detainees. “Hold/Staging” are short-term ERO processing rooms. “Federal” includes BOP prisons and USMS facilities.</p>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb9-1">unmatched <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb9-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">group_by</span>(type_grouped, peak_class) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb9-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">summarise</span>(</span>
<span id="cb9-4">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Facilities =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">n</span>(),</span>
<span id="cb9-5">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">FY25 ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(ddp_adp)),</span>
<span id="cb9-6">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.groups =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"drop"</span></span>
<span id="cb9-7">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb9-8">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">arrange</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">desc</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">FY25 ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span>)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb9-9">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">col.names =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facility type"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak class"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facilities"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"FY25 ADP"</span>))</span></code></pre></div></div>
</details>
<div id="tbl-unmatched-types" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-unmatched-types-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;2: DDP facilities not in ICE FY25, by Vera facility type and ADP class
</figcaption>
<div aria-describedby="tbl-unmatched-types-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">Facility type</th>
<th style="text-align: left;">Peak class</th>
<th style="text-align: right;">Facilities</th>
<th style="text-align: right;">FY25 ADP</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">169</td>
<td style="text-align: right;">1163</td>
</tr>
<tr class="even">
<td style="text-align: left;">Dedicated</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">2</td>
<td style="text-align: right;">170</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Unclassified</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">135</td>
<td style="text-align: right;">140</td>
</tr>
<tr class="even">
<td style="text-align: left;">Federal</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">24</td>
<td style="text-align: right;">31</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">23</td>
<td style="text-align: right;">30</td>
</tr>
<tr class="even">
<td style="text-align: left;">Unclassified</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">185</td>
<td style="text-align: right;">6</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">14</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">Medical</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">1</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Family/Youth</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="even">
<td style="text-align: left;">Family/Youth</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Federal</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">13</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="even">
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">7</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Medical</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">0</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<p>The 576 unmatched facilities account for a full-year ADP of roughly <strong>1,544</strong>. There were 475 facilites that averaged fewer than 2 detainees per day, contributing 136 ADP in total. Among them, 221 facilities never had more than 1 detainee per day, contributing 8 ADP in total.</p>
</section>
<section id="daily-and-monthly-detention-in-unmatched-facilities" class="level3">
<h3 class="anchored" data-anchor-id="daily-and-monthly-detention-in-unmatched-facilities">Daily and monthly detention in unmatched facilities</h3>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb10-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ggplot</span>(daily_unmatched, <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">aes</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> date, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> total_pop)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb10-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">geom_line</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">linewidth =</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.3</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb10-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scale_y_continuous</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">labels =</span> comma) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb10-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scale_x_date</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">date_labels =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"%b %Y"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">date_breaks =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2 months"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb10-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">labs</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">NULL</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Detained population (unmatched facilities)"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output-display">
<div id="fig-daily-unmatched" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-daily-unmatched-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://carwilb.github.io/posts/ddp-comparison/index_files/figure-html/fig-daily-unmatched-1.png" class="img-fluid figure-img" width="672">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-daily-unmatched-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;3: Daily detained population in facilities not in ICE FY25 annual statistics
</figcaption>
</figure>
</div>
</div>
</div>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb11-1">monthly_by_type <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> monthly_unmatched <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb11-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">group_by</span>(month, type_grouped) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb11-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">summarise</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">daily_avg =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(n_detained) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">n_distinct</span>(date), <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.groups =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"drop"</span>)</span>
<span id="cb11-4"></span>
<span id="cb11-5"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ggplot</span>(monthly_by_type, <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">aes</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> month, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> daily_avg, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">fill =</span> type_grouped)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb11-6">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">geom_col</span>() <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb11-7">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scale_y_continuous</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">labels =</span> comma) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb11-8">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scale_x_date</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">date_labels =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"%b %Y"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">date_breaks =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2 months"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb11-9">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">labs</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">NULL</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Average daily population"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">fill =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facility type"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output-display">
<div id="fig-monthly-by-type" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-monthly-by-type-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://carwilb.github.io/posts/ddp-comparison/index_files/figure-html/fig-monthly-by-type-1.png" class="img-fluid figure-img" width="672">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-monthly-by-type-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;4: Average daily population in unmatched facilities, by month and type
</figcaption>
</figure>
</div>
</div>
</div>
</section>
<section id="last-60-days-of-fy25" class="level3">
<h3 class="anchored" data-anchor-id="last-60-days-of-fy25">Last 60 days of FY25</h3>
<p>The final 60 days of the FY25 data window (July 27 – September 24, 2025) capture the period of peak detention.</p>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb12-1">last60_start <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.Date</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2025-07-27"</span>)</span>
<span id="cb12-2">last60_end   <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.Date</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2025-09-24"</span>)</span>
<span id="cb12-3"></span>
<span id="cb12-4">last60 <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> monthly_unmatched <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb12-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(date <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;=</span> last60_start, date <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;=</span> last60_end)</span>
<span id="cb12-6"></span>
<span id="cb12-7">non_empty <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> last60 <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb12-8">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">group_by</span>(detention_facility_code) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb12-9">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">summarise</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">total_detained =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(n_detained), <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.groups =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"drop"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb12-10">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(total_detained <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>)</span>
<span id="cb12-11"></span>
<span id="cb12-12">last60_by_type <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> last60 <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb12-13">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(detention_facility_code <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%in%</span> non_empty<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>detention_facility_code) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb12-14">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">group_by</span>(type_grouped) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb12-15">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">summarise</span>(</span>
<span id="cb12-16">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Facilities =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">n_distinct</span>(detention_facility_code),</span>
<span id="cb12-17">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Daily avg</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(n_detained) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">n_distinct</span>(date)),</span>
<span id="cb12-18">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.groups =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"drop"</span></span>
<span id="cb12-19">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb12-20">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">arrange</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">desc</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Daily avg</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span>))</span>
<span id="cb12-21"></span>
<span id="cb12-22">last60_total <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(last60_by_type<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Daily avg</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span>)</span>
<span id="cb12-23"></span>
<span id="cb12-24">last60_by_type <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb12-25">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">rename</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Facility type</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> type_grouped) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb12-26">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>()</span></code></pre></div></div>
</details>
<div id="tbl-last60" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-last60-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;3: Average daily population in unmatched facilities, last 60 days of FY25
</figcaption>
<div aria-describedby="tbl-last60-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">Facility type</th>
<th style="text-align: right;">Facilities</th>
<th style="text-align: right;">Daily avg</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">162</td>
<td style="text-align: right;">1987</td>
</tr>
<tr class="even">
<td style="text-align: left;">Dedicated</td>
<td style="text-align: right;">2</td>
<td style="text-align: right;">692</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">180</td>
<td style="text-align: right;">334</td>
</tr>
<tr class="even">
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">30</td>
<td style="text-align: right;">75</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">22</td>
<td style="text-align: right;">52</td>
</tr>
<tr class="even">
<td style="text-align: left;">Medical</td>
<td style="text-align: right;">2</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Family/Youth</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">0</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<p>In the last 60 days, <strong>3,142</strong> people per day were held in facilities absent from the ICE FY25 annual statistics.</p>
</section>
<section id="peak-fy25-population-by-facility" class="level3">
<h3 class="anchored" data-anchor-id="peak-fy25-population-by-facility">Peak FY25 population by facility</h3>
<p>This table of the facilities with the largest peak population in FY 2025 help us make sense of th unreported population. A variety of different kinds of facilities play a roll:</p>
<ul>
<li><p>New Federal facilities like the El Paso Soft-Sided Facility (<code>ELPASOFS</code>), which is distinct from the El Paso Processing Center (<code>EPC</code>) and Camp East Montana (<code>EROFCB</code>), held large numbers of detainees. This new facility was not added to the FY2025 statistics and was supplanted by Camp East Montana before the new fiscal year. The Ursula Centralized Processing Center, formally associated with Customs and Border Patrol, is listed as holding an average of 32 and a mamximum of 463 ICE detainees.</p></li>
<li><p>Dedicated ICE detention centers supplied by states, like the Baker Correctional Institution (<code>FLBAKCI</code>), a Florida state prison that was turned over to use by ICE in 2025, and held as many as 294 prisoners in FY 2025. The Florida Soft-Sided Facility (<code>FLDSSFS</code>, also known as Alligator Alcatraz was the sceond largest unreported facility, with a peak population of 1,482 detainees on July 30, 2025. These facilities were added to the FY 2026 statistics but left off the 2025 document.</p></li>
<li><p>Holding facilities associated with airports like the Krome Hold Room (<code>KROHOLD</code>) near Miami International Airport. This was one of the few facilities used at a large scale in the final days of the Biden administration. The Arizona Removal Operations Coordination Center (AROCC) operates at the Phoenix-Mesa Gateway Airport. As with other hold rooms, these facilities were reportedly exceeding the 12-hour limit on detention time.</p></li>
<li><p>Field Offices and Sub-Offices of the Enforcement and Removal Operations (ERO) division of ICE, which are not designed for long-term detention but which held large numbers of detainees during the surge in 2025. This shift coincided with new ICE guidance authorizing detention up to 72 hours, but preceded the new permission and exceeded its limits.</p></li>
<li><p>A handful of local prisons were used to hold ICE detainees en masse, including the Richwood Correctional Center (<code>RICHWOOD</code>) in Louisiana, which held up to 1,200 detainees at a time.</p></li>
</ul>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb13-1">peak_fy25 <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb13-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">arrange</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">desc</span>(peak_pop)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb13-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">head</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">20</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb13-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">select</span>(detention_facility, state, type_grouped, peak_pop, peak_date, mean_pop) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb13-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">col.names =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facility"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"State"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Type"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak date"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Mean ADP"</span>))</span></code></pre></div></div>
</details>
<div id="tbl-peak-top20" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-peak-top20-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;4: Top 20 unmatched facilities by FY25 peak detained population
</figcaption>
<div aria-describedby="tbl-peak-top20-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<colgroup>
<col style="width: 44%">
<col style="width: 7%">
<col style="width: 16%">
<col style="width: 6%">
<col style="width: 13%">
<col style="width: 11%">
</colgroup>
<thead>
<tr class="header">
<th style="text-align: left;">Facility</th>
<th style="text-align: left;">State</th>
<th style="text-align: left;">Type</th>
<th style="text-align: right;">Peak</th>
<th style="text-align: left;">Peak date</th>
<th style="text-align: right;">Mean ADP</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">EL PASO SOFT SIDED FACILITY</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">1606</td>
<td style="text-align: left;">2025-08-12</td>
<td style="text-align: right;">243.2</td>
</tr>
<tr class="even">
<td style="text-align: left;">FLORIDA SOFT-SIDED FACILITY-SOUTH</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Dedicated</td>
<td style="text-align: right;">1482</td>
<td style="text-align: left;">2025-07-30</td>
<td style="text-align: right;">170.3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">KROME HOLD ROOM</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">600</td>
<td style="text-align: left;">2025-02-17</td>
<td style="text-align: right;">36.5</td>
</tr>
<tr class="even">
<td style="text-align: left;">URSULA CENTRALIZED PROCESSING CNTR</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">463</td>
<td style="text-align: left;">2025-07-11</td>
<td style="text-align: right;">31.6</td>
</tr>
<tr class="odd">
<td style="text-align: left;">LOS CUST CASE</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">455</td>
<td style="text-align: left;">2025-07-11</td>
<td style="text-align: right;">58.7</td>
</tr>
<tr class="even">
<td style="text-align: left;">BAKER C. I.</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">294</td>
<td style="text-align: left;">2025-09-24</td>
<td style="text-align: right;">15.7</td>
</tr>
<tr class="odd">
<td style="text-align: left;">RICHMOND SUB-OFFICE HOLD</td>
<td style="text-align: left;">VA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">277</td>
<td style="text-align: left;">2025-09-07</td>
<td style="text-align: right;">16.2</td>
</tr>
<tr class="even">
<td style="text-align: left;">BROADVIEW SERVICE STAGING</td>
<td style="text-align: left;">IL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">245</td>
<td style="text-align: left;">2025-09-20</td>
<td style="text-align: right;">31.7</td>
</tr>
<tr class="odd">
<td style="text-align: left;">NYC HOLD ROOM</td>
<td style="text-align: left;">NY</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">228</td>
<td style="text-align: left;">2025-06-05</td>
<td style="text-align: right;">40.9</td>
</tr>
<tr class="even">
<td style="text-align: left;">DALLAS F.O. HOLD</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">225</td>
<td style="text-align: left;">2025-09-18</td>
<td style="text-align: right;">53.1</td>
</tr>
<tr class="odd">
<td style="text-align: left;">MONTGOMERY HOLD RM</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">221</td>
<td style="text-align: left;">2025-08-21</td>
<td style="text-align: right;">50.0</td>
</tr>
<tr class="even">
<td style="text-align: left;">BOSTON HOLDROOM</td>
<td style="text-align: left;">MA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">206</td>
<td style="text-align: left;">2025-05-13</td>
<td style="text-align: right;">18.6</td>
</tr>
<tr class="odd">
<td style="text-align: left;">AZ REM OP COORD CENTER (AROCC)</td>
<td style="text-align: left;">AZ</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">195</td>
<td style="text-align: left;">2025-04-30</td>
<td style="text-align: right;">37.4</td>
</tr>
<tr class="even">
<td style="text-align: left;">MIAMI STAGING FACILITY</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">176</td>
<td style="text-align: left;">2025-01-31</td>
<td style="text-align: right;">16.5</td>
</tr>
<tr class="odd">
<td style="text-align: left;">ATLANTA DIST. HOLD RM</td>
<td style="text-align: left;">GA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">168</td>
<td style="text-align: left;">2025-06-25</td>
<td style="text-align: right;">42.1</td>
</tr>
<tr class="even">
<td style="text-align: left;">SANTA ANA DRO HOLDROOM</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">150</td>
<td style="text-align: left;">2025-06-11</td>
<td style="text-align: right;">11.3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">SAN ANTONIO DRO HOLD ROOM</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">145</td>
<td style="text-align: left;">2025-06-04</td>
<td style="text-align: right;">19.6</td>
</tr>
<tr class="even">
<td style="text-align: left;">INDIANAPOLIS HOLD ROOM</td>
<td style="text-align: left;">IN</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">130</td>
<td style="text-align: left;">2025-09-19</td>
<td style="text-align: right;">12.3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">WASHINGTON FIELD OFFICE</td>
<td style="text-align: left;">VA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">127</td>
<td style="text-align: left;">2025-08-23</td>
<td style="text-align: right;">17.3</td>
</tr>
<tr class="even">
<td style="text-align: left;">ORLANDO HOLD ROOM</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">126</td>
<td style="text-align: left;">2025-06-04</td>
<td style="text-align: right;">19.6</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb14-1">peak_fy25 <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb14-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(peak_pop <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb14-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ggplot</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">aes</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> peak_pop)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb14-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">geom_histogram</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">bins =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">40</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb14-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scale_x_log10</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">labels =</span> comma) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb14-6">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">labs</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak detained population (FY25)"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facilities"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output-display">
<div id="fig-peak-dist" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-peak-dist-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://carwilb.github.io/posts/ddp-comparison/index_files/figure-html/fig-peak-dist-1.png" class="img-fluid figure-img" width="672">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-peak-dist-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;5: Distribution of FY25 peak population among unmatched facilities (log scale, facilities with peak &gt; 0)
</figcaption>
</figure>
</div>
</div>
</div>
</section>
</section>
<section id="map-of-unmatched-facilities-in-fy25" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="map-of-unmatched-facilities-in-fy25">Map of unmatched facilities in FY25</h2>
<div class="column-screen-inset-right">
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb15-1">map_data <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> peak_fy25 <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb15-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(peak_pop <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">!</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">is.na</span>(latitude), <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">!</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">is.na</span>(longitude))</span>
<span id="cb15-3"></span>
<span id="cb15-4">map_sf <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">st_as_sf</span>(map_data, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">coords =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"longitude"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"latitude"</span>), <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">crs =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4326</span>)</span>
<span id="cb15-5"></span>
<span id="cb15-6">type_colors <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(</span>
<span id="cb15-7">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Dedicated"</span>     <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"#e41a1c"</span>,</span>
<span id="cb15-8">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Non-Dedicated"</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"#377eb8"</span>,</span>
<span id="cb15-9">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Federal"</span>       <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"#4daf4a"</span>,</span>
<span id="cb15-10">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Hold/Staging"</span>  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"#ff7f00"</span>,</span>
<span id="cb15-11">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Family/Youth"</span>  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"#984ea3"</span>,</span>
<span id="cb15-12">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Medical"</span>       <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"#a65628"</span>,</span>
<span id="cb15-13">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Other/Unknown"</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"#999999"</span>,</span>
<span id="cb15-14">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Unclassified"</span>  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"#333333"</span></span>
<span id="cb15-15">)</span>
<span id="cb15-16"></span>
<span id="cb15-17">map_sf<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>type_grouped <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">factor</span>(map_sf<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>type_grouped, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">levels =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">names</span>(type_colors))</span>
<span id="cb15-18">present_levels <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">levels</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">droplevels</span>(map_sf<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>type_grouped))</span>
<span id="cb15-19">pal <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">colorFactor</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">palette =</span> type_colors[present_levels], <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">domain =</span> present_levels)</span>
<span id="cb15-20"></span>
<span id="cb15-21"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># sqrt scale for area-proportional circle sizing</span></span>
<span id="cb15-22">radii <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> scales<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">rescale</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sqrt</span>(map_sf<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>peak_pop), <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">to =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">20</span>))</span>
<span id="cb15-23"></span>
<span id="cb15-24">map_sf<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>peak_class <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">factor</span>(map_sf<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>peak_class, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">levels =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak &lt; 2"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak ≥ 2"</span>))</span>
<span id="cb15-25"></span>
<span id="cb15-26"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">leaflet</span>(map_sf) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb15-27">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">fitBounds</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">lng1 =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">125</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">lat1 =</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">17.5</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">lng2 =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">65</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">lat2 =</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">49.5</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb15-28">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">addProviderTiles</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"CartoDB.Positron"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb15-29"></span>
<span id="cb15-30">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Layer 1: Peak &lt; 2  (small solid points, no border)</span></span>
<span id="cb15-31">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">addCircleMarkers</span>(</span>
<span id="cb15-32">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">data        =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">subset</span>(map_sf, peak_class <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak &lt; 2"</span>),</span>
<span id="cb15-33">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">radius      =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>,                <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># small fixed dot</span></span>
<span id="cb15-34">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">stroke      =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">FALSE</span>,            <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># &lt;- no outer border</span></span>
<span id="cb15-35">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">fillColor   =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">pal</span>(type_grouped),</span>
<span id="cb15-36">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">fillOpacity =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>,                <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># solid</span></span>
<span id="cb15-37">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">label       =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(detention_facility, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" ("</span>, state, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">": peak "</span>, peak_pop, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">")"</span>),</span>
<span id="cb15-38">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">popup       =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(</span>
<span id="cb15-39">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&lt;b&gt;"</span>, detention_facility, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&lt;/b&gt;&lt;br&gt;"</span>,</span>
<span id="cb15-40">      state, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" | "</span>, type_grouped, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&lt;br&gt;"</span>,</span>
<span id="cb15-41">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak: "</span>, peak_pop, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" ("</span>, peak_date, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">")&lt;br&gt;"</span>,</span>
<span id="cb15-42">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Mean ADP: "</span>, mean_pop</span>
<span id="cb15-43">    ),</span>
<span id="cb15-44">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">group =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak &lt; 2"</span></span>
<span id="cb15-45">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb15-46"></span>
<span id="cb15-47">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Layer 2: Peak ≥ 2</span></span>
<span id="cb15-48">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">addCircleMarkers</span>(</span>
<span id="cb15-49">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">data        =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">subset</span>(map_sf, peak_class <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak ≥ 2"</span>),</span>
<span id="cb15-50">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">radius      =</span> radii[map_sf<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>peak_class <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak ≥ 2"</span>],</span>
<span id="cb15-51">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">color       =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"black"</span>,</span>
<span id="cb15-52">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">weight      =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>,</span>
<span id="cb15-53">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">fillColor   =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">pal</span>(type_grouped),</span>
<span id="cb15-54">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">fillOpacity =</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.7</span>,</span>
<span id="cb15-55">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">label       =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(detention_facility, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" ("</span>, state, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">": peak "</span>, peak_pop, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">")"</span>),</span>
<span id="cb15-56">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">popup       =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(</span>
<span id="cb15-57">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&lt;b&gt;"</span>, detention_facility, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&lt;/b&gt;&lt;br&gt;"</span>,</span>
<span id="cb15-58">      state, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" | "</span>, type_grouped, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&lt;br&gt;"</span>,</span>
<span id="cb15-59">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak: "</span>, peak_pop, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" ("</span>, peak_date, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">")&lt;br&gt;"</span>,</span>
<span id="cb15-60">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Mean ADP: "</span>, mean_pop</span>
<span id="cb15-61">    ),</span>
<span id="cb15-62">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">group =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak ≥ 2"</span></span>
<span id="cb15-63">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb15-64"></span>
<span id="cb15-65">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Keep your facility-type legend</span></span>
<span id="cb15-66">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">addLegend</span>(</span>
<span id="cb15-67">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">pal =</span> pal, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">values =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span>type_grouped,</span>
<span id="cb15-68">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">title =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facility type"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">position =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"bottomright"</span></span>
<span id="cb15-69">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb15-70"></span>
<span id="cb15-71">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Add the layer toggle</span></span>
<span id="cb15-72">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">addLayersControl</span>(</span>
<span id="cb15-73">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">overlayGroups =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak &lt; 2"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak ≥ 2"</span>),</span>
<span id="cb15-74">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">options =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">layersControlOptions</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">collapsed =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">FALSE</span>)</span>
<span id="cb15-75">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb15-76">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">addSearchFeatures</span>(</span>
<span id="cb15-77">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">targetGroups =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak &lt; 2"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak ≥ 2"</span>),</span>
<span id="cb15-78">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">options =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">searchFeaturesOptions</span>(</span>
<span id="cb15-79">      <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">zoom =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">9</span>,</span>
<span id="cb15-80">      <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">openPopup =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>,</span>
<span id="cb15-81">      <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">position =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"topleft"</span>,</span>
<span id="cb15-82">      <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">hideMarkerOnCollapse =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span></span>
<span id="cb15-83">    )) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb15-84">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">addControl</span>(</span>
<span id="cb15-85">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">position =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"bottomright"</span>,</span>
<span id="cb15-86">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">html =</span> htmltools<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span>tags<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">style</span>(htmltools<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">HTML</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span></span>
<span id="cb15-87"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">      /* Force legend text left in Quarto/Bootstrap contexts */</span></span>
<span id="cb15-88"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">      .leaflet-container .leaflet-control {</span></span>
<span id="cb15-89"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        text-align: left !important;</span></span>
<span id="cb15-90"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">      }</span></span>
<span id="cb15-91"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">      .leaflet-container .leaflet-control .legend {</span></span>
<span id="cb15-92"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        text-align: left !important;</span></span>
<span id="cb15-93"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">      }</span></span>
<span id="cb15-94"></span>
<span id="cb15-95"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">      /* Make the color swatch and label behave like a left-aligned row */</span></span>
<span id="cb15-96"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">      .leaflet-container .leaflet-control .legend i {</span></span>
<span id="cb15-97"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        display: inline-block !important;</span></span>
<span id="cb15-98"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        width: 14px !important;</span></span>
<span id="cb15-99"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        height: 14px !important;</span></span>
<span id="cb15-100"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        margin: 0 8px 0 0 !important;</span></span>
<span id="cb15-101"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        vertical-align: middle !important;</span></span>
<span id="cb15-102"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">      }</span></span>
<span id="cb15-103"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">      .leaflet-container .leaflet-control .legend span {</span></span>
<span id="cb15-104"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        display: inline !important;</span></span>
<span id="cb15-105"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        vertical-align: middle !important;</span></span>
<span id="cb15-106"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">      }</span></span>
<span id="cb15-107"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    "</span>)))</span></code></pre></div></div>
</details>
<div id="fig-map" class="cell-output-display quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-map-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-4317ccb69be884af89a1" style="width:100%;height:650px;"></div>
<script type="application/json" data-for="htmlwidget-4317ccb69be884af89a1">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"fitBounds":[17.5,-125,49.5,-65,[]],"calls":[{"method":"addProviderTiles","args":["CartoDB.Positron",null,null,{"errorTileUrl":"","noWrap":false,"detectRetina":false}]},{"method":"addCircleMarkers","args":[[40.1917752,38.7981291,32.8420841,45.7836118,36.9886172,29.9542788,32.8460024,36.8682675,35.179783,43.0201451,34.4181788,32.3029629,39.3658822,42.596401,40.9242015,33.1771862,25.773994,29.4651997,26.0757281,40.6048678,32.3819047,35.6221933,31.85131,39.3714749,38.2754264,38.7519901,35.115385,41.509035,33.7482944,15.1567839,34.1023852,34.0265493,37.2165677,30.1967424,39.9865257],[-75.915868,-77.0646527,-97.13133500000001,-108.5095733,-86.48028640000001,-82.1085483,-80.01401620000001,-87.490437,-107.907649,-78.2023932,-85.7729963,-106.8056701,-77.41307570000001,-72.61253189999999,-98.3432364,-99.7217295,-80.195019,-82.6408105,-97.512372,-75.4664248,-86.29798959999999,-95.97454980000001,-92.28482,-94.78011720000001,-104.6106011,-77.4799665,-101.8680283,-90.58090900000001,-117.8744444,145.7028775,-117.2740451,-90.4462432,-76.60355729999999,-84.3771057,-76.6609023],3,null,"Peak < 2",{"interactive":true,"className":"","stroke":false,"color":"#03F","weight":5,"opacity":0.5,"fill":true,"fillColor":["#377EB8","#4DAF4A","#A65628","#FF7F00","#FF7F00","#A65628","#4DAF4A","#4DAF4A","#A65628","#FF7F00","#4DAF4A","#A65628","#A65628","#4DAF4A","#FF7F00","#4DAF4A","#FF7F00","#A65628","#FF7F00","#984EA3","#A65628","#A65628","#A65628","#A65628","#4DAF4A","#4DAF4A","#4DAF4A","#4DAF4A","#A65628","#FF7F00","#4DAF4A","#4DAF4A","#4DAF4A","#A65628","#A65628"],"fillOpacity":1},null,null,["<b>ABRAXAS ACADEMY DETENTION CENTER<\/b><br>PA | Family/Youth<br>Peak: 1 (2025-08-30)<br>Mean ADP: 0","<b>ALEXANDRIA CITY JAIL<\/b><br>VA | Federal<br>Peak: 1 (2025-05-21)<br>Mean ADP: 0","<b>BEDFORD CITY JAIL<\/b><br>TX | Non-Dedicated<br>Peak: 1 (2025-08-16)<br>Mean ADP: 0","<b>BILLINGS HOLD ROOM<\/b><br>MT | Hold/Staging<br>Peak: 1 (2025-06-21)<br>Mean ADP: 0","<b>BOWLING GREEN HOLD ROOM<\/b><br>KY | Hold/Staging<br>Peak: 1 (2024-10-09)<br>Mean ADP: 0","<b>BRADFORD COUNTY JAIL<\/b><br>FL | Non-Dedicated<br>Peak: 1 (2025-01-14)<br>Mean ADP: 0","<b>CHARLESTON COUNTY CORRECT<\/b><br>SC | Federal<br>Peak: 1 (2025-03-15)<br>Mean ADP: 0","<b>CHRISTIAN COUNTY JAIL<\/b><br>KY | Federal<br>Peak: 1 (2025-09-18)<br>Mean ADP: 0","<b>CIBOLA COUNTY DET CTR<\/b><br>NM | Non-Dedicated<br>Peak: 1 (2025-05-11)<br>Mean ADP: 0","<b>BATAVIA COMMAND CENTER HOLDROOM<\/b><br>NY | Hold/Staging<br>Peak: 1 (2024-11-08)<br>Mean ADP: 0","<b>DEKALB COUNTY DETENTION CENTER<\/b><br>AL | Federal<br>Peak: 1 (2025-08-09)<br>Mean ADP: 0","<b>DONA ANA COUNTY DETENTION FACILITY<\/b><br>NM | Non-Dedicated<br>Peak: 1 (2025-04-24)<br>Mean ADP: 0.4","<b>FREDERICK COUNTY DET. CEN<\/b><br>MD | Non-Dedicated<br>Peak: 1 (2024-11-30)<br>Mean ADP: 0","<b>FRANKLIN HOUSE OF CORRECTIONS<\/b><br>MA | Federal<br>Peak: 1 (2025-08-09)<br>Mean ADP: 0","<b>GRAND ISLAND HOLD ROOM<\/b><br>NE | Hold/Staging<br>Peak: 1 (2025-06-25)<br>Mean ADP: 0","<b>ROLLING PLAINS DETENTION CENTER<\/b><br>TX | Federal<br>Peak: 1 (2024-11-21)<br>Mean ADP: 0","<b>MIAMI BORDER PATROL<\/b><br>FL | Hold/Staging<br>Peak: 1 (2025-07-02)<br>Mean ADP: 0","<b>LEVY COUNTY JAIL<\/b><br>FL | Non-Dedicated<br>Peak: 1 (2024-12-03)<br>Mean ADP: 0","<b>LOS FRESNOS HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 1 (2024-11-11)<br>Mean ADP: 0","<b>LEHIGH VALLEY HOSPITAL - POCONO<\/b><br>PA | Medical<br>Peak: 1 (2024-10-01)<br>Mean ADP: 0","<b>MONTGOMERY CITY JAIL<\/b><br>AL | Non-Dedicated<br>Peak: 1 (2025-01-07)<br>Mean ADP: 0","<b>OKMULGEE COUNTY JAIL<\/b><br>OK | Non-Dedicated<br>Peak: 1 (2025-09-23)<br>Mean ADP: 0","<b>LASALLE CORR CTR OLLA<\/b><br>LA | Non-Dedicated<br>Peak: 1 (2025-02-22)<br>Mean ADP: 0","<b>PLATTE COUNTY JAIL<\/b><br>MO | Non-Dedicated<br>Peak: 1 (2025-03-07)<br>Mean ADP: 0","<b>PUEBLO COUNTY JAIL<\/b><br>CO | Federal<br>Peak: 1 (2025-05-14)<br>Mean ADP: 0","<b>PRINCE WILLIAM<\/b><br>VA | Federal<br>Peak: 1 (2025-01-04)<br>Mean ADP: 0","<b>RANDALL COUNTY JAIL<\/b><br>TX | Federal<br>Peak: 1 (2025-04-26)<br>Mean ADP: 0","<b>ROCK ISLAND COUNTY JAIL<\/b><br>IL | Federal<br>Peak: 1 (2025-08-15)<br>Mean ADP: 0","<b>SANTA ANA CITY JAIL<\/b><br>CA | Non-Dedicated<br>Peak: 1 (2025-05-08)<br>Mean ADP: 0","<b>SAIPAIN HOLD<\/b><br>MP | Hold/Staging<br>Peak: 1 (2024-11-15)<br>Mean ADP: 0","<b>SAN BERNARDINO CO. JAIL<\/b><br>CA | Federal<br>Peak: 1 (2025-08-09)<br>Mean ADP: 0","<b>TALLAHATCHIE CO CORR FACILITY<\/b><br>MS | Federal<br>Peak: 1 (2025-05-07)<br>Mean ADP: 0","<b>VIRGINIA PENINSULA REG. JAIL<\/b><br>VA | Federal<br>Peak: 1 (2025-07-11)<br>Mean ADP: 0","<b>WAKULLA COUNTY JAIL<\/b><br>FL | Non-Dedicated<br>Peak: 1 (2025-05-07)<br>Mean ADP: 0","<b>YORK COUNTY JAIL, PA<\/b><br>PA | Non-Dedicated<br>Peak: 1 (2024-10-01)<br>Mean ADP: 1"],null,["ABRAXAS ACADEMY DETENTION CENTER (PA: peak 1)","ALEXANDRIA CITY JAIL (VA: peak 1)","BEDFORD CITY JAIL (TX: peak 1)","BILLINGS HOLD ROOM (MT: peak 1)","BOWLING GREEN HOLD ROOM (KY: peak 1)","BRADFORD COUNTY JAIL (FL: peak 1)","CHARLESTON COUNTY CORRECT (SC: peak 1)","CHRISTIAN COUNTY JAIL (KY: peak 1)","CIBOLA COUNTY DET CTR (NM: peak 1)","BATAVIA COMMAND CENTER HOLDROOM (NY: peak 1)","DEKALB COUNTY DETENTION CENTER (AL: peak 1)","DONA ANA COUNTY DETENTION FACILITY (NM: peak 1)","FREDERICK COUNTY DET. CEN (MD: peak 1)","FRANKLIN HOUSE OF CORRECTIONS (MA: peak 1)","GRAND ISLAND HOLD ROOM (NE: peak 1)","ROLLING PLAINS DETENTION CENTER (TX: peak 1)","MIAMI BORDER PATROL (FL: peak 1)","LEVY COUNTY JAIL (FL: peak 1)","LOS FRESNOS HOLD ROOM (TX: peak 1)","LEHIGH VALLEY HOSPITAL - POCONO (PA: peak 1)","MONTGOMERY CITY JAIL (AL: peak 1)","OKMULGEE COUNTY JAIL (OK: peak 1)","LASALLE CORR CTR OLLA (LA: peak 1)","PLATTE COUNTY JAIL (MO: peak 1)","PUEBLO COUNTY JAIL (CO: peak 1)","PRINCE WILLIAM (VA: peak 1)","RANDALL COUNTY JAIL (TX: peak 1)","ROCK ISLAND COUNTY JAIL (IL: peak 1)","SANTA ANA CITY JAIL (CA: peak 1)","SAIPAIN HOLD (MP: peak 1)","SAN BERNARDINO CO. JAIL (CA: peak 1)","TALLAHATCHIE CO CORR FACILITY (MS: peak 1)","VIRGINIA PENINSULA REG. JAIL (VA: peak 1)","WAKULLA COUNTY JAIL (FL: peak 1)","YORK COUNTY JAIL, PA (PA: peak 1)"],{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addCircleMarkers","args":[[35.0522552,13.4760946,18.4962828,42.7653031,37.4893878,35.115385,61.2185041,61.212362,33.7475641,33.749609,32.2035715,30.2693858,33.452963,30.8852959,39.2879833,33.4792816,35.3736714,43.5942506,18.4235781,42.4825992,26.1161559,27.2482081,41.8680102,32.2248668,42.8911691,41.7351513,47.466362,42.8911691,35.4090546,18.3403438,33.3515168,41.87539049999999,32.8463863,45.0068737,41.1368016,39.2382289,40.7594706,41.5049609,39.9624569,35.2226924,35.1059466,34.0088782,33.9084065,40.5136142,41.9745858,27.7795664,38.8332903,42.8523725,32.8238894,39.6015038,42.3310002,29.3927093,33.057249,41.5856411,37.2371432,39.1536338,31.7584731,31.80421399999999,31.883642,34.015507,44.0524622,36.10463,48.82974489999999,37.9676572,30.214814,25.86434,26.548482,40.001549,40.08207549999999,36.7326978,35.3354817,34.7404942,35.257809,39.0871873,34.1473511,47.924267,42.97265429999999,34.9393051,39.5582742,43.665091,41.7613805,38.4271142,46.5937137,35.3187546,21.2999288,27.959392,26.1776479,29.9375017,43.5147311,32.8266637,39.7659792,33.4183833,32.2902501,30.2566701,31.549304,39.2686641,28.8837901,28.884651,35.9232411,25.75434,25.7581461,41.1347715,32.3473177,44.3742947,33.5841136,38.9718009,34.053793,38.2531573,34.7211076,27.5292214,36.1641801,42.9984836,27.1719467,26.2639943,42.3255106,35.1563308,25.9827432,31.994141,43.0471532,42.5350478,31.994141,39.93274359999999,30.695111,24.576552,32.3743852,25.7783254,30.3360804,41.5157485,40.7304926,29.9857549,36.87616999999999,41.1345586,36.2251232,40.7152635,36.2206495,30.8310871,41.2205835,35.4236398,41.2820726,28.4281216,31.3981762,31.75103519999999,39.9538838,33.4708461,40.4248324,41.3885184,42.05559290000001,43.5788489,45.51504569999999,32.42078539,41.7357562,40.1488668,38.4265663,37.5429144,35.7897748,40.5749834,39.5711833,26.1569011,46.27814770000001,41.509035,37.2923927,37.2711908,44.1007278,33.3980667,33.7484501,38.57800230000001,31.4215029,18.4078569,38.4105074,40.481929,34.1006917,47.4907997,43.5499676,37.7962167,37.1197342,43.0185162,18.437531,40.7062912,34.918106,29.517042,32.7143776,37.3080994,37.2518247,44.8941668,47.66582,44.8014691,28.8973835,37.9512028,38.6243789,27.1628237,42.505249,43.0468521,30.4719963,27.959392,38.943053,42.5625826,25.8101315,31.4635264,32.586731,33.1546792,35.4074582,32.1356653,36.139538,33.4208569,29.373265,34.2063593,40.7282753,32.5136216,38.9114848,31.5532338,33.7531536,37.6912501,46.6183336,41.2239063,39.4373784,46.6183336,39.9849944,32.6565319],[-106.6270349,144.750006,-67.1355075,-73.8121646,-105.8597721,-101.8680283,-149.8573539,-149.8722992,-84.3955253,-84.39734609999999,-95.8558275,-97.73903919999999,-112.025979,-87.774794,-76.616563,-86.7899669,-119.0112192,-116.2875233,-66.1036671,-71.20881349999999,-80.1424222,-98.1249164,-87.8659385,-101.5140425,-78.8769453,-111.8361612,-111.380434,-78.8769453,-80.5782942,-64.9265683,-104.5043043,-87.6309402,-80.0199001,-73.4558729,-104.8198764,-84.380236,-73.1909642,-81.69177239999999,-83.0021146,-80.83722440000001,-85.29861769999999,-81.0401775,-84.5809412,-107.5451612,-91.6691514,-97.54361230000001,-104.8172348,-106.3242133,-96.8720089,-104.8449885,-83.05871789999999,-100.8988898,-80.221052,-93.62360080000001,-107.874248,-75.4882617,-106.4831939,-106.2910235,-106.440946,-86.01235659999999,-123.0885813,-94.178449,-122.5553748,-100.8759294,-82.372328,-80.89795599999999,-81.8109453,-77.64440999999999,-104.9849103,-119.7856018,-94.38919970000001,-97.2220938,-81.1822263,-108.5858668,-118.2491447,-97.0353236,-85.67052609999999,-82.24697139999999,-107.3582581,-116.6817811,-72.6734969,-78.8495901,-111.9724396,-82.467828,-157.8638944,-82.37207239999999,-97.714091,-95.40658999999999,-112.0339375,-115.5793027,-86.15315729999999,-111.8375752,-90.05970979999999,-81.5900041,-97.081435,-94.6755746,-97.9119663,-97.91529800000001,-84.07938129999999,-80.48913,-80.35093879999999,-104.8201135,-106.7626739,-103.7295749,-101.8450548,-90.96271609999999,-118.2397435,-85.76081689999999,-92.2249691,-99.447934,-115.1435135,-71.46629639999999,-80.24193769999999,-98.1982091,-122.8772236,-89.88122030000001,-80.33946019999999,-102.0750416,-87.9080261,-113.7911723,-102.0750416,-74.9576161,-88.041554,-81.75143799999999,-86.30494399999999,-80.1990136,-95.4425066,-74.1110231,-74.17423119999999,-90.2854711,-76.22287609999999,-100.7607001,-86.7865862,-74.00375459999999,-115.9869885,-92.65038920000001,-112.0191482,-97.59751919999999,-95.8987599,-81.3331197,-103.5214509,-106.4868749,-75.15313019999999,-112.0731981,-79.96081099999999,-75.0724974,-104.9522605,-70.3604263,-122.67631,-97.19690233999999,-71.4411413,-111.6597178,-105.1156314,-77.43404769999999,-78.77960730000001,-122.3626062,-119.8111143,-97.35055610000001,-119.2763319,-90.58090900000001,-80.06114029999999,-79.9471628,-103.2667352,-104.5248121,-117.8749858,-121.4999684,-100.4638024,-66.1074296,-75.571609,-96.9608662,-117.2972977,-122.2914497,-96.7233919,-122.401521,-113.5534693,-96.07665849999999,-66.00470300000001,-111.9461895,-120.444791,-98.4366327,-117.1645829,-121.8675044,-93.1678639,-93.1948264,-117.4181833,-73.0734028,-99.1187908,-121.2900671,-90.2003828,-80.221999,-96.4047597,-76.1516563,-84.35514119999999,-82.37207239999999,-105.1513323,-114.4338469,-80.3113644,-100.4398316,-97.3168944,-94.97105120000001,-89.54861219999999,-110.9248046,-95.86430900000001,-94.0431833,-100.847867,-119.0772538,-74.00556619999999,-93.74924059999999,-77.45867679999999,-97.1334651,-118.0010421,-97.3396394,-120.5593593,-77.0718055,-77.96108959999999,-120.5593593,-76.7579657,-114.6117867],[5.483420118779979,3.435061561946088,5.934910806038285,4.305184685838265,3.716003135966583,4.358743211603835,5.417827884802192,3.537765664962601,3.318487167764811,8.203980779687726,4.192789745010902,5.579133356897509,3.318487167764811,4.867067833879256,7.330799065679987,4.410748322168053,5.61036937167653,3.795478360796673,4.305184685838265,8.80924655927053,4.192789745010902,6.692294812474142,9.374729026414737,3.940723896193989,5.483420118779979,4.133575207633986,3.537765664962601,4.510592891871291,3.630617271520083,3.435061561946088,4.305184685838265,3.716003135966583,6.1788311903537,3.795478360796673,3.318487167764811,3.435061561946088,5.483420118779979,4.192789745010902,3.940723896193989,5.579133356897509,4.07203589747571,4.987258698294508,3.435061561946088,3.435061561946088,4.358743211603835,3.795478360796673,3.716003135966583,3.630617271520083,9.090861867245238,5.138797349086906,5.547570236667276,4.07203589747571,3.940723896193989,3.318487167764811,3.630617271520083,3.940723896193989,6.8053940096738,3.180208399425292,20,3.180208399425292,3.870123123892177,3.870123123892177,3.630617271520083,4.00787439973505,3.716003135966583,19.31339597587397,4.907816650382954,3.180208399425292,3.716003135966583,4.605558044699242,3.435061561946088,4.249924622046098,3.630617271520083,3.716003135966583,4.605558044699242,4.133575207633986,3.870123123892177,3.716003135966583,3.940723896193989,3.180208399425292,5.211314605432596,4.00787439973505,3.180208399425292,3.537765664962601,3.435061561946088,5.316509354334065,7.290916685632974,4.410748322168053,3.537765664962601,4.07203589747571,7.525403451415674,8.64024252288614,4.651420391416631,5.138797349086906,3.630617271520083,6.045430933622619,3.940723896193989,3.870123123892177,4.510592891871291,5.761974938452427,13.22172677271563,3.795478360796673,3.716003135966583,3.537765664962601,4.358743211603835,3.435061561946088,11.84511871759328,4.651420391416631,4.82558462718661,7.230453919599499,6.152547985153758,3.870123123892177,4.696296104986255,5.906709704657183,4.192789745010902,4.740246247784354,6.78301677921819,4.133575207633986,4.605558044699242,3.795478360796673,4.133575207633986,4.783325832031172,5.138797349086906,3.318487167764811,3.180208399425292,8.336682284778464,9.03259352726023,3.940723896193989,4.07203589747571,3.537765664962601,4.305184685838265,4.133575207633986,6.332682086608409,9.134223961740425,6.692294812474142,4.192789745010902,4.133575207633986,6.431850184131735,6.282106052764985,7.448492358924882,4.867067833879256,5.175307809730442,5.064176835753901,6.692294812474142,4.461327820795872,3.716003135966583,4.00787439973505,3.318487167764811,4.461327820795872,6.480492495568707,3.795478360796673,3.940723896193989,4.249924622046098,9.805805918071947,4.192789745010902,3.716003135966583,3.940723896193989,4.55864097763758,3.435061561946088,3.630617271520083,3.630617271520083,4.133575207633986,3.716003135966583,4.305184685838265,7.89333260538477,5.138797349086906,4.510592891871291,5.641288244910815,4.651420391416631,3.716003135966583,5.246838022667934,5.906709704657183,4.510592891871291,5.450810361416188,3.870123123892177,3.940723896193989,4.696296104986255,5.579133356897509,4.461327820795872,7.803773383824837,6.152547985153758,3.180208399425292,5.990616602497289,6.622922537753959,4.358743211603835,3.716003135966583,5.671899444701964,4.192789745010902,5.175307809730442,5.732234417623458,3.318487167764811,4.192789745010902,5.483420118779979,6.552343517221249,3.180208399425292,3.630617271520083,4.82558462718661,4.249924622046098,3.435061561946088,3.630617271520083,5.281897021587314,4.249924622046098,4.305184685838265,3.630617271520083,5.138797349086906,6.456247345688668,4.07203589747571,3.795478360796673,7.467833242221873,4.696296104986255,3.795478360796673,3.180208399425292,3.435061561946088,4.55864097763758,4.305184685838265,4.07203589747571,4.305184685838265,3.795478360796673],null,"Peak ≥ 2",{"interactive":true,"className":"","stroke":true,"color":"black","weight":1,"opacity":0.5,"fill":true,"fillColor":["#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#4DAF4A","#FF7F00","#4DAF4A","#FF7F00","#FF7F00","#FF7F00","#A65628","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#4DAF4A","#FF7F00","#A65628","#4DAF4A","#FF7F00","#FF7F00","#FF7F00","#4DAF4A","#4DAF4A","#4DAF4A","#A65628","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#4DAF4A","#FF7F00","#FF7F00","#FF7F00","#A65628","#333333","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#E41A1C","#E41A1C","#FF7F00","#4DAF4A","#FF7F00","#FF7F00","#FF7F00","#A65628","#A65628","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#4DAF4A","#FF7F00","#4DAF4A","#377EB8","#FF7F00","#FF7F00","#FF7F00","#4DAF4A","#FF7F00","#A65628","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#4DAF4A","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#A65628","#4DAF4A","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#4DAF4A","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#4DAF4A","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#4DAF4A","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#A65628","#FF7F00","#A65628","#4DAF4A","#984EA3","#4DAF4A","#4DAF4A","#FF7F00","#FF7F00","#FF7F00","#4DAF4A","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#FF7F00","#4DAF4A","#FF7F00","#FF7F00","#FF7F00"],"fillOpacity":0.7},null,null,["<b>ALBUQUERQUE HOLD ROOM<\/b><br>NM | Hold/Staging<br>Peak: 45 (2025-03-25)<br>Mean ADP: 2","<b>GUAM ERO HOLD ROOM<\/b><br>GU | Hold/Staging<br>Peak: 4 (2025-05-22)<br>Mean ADP: 0","<b>AGUADILLA SPC<\/b><br>PR | Hold/Staging<br>Peak: 60 (2025-03-20)<br>Mean ADP: 3.3","<b>ALBANY HOLDROOM<\/b><br>NY | Hold/Staging<br>Peak: 16 (2025-07-15)<br>Mean ADP: 1.2","<b>ALAMOSA HOLDROOM<\/b><br>CO | Hold/Staging<br>Peak: 7 (2025-08-19)<br>Mean ADP: 0.2","<b>AMARILLO HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 17 (2025-09-03)<br>Mean ADP: 2.1","<b>ANCHORAGE JAIL<\/b><br>AK | Federal<br>Peak: 43 (2025-06-09)<br>Mean ADP: 3.3","<b>ANCHORAGE SUB-OFFICE HOLD ROOM<\/b><br>AK | Hold/Staging<br>Peak: 5 (2025-09-12)<br>Mean ADP: 0","<b>ATLANTA PRETRIAL DETN CTR<\/b><br>GA | Federal<br>Peak: 3 (2025-04-27)<br>Mean ADP: 0","<b>ATLANTA DIST. HOLD RM<\/b><br>GA | Hold/Staging<br>Peak: 168 (2025-06-25)<br>Mean ADP: 42.1","<b>ATHENS, TX HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 14 (2025-09-23)<br>Mean ADP: 0.1","<b>AUSTIN DRO HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 48 (2025-09-17)<br>Mean ADP: 15.2","<b>ARIZONA STATE PRISON - YUMA<\/b><br>AZ | Non-Dedicated<br>Peak: 3 (2025-04-03)<br>Mean ADP: 0","<b>BALDWIN COUNTY COR. CENTER<\/b><br>AL | Non-Dedicated<br>Peak: 28 (2025-02-07)<br>Mean ADP: 1.4","<b>BALTIMORE HOLD ROOM<\/b><br>MD | Hold/Staging<br>Peak: 120 (2025-06-13)<br>Mean ADP: 29.3","<b>BIRMINGHAM HOLD ROOM<\/b><br>AL | Hold/Staging<br>Peak: 18 (2025-09-10)<br>Mean ADP: 1.2","<b>BAKERFIELD HOLD<\/b><br>CA | Hold/Staging<br>Peak: 49 (2025-04-30)<br>Mean ADP: 7.1","<b>BOISE HOLD ROOM<\/b><br>ID | Hold/Staging<br>Peak: 8 (2025-06-04)<br>Mean ADP: 0.8","<b>GUAYNABO MDC (SAN JUAN)<\/b><br>PR | Federal<br>Peak: 16 (2024-10-01)<br>Mean ADP: 2.8","<b>BOSTON HOLDROOM<\/b><br>MA | Hold/Staging<br>Peak: 206 (2025-05-13)<br>Mean ADP: 18.6","<b>BROWARD COUNTY JAIL<\/b><br>FL | Non-Dedicated<br>Peak: 14 (2025-07-26)<br>Mean ADP: 3.4","<b>BROOKS COUNTY JAIL (CONTRACT)<\/b><br>TX | Federal<br>Peak: 90 (2025-08-19)<br>Mean ADP: 4.5","<b>BROADVIEW SERVICE STAGING<\/b><br>IL | Hold/Staging<br>Peak: 245 (2025-09-20)<br>Mean ADP: 31.7","<b>BIG SPRING HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 10 (2025-04-11)<br>Mean ADP: 0.9","<b>BUFFALO HOLD ROOM<\/b><br>NY | Hold/Staging<br>Peak: 45 (2025-06-16)<br>Mean ADP: 1.6","<b>CACHE CO. JAIL<\/b><br>UT | Federal<br>Peak: 13 (2025-09-19)<br>Mean ADP: 0.3","<b>CASCADE COUNTY JAIL, MT<\/b><br>MT | Federal<br>Peak: 5 (2025-08-03)<br>Mean ADP: 0.7","<b>BUFFALO USBP HOLD ROOM<\/b><br>NY | Federal<br>Peak: 20 (2025-09-17)<br>Mean ADP: 0.2","<b>Cabarrus County Jail<\/b><br>NC | Non-Dedicated<br>Peak: 6 (2025-07-31)<br>Mean ADP: 0.7","<b>CHARLOTTE AMALIE HOLDROOM<\/b><br>VI | Hold/Staging<br>Peak: 4 (2025-01-24)<br>Mean ADP: 0.2","<b>CHAVEZ DET CRT<\/b><br>NM | Non-Dedicated<br>Peak: 16 (2025-09-17)<br>Mean ADP: 2.1","<b>CHICAGO HOLD ROOM<\/b><br>IL | Hold/Staging<br>Peak: 7 (2025-09-21)<br>Mean ADP: 0.3","<b>CHARLESTON, SC HOLD ROOM<\/b><br>SC | Hold/Staging<br>Peak: 69 (2025-06-01)<br>Mean ADP: 8.7","<b>CHAMPLAIN HOLD ROOM<\/b><br>NY | Hold/Staging<br>Peak: 8 (2025-09-18)<br>Mean ADP: 0.2","<b>CHEYENNE HOLDROOM<\/b><br>WY | Hold/Staging<br>Peak: 3 (2025-01-27)<br>Mean ADP: 0.3","<b>CINCINNATI HOLDROOM<\/b><br>OH | Hold/Staging<br>Peak: 4 (2025-02-04)<br>Mean ADP: 0","<b>CENTRAL ISLIP HOLD ROOM<\/b><br>NY | Hold/Staging<br>Peak: 45 (2025-06-05)<br>Mean ADP: 3","<b>CLEVELAND HOLD ROOM<\/b><br>OH | Hold/Staging<br>Peak: 14 (2025-06-04)<br>Mean ADP: 0.3","<b>COLUMBUS HOLDROOM<\/b><br>OH | Hold/Staging<br>Peak: 10 (2025-03-04)<br>Mean ADP: 0.4","<b>CHARLOTTE HOLD ROOM<\/b><br>NC | Hold/Staging<br>Peak: 48 (2025-06-29)<br>Mean ADP: 9.7","<b>CHATTANOOGA HOLD ROOM<\/b><br>TN | Hold/Staging<br>Peak: 12 (2025-07-03)<br>Mean ADP: 2.5","<b>COLUMBIA, SC HOLDROOM<\/b><br>SC | Hold/Staging<br>Peak: 31 (2025-03-12)<br>Mean ADP: 1.3","<b>COBB CO SHERIFFS OFC ADULT DET CTR<\/b><br>GA | Non-Dedicated<br>Peak: 4 (2024-12-13)<br>Mean ADP: 0.3","<b>CRAIG HOLDROOM<\/b><br>CO | Hold/Staging<br>Peak: 4 (2025-09-23)<br>Mean ADP: 0.2","<b>CEDAR RAPIDS HOLD ROOM<\/b><br>IA | Hold/Staging<br>Peak: 17 (2025-08-23)<br>Mean ADP: 0.7","<b>CORPUS CHRISTI EOR HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 8 (2025-09-09)<br>Mean ADP: 0.8","<b>COLO SPRINGS DEN HSI HOLD<\/b><br>CO | Hold/Staging<br>Peak: 7 (2025-08-22)<br>Mean ADP: 0.4","<b>CASPER HOLDROOM<\/b><br>WY | Hold/Staging<br>Peak: 6 (2025-03-14)<br>Mean ADP: 0.5","<b>DALLAS F.O. HOLD<\/b><br>TX | Hold/Staging<br>Peak: 225 (2025-09-18)<br>Mean ADP: 53.1","<b>DENVER HOLD ROOM<\/b><br>CO | Hold/Staging<br>Peak: 35 (2025-04-28)<br>Mean ADP: 5","<b>DETROIT HOLDROOM<\/b><br>MI | Hold/Staging<br>Peak: 47 (2025-06-19)<br>Mean ADP: 1.2","<b>DEL RIO DRO HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 12 (2025-09-06)<br>Mean ADP: 1","<b>DORCHESTER CO DET CTR<\/b><br>SC | Federal<br>Peak: 10 (2025-09-14)<br>Mean ADP: 1.3","<b>DES MOINES HOLD ROOM<\/b><br>IA | Hold/Staging<br>Peak: 3 (2025-04-19)<br>Mean ADP: 0.3","<b>DURANGO HOLDROOM<\/b><br>CO | Hold/Staging<br>Peak: 6 (2025-08-18)<br>Mean ADP: 0.1","<b>DOVER HOLDROOM<\/b><br>DE | Hold/Staging<br>Peak: 10 (2025-06-12)<br>Mean ADP: 1.4","<b>EL PASO COUNTY DETENTION FACILITY<\/b><br>TX | Non-Dedicated<br>Peak: 95 (2024-12-30)<br>Mean ADP: 1.4","<b>EGP CPC HOLDING<\/b><br>TX | Unclassified<br>Peak: 2 (2025-04-17)<br>Mean ADP: 0","<b>EL PASO SOFT SIDED FACILITY<\/b><br>TX | Hold/Staging<br>Peak: 1606 (2025-08-12)<br>Mean ADP: 243.2","<b>ETOWAH ERO HOLD ROOM<\/b><br>AL | Hold/Staging<br>Peak: 2 (2024-10-15)<br>Mean ADP: 0","<b>EUGENE HOLDROOM<\/b><br>OR | Hold/Staging<br>Peak: 9 (2025-01-27)<br>Mean ADP: 0.4","<b>FAYETTEVILLE HOLD ROOM<\/b><br>AR | Hold/Staging<br>Peak: 9 (2025-03-05)<br>Mean ADP: 0.3","<b>FERNDALE HOLD ROOM<\/b><br>WA | Hold/Staging<br>Peak: 6 (2025-06-10)<br>Mean ADP: 0.5","<b>FINNEY COUNTY JAIL<\/b><br>KS | Non-Dedicated<br>Peak: 11 (2025-02-26)<br>Mean ADP: 1.9","<b>DADE CORRECTIONAL INST<\/b><br>FL | Dedicated<br>Peak: 7 (2025-08-25)<br>Mean ADP: 0.2","<b>FLORIDA SOFT-SIDED FACILITY-SOUTH<\/b><br>FL | Dedicated<br>Peak: 1482 (2025-07-30)<br>Mean ADP: 170.3","<b>FORT MYERS ERO HOLDROOM<\/b><br>FL | Hold/Staging<br>Peak: 29 (2025-06-21)<br>Mean ADP: 5","<b>FRANKLIN COUNTY JAIL<\/b><br>PA | Federal<br>Peak: 2 (2025-06-20)<br>Mean ADP: 0.1","<b>FREDERICK HOLDROOM<\/b><br>CO | Hold/Staging<br>Peak: 7 (2025-07-29)<br>Mean ADP: 1.3","<b>FRESNO HOLDROOM<\/b><br>CA | Hold/Staging<br>Peak: 22 (2025-08-29)<br>Mean ADP: 4.9","<b>FORT SMITH HOLDROOM<\/b><br>AR | Hold/Staging<br>Peak: 4 (2025-02-25)<br>Mean ADP: 0.1","<b>GARVIN COUNTY JAIL<\/b><br>OK | Non-Dedicated<br>Peak: 15 (2025-09-15)<br>Mean ADP: 0.6","<b>GASTON COUNTY JAIL<\/b><br>NC | Non-Dedicated<br>Peak: 6 (2025-03-19)<br>Mean ADP: 0.6","<b>GRAND JUNCTION HOLDROOM<\/b><br>CO | Hold/Staging<br>Peak: 7 (2025-06-03)<br>Mean ADP: 0.7","<b>GLENDALE POLICE DEPT<\/b><br>CA | Non-Dedicated<br>Peak: 22 (2025-06-03)<br>Mean ADP: 0.8","<b>GRAND FORKS HOLD ROOM<\/b><br>ND | Hold/Staging<br>Peak: 13 (2025-07-08)<br>Mean ADP: 0.5","<b>GRAND RAPIDS HOLDROOM<\/b><br>MI | Hold/Staging<br>Peak: 9 (2025-06-24)<br>Mean ADP: 0.8","<b>GREER HOLD ROOM<\/b><br>SC | Hold/Staging<br>Peak: 7 (2025-06-25)<br>Mean ADP: 1","<b>GLENWOOD SPRINGS HOLDROOM<\/b><br>CO | Hold/Staging<br>Peak: 10 (2025-05-22)<br>Mean ADP: 0.2","<b>HAILE DET. CENTER<\/b><br>ID | Non-Dedicated<br>Peak: 2 (2025-03-03)<br>Mean ADP: 0.1","<b>HARTFORD OFFICE<\/b><br>CT | Hold/Staging<br>Peak: 37 (2025-05-29)<br>Mean ADP: 4.6","<b>HARRISONBURG HOLD ROOM<\/b><br>VA | Hold/Staging<br>Peak: 11 (2025-06-03)<br>Mean ADP: 1.1","<b>HEL DISTRICT CUSTODY<\/b><br>MT | Hold/Staging<br>Peak: 2 (2025-08-19)<br>Mean ADP: 0","<b>HENDERSONVILLE HOLD ROOM<\/b><br>NC | Hold/Staging<br>Peak: 5 (2025-05-29)<br>Mean ADP: 0.1","<b>ERO HONOLULU SUB-OFFICE HOLD ROOM<\/b><br>HI | Hold/Staging<br>Peak: 4 (2025-03-06)<br>Mean ADP: 0.1","<b>HILLSBOROUGH COUNTY JAIL<\/b><br>FL | Non-Dedicated<br>Peak: 40 (2025-07-03)<br>Mean ADP: 0.5","<b>HARLINGEN HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 118 (2025-06-04)<br>Mean ADP: 15.4","<b>HOUSTON FO HOLDROOM<\/b><br>TX | Hold/Staging<br>Peak: 18 (2024-12-10)<br>Mean ADP: 1.7","<b>IDAHO FALLS HOLD ROOM<\/b><br>ID | Hold/Staging<br>Peak: 5 (2025-04-03)<br>Mean ADP: 0.2","<b>IMPERIAL SUB OFFICE HOLD ROOM<\/b><br>CA | Hold/Staging<br>Peak: 12 (2025-09-03)<br>Mean ADP: 1.2","<b>INDIANAPOLIS HOLD ROOM<\/b><br>IN | Hold/Staging<br>Peak: 130 (2025-09-19)<br>Mean ADP: 12.3","<b>AZ REM OP COORD CENTER (AROCC)<\/b><br>AZ | Hold/Staging<br>Peak: 195 (2025-04-30)<br>Mean ADP: 37.4","<b>JACKSON MS HOLD ROOM<\/b><br>MS | Hold/Staging<br>Peak: 23 (2025-08-29)<br>Mean ADP: 4.2","<b>JACKSONVILLE SUB-OFFICE<\/b><br>FL | Hold/Staging<br>Peak: 35 (2025-04-25)<br>Mean ADP: 5.4","<b>JACK HARWELL DETENTION CENTER<\/b><br>TX | Federal<br>Peak: 6 (2025-05-15)<br>Mean ADP: 0.3","<b>KANSAS CITY HOLDROOM<\/b><br>MO | Hold/Staging<br>Peak: 64 (2025-05-09)<br>Mean ADP: 6.1","<b>KARNES CTY CORR CTR<\/b><br>TX | Federal<br>Peak: 10 (2025-02-25)<br>Mean ADP: 1.5","<b>KARNES COUNTY CIVIL DET. FACILITY<\/b><br>TX | Family/Youth<br>Peak: 9 (2025-04-23)<br>Mean ADP: 0.3","<b>KNOXVILLE HOLD ROOM<\/b><br>TN | Hold/Staging<br>Peak: 20 (2025-08-22)<br>Mean ADP: 3.3","<b>KROME/MIAMI HUB<\/b><br>FL | Hold/Staging<br>Peak: 54 (2025-05-24)<br>Mean ADP: 5.8","<b>KROME HOLD ROOM<\/b><br>FL | Hold/Staging<br>Peak: 600 (2025-02-17)<br>Mean ADP: 36.5","<b>LARAMIE COUNTY JAIL<\/b><br>WY | Federal<br>Peak: 8 (2025-09-13)<br>Mean ADP: 0.2","<b>LAS CRUCES HOLD ROOM<\/b><br>NM | Hold/Staging<br>Peak: 7 (2025-08-05)<br>Mean ADP: 0.4","<b>LAWRENCE CO. JAIL, SD<\/b><br>SD | Non-Dedicated<br>Peak: 5 (2025-09-24)<br>Mean ADP: 0.2","<b>LUBBOCK HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 17 (2025-09-10)<br>Mean ADP: 2.5","<b>LINCOLN COUNTY SHERIFF'S<\/b><br>MO | Non-Dedicated<br>Peak: 4 (2024-10-05)<br>Mean ADP: 0.3","<b>LOS CUST CASE<\/b><br>CA | Hold/Staging<br>Peak: 455 (2025-07-11)<br>Mean ADP: 58.7","<b>LOUISVILLE HOLD ROOM<\/b><br>KY | Hold/Staging<br>Peak: 23 (2025-03-12)<br>Mean ADP: 0.6","<b>LITTLE ROCK HOLD ROOM<\/b><br>AR | Hold/Staging<br>Peak: 27 (2025-02-25)<br>Mean ADP: 4.2","<b>LAREDO DETENTION CENTER HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 115 (2024-12-31)<br>Mean ADP: 3.8","<b>LAS VEGAS HOLD ROOM<\/b><br>NV | Hold/Staging<br>Peak: 68 (2025-04-18)<br>Mean ADP: 4.2","<b>MANCHESTER HOLDROOM<\/b><br>NH | Hold/Staging<br>Peak: 9 (2025-02-18)<br>Mean ADP: 0.5","<b>MARTIN COUNTY JAIL<\/b><br>FL | Non-Dedicated<br>Peak: 24 (2025-09-05)<br>Mean ADP: 1.5","<b>MCALLEN HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 59 (2025-02-26)<br>Mean ADP: 9.7","<b>MEDFORD SUB-OFFICE<\/b><br>OR | Hold/Staging<br>Peak: 14 (2025-07-30)<br>Mean ADP: 0.2","<b>MEMPHIS HOLD ROOM<\/b><br>TN | Hold/Staging<br>Peak: 25 (2025-08-15)<br>Mean ADP: 5.2","<b>MIAMI (MIRAMAR) HOLD ROOM<\/b><br>FL | Hold/Staging<br>Peak: 94 (2025-09-10)<br>Mean ADP: 12.6","<b>MIDLAND DETENTION CENTER<\/b><br>TX | Federal<br>Peak: 13 (2025-05-26)<br>Mean ADP: 1.1","<b>MILWAUKEE HOLDROOM<\/b><br>WI | Hold/Staging<br>Peak: 22 (2025-06-03)<br>Mean ADP: 1.4","<b>MINICASSIA DET. CENTER<\/b><br>ID | Non-Dedicated<br>Peak: 8 (2025-06-25)<br>Mean ADP: 0.7","<b>MIDLAND, TX ERO HOLDROOM<\/b><br>TX | Hold/Staging<br>Peak: 13 (2025-06-04)<br>Mean ADP: 2.1","<b>MOUNT LAUREL HOLD ROOM<\/b><br>NJ | Hold/Staging<br>Peak: 26 (2025-06-03)<br>Mean ADP: 5.5","<b>MOBILE HOLDROOM<\/b><br>AL | Hold/Staging<br>Peak: 35 (2025-06-24)<br>Mean ADP: 2.7","<b>MONROE COUNTY JAIL<\/b><br>FL | Non-Dedicated<br>Peak: 3 (2025-01-27)<br>Mean ADP: 0.2","<b>MONTGOMERY CO MAC SIM BUTLER D.F.<\/b><br>AL | Federal<br>Peak: 2 (2024-11-20)<br>Mean ADP: 0.3","<b>MIAMI STAGING FACILITY<\/b><br>FL | Hold/Staging<br>Peak: 176 (2025-01-31)<br>Mean ADP: 16.5","<b>MONTGOMERY HOLD RM<\/b><br>TX | Hold/Staging<br>Peak: 221 (2025-08-21)<br>Mean ADP: 50","<b>NEWBURGH HOLDING<\/b><br>NY | Hold/Staging<br>Peak: 10 (2025-07-29)<br>Mean ADP: 1.5","<b>NEW/INS OS HOLD ROOM<\/b><br>NJ | Hold/Staging<br>Peak: 12 (2024-11-21)<br>Mean ADP: 0.8","<b>NEW ORLEANS HOLD ROOM<\/b><br>LA | Hold/Staging<br>Peak: 5 (2025-06-11)<br>Mean ADP: 0.4","<b>NORFOLK SUB-OFFICE HOLD<\/b><br>VA | Hold/Staging<br>Peak: 16 (2025-08-21)<br>Mean ADP: 2","<b>NORTH PLATTE HOLD ROOM<\/b><br>NE | Hold/Staging<br>Peak: 13 (2025-03-08)<br>Mean ADP: 0.1","<b>NASHVILLE HOLD ROOM<\/b><br>TN | Hold/Staging<br>Peak: 75 (2025-05-04)<br>Mean ADP: 0.7","<b>NYC HOLD ROOM<\/b><br>NY | Hold/Staging<br>Peak: 228 (2025-06-05)<br>Mean ADP: 40.9","<b>NYE COUNTY SHERIFF-PAHRUMP<\/b><br>NV | Non-Dedicated<br>Peak: 90 (2024-10-08)<br>Mean ADP: 7.1","<b>OAKDALE HOLDING ROOM<\/b><br>LA | Hold/Staging<br>Peak: 14 (2025-09-12)<br>Mean ADP: 0.1","<b>OGDEN HOLD ROOM<\/b><br>UT | Hold/Staging<br>Peak: 13 (2025-09-23)<br>Mean ADP: 1.3","<b>OKLAHOMA CITY HOLD ROOM.<\/b><br>OK | Hold/Staging<br>Peak: 79 (2025-09-24)<br>Mean ADP: 8.5","<b>OMAHA FO HOLD<\/b><br>NE | Hold/Staging<br>Peak: 73 (2025-06-11)<br>Mean ADP: 7.2","<b>ORLANDO HOLD ROOM<\/b><br>FL | Hold/Staging<br>Peak: 126 (2025-06-04)<br>Mean ADP: 19.6","<b>PECOS HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 28 (2025-08-01)<br>Mean ADP: 1.8","<b>PDN HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 36 (2025-06-13)<br>Mean ADP: 0.1","<b>PHI DISTRICT OFFICE<\/b><br>PA | Hold/Staging<br>Peak: 33 (2025-06-05)<br>Mean ADP: 6.7","<b>PHOENIX DIST OFFICE<\/b><br>AZ | Hold/Staging<br>Peak: 90 (2025-05-21)<br>Mean ADP: 25.7","<b>PITTSBURGH HOLDROOM<\/b><br>PA | Hold/Staging<br>Peak: 19 (2025-06-03)<br>Mean ADP: 2.4","<b>PIKE COUNTY ERO HOLD ROOM<\/b><br>PA | Hold/Staging<br>Peak: 7 (2025-06-05)<br>Mean ADP: 1.4","<b>PLATTE COUNTY JAIL<\/b><br>WY | Federal<br>Peak: 11 (2025-07-11)<br>Mean ADP: 3","<b>PORTLAND, ME HOLDROOM<\/b><br>ME | Hold/Staging<br>Peak: 3 (2025-06-05)<br>Mean ADP: 0.1","<b>PORTLAND DISTRICT OFFICE<\/b><br>OR | Hold/Staging<br>Peak: 19 (2025-01-26)<br>Mean ADP: 2","<b>PRAIRIELAND SUBOFFICE HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 81 (2025-09-20)<br>Mean ADP: 0.9","<b>PROHOLD<\/b><br>RI | Hold/Staging<br>Peak: 8 (2025-04-11)<br>Mean ADP: 1.3","<b>PROVO HOLD ROOM<\/b><br>UT | Hold/Staging<br>Peak: 10 (2025-08-22)<br>Mean ADP: 1.3","<b>PUEBLO HOLDROOM<\/b><br>CO | Hold/Staging<br>Peak: 15 (2025-04-27)<br>Mean ADP: 1.1","<b>RICHMOND SUB-OFFICE HOLD<\/b><br>VA | Hold/Staging<br>Peak: 277 (2025-09-07)<br>Mean ADP: 16.2","<b>RALEIGH HOLD ROOM<\/b><br>NC | Hold/Staging<br>Peak: 14 (2025-07-11)<br>Mean ADP: 3.7","<b>REDDING HOLD ROOM<\/b><br>CA | Hold/Staging<br>Peak: 7 (2025-08-26)<br>Mean ADP: 0.6","<b>RENO HOLD ROOM<\/b><br>NV | Hold/Staging<br>Peak: 10 (2025-05-05)<br>Mean ADP: 0.2","<b>RIO GRANDE VALLEY STAGING<\/b><br>TX | Hold/Staging<br>Peak: 21 (2025-02-06)<br>Mean ADP: 0.6","<b>RICHLAND HOLD ROOM<\/b><br>WA | Hold/Staging<br>Peak: 4 (2025-02-05)<br>Mean ADP: 0.3","<b>ROCK ISLAND HOLD ROOM<\/b><br>IL | Hold/Staging<br>Peak: 6 (2025-03-07)<br>Mean ADP: 0.8","<b>ROANOKE SUB-OFFICE HOLD ROOM<\/b><br>VA | Hold/Staging<br>Peak: 6 (2025-05-13)<br>Mean ADP: 0.7","<b>ROANOKE CITY JAIL<\/b><br>VA | Federal<br>Peak: 13 (2025-09-08)<br>Mean ADP: 1.4","<b>RAPID CITY HOLD ROOM<\/b><br>SD | Hold/Staging<br>Peak: 7 (2025-08-06)<br>Mean ADP: 0.3","<b>ROSWELL HOLD ROOM<\/b><br>NM | Hold/Staging<br>Peak: 16 (2025-09-17)<br>Mean ADP: 2.1","<b>SANTA ANA DRO HOLDROOM<\/b><br>CA | Hold/Staging<br>Peak: 150 (2025-06-11)<br>Mean ADP: 11.3","<b>SACRAMENTO HOLD<\/b><br>CA | Hold/Staging<br>Peak: 35 (2025-07-27)<br>Mean ADP: 3.3","<b>SAN ANGELO HOLDROOM<\/b><br>TX | Hold/Staging<br>Peak: 20 (2025-01-21)<br>Mean ADP: 3.3","<b>SAN JUAN SUB-OFFICE HOLD ROOM<\/b><br>PR | Hold/Staging<br>Peak: 50 (2025-06-04)<br>Mean ADP: 3.1","<b>SALISBURY HOLD ROOM<\/b><br>MD | Hold/Staging<br>Peak: 23 (2025-08-05)<br>Mean ADP: 2.1","<b>SALINE COUNTY JAIL<\/b><br>NE | Non-Dedicated<br>Peak: 7 (2025-09-09)<br>Mean ADP: 0","<b>SAN BERNARDINO HOLD ROOM<\/b><br>CA | Hold/Staging<br>Peak: 38 (2025-06-20)<br>Mean ADP: 5.6","<b>SEATTLE FIELD OFFICE HOLD ROOM<\/b><br>WA | Hold/Staging<br>Peak: 59 (2025-06-05)<br>Mean ADP: 4.7","<b>SIOUX FALLS HOLD ROOM<\/b><br>SD | Hold/Staging<br>Peak: 20 (2025-08-29)<br>Mean ADP: 0.5","<b>SFR HOLD ROOM<\/b><br>CA | Hold/Staging<br>Peak: 44 (2025-06-04)<br>Mean ADP: 4.8","<b>ST. GEORGE, UT HOLDROOM<\/b><br>UT | Hold/Staging<br>Peak: 9 (2025-01-26)<br>Mean ADP: 0.7","<b>SIOUX COUNTY JAIL<\/b><br>IA | Federal<br>Peak: 10 (2025-09-08)<br>Mean ADP: 0.5","<b>SAN JUAN AIRPORT HOLD ROOM<\/b><br>PR | Hold/Staging<br>Peak: 24 (2024-12-22)<br>Mean ADP: 1.6","<b>SALT LAKE CITY HOLD ROOM<\/b><br>UT | Hold/Staging<br>Peak: 48 (2025-07-09)<br>Mean ADP: 10.8","<b>SANTA MARIA SUB OFFICE ERO<\/b><br>CA | Hold/Staging<br>Peak: 19 (2025-09-12)<br>Mean ADP: 3.4","<b>SAN ANTONIO DRO HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 145 (2025-06-04)<br>Mean ADP: 19.6","<b>SND DISTRICT STAGING<\/b><br>CA | Hold/Staging<br>Peak: 68 (2025-09-19)<br>Mean ADP: 15.7","<b>SNJ HOLD ROOM<\/b><br>CA | Hold/Staging<br>Peak: 2 (2024-12-03)<br>Mean ADP: 0","<b>ERO HOLD ROOM (SPRINGFIELD MO)<\/b><br>MO | Hold/Staging<br>Peak: 62 (2025-09-24)<br>Mean ADP: 1.2","<b>BISHOP HENRY WHIPPLE FED BLDG<\/b><br>MN | Hold/Staging<br>Peak: 87 (2025-02-12)<br>Mean ADP: 11.5","<b>SPOKANE HOLD ROOM<\/b><br>WA | Hold/Staging<br>Peak: 17 (2025-04-28)<br>Mean ADP: 1.7","<b>SAINT ALBANS HOLD ROOM<\/b><br>VT | Hold/Staging<br>Peak: 7 (2024-11-12)<br>Mean ADP: 0.4","<b>SOUTH TEXAS/PEARSALL HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 51 (2025-07-03)<br>Mean ADP: 4.8","<b>STOCKTON STAGING FACILITY<\/b><br>CA | Hold/Staging<br>Peak: 14 (2025-07-17)<br>Mean ADP: 2.1","<b>ST. LOUIS HOLDROOM<\/b><br>MO | Hold/Staging<br>Peak: 36 (2025-09-02)<br>Mean ADP: 3.8","<b>STUART HOLD ROOM<\/b><br>FL | Hold/Staging<br>Peak: 53 (2025-09-18)<br>Mean ADP: 3","<b>SIOUX CITY HOLD ROOM<\/b><br>IA | Hold/Staging<br>Peak: 3 (2024-11-04)<br>Mean ADP: 0.1","<b>SYRACUSE HOLD ROOM<\/b><br>NY | Hold/Staging<br>Peak: 14 (2025-09-15)<br>Mean ADP: 0.6","<b>TALLAHASSEE HOLD ROOM<\/b><br>FL | Hold/Staging<br>Peak: 45 (2025-08-20)<br>Mean ADP: 6.5","<b>TAMPA HOLD ROOM<\/b><br>FL | Hold/Staging<br>Peak: 84 (2025-08-08)<br>Mean ADP: 16.5","<b>TELLER COUNTY JAIL<\/b><br>CO | Non-Dedicated<br>Peak: 2 (2025-02-02)<br>Mean ADP: 0","<b>TWIN FALLS HOLD ROOM<\/b><br>ID | Hold/Staging<br>Peak: 6 (2025-01-15)<br>Mean ADP: 0.4","<b>TURNER GUIFORD KNIGHT (TGK) JAIL<\/b><br>FL | Non-Dedicated<br>Peak: 27 (2025-08-22)<br>Mean ADP: 3.8","<b>TOM GREEN CTY JAIL<\/b><br>TX | Federal<br>Peak: 15 (2025-03-21)<br>Mean ADP: 1.9","<b>TEX HEALTH HUGULEY HOSP<\/b><br>TX | Medical<br>Peak: 4 (2025-07-16)<br>Mean ADP: 0.5","<b>TITUS COUNTY JAIL<\/b><br>TX | Federal<br>Peak: 6 (2025-03-28)<br>Mean ADP: 0.9","<b>WESTERN TENNESSEE DET. FAC.<\/b><br>TN | Federal<br>Peak: 39 (2025-09-12)<br>Mean ADP: 1.6","<b>TUCSON INS HOLD ROOM<\/b><br>AZ | Hold/Staging<br>Peak: 15 (2025-06-06)<br>Mean ADP: 3.2","<b>TULSA HOLD ROOM<\/b><br>OK | Hold/Staging<br>Peak: 16 (2025-09-17)<br>Mean ADP: 1.7","<b>TEXARKANA HOLDROOM<\/b><br>AR | Hold/Staging<br>Peak: 6 (2025-05-21)<br>Mean ADP: 0.6","<b>VAL VERDE DETENTION CENTER<\/b><br>TX | Federal<br>Peak: 35 (2025-06-17)<br>Mean ADP: 3.6","<b>VENTURA CUSTODY CASE<\/b><br>CA | Hold/Staging<br>Peak: 80 (2025-07-11)<br>Mean ADP: 5.9","<b>VRK PRCS<\/b><br>NY | Hold/Staging<br>Peak: 12 (2025-09-23)<br>Mean ADP: 0.2","<b>SHREVEPORT HOLD ROOM<\/b><br>LA | Hold/Staging<br>Peak: 8 (2025-08-28)<br>Mean ADP: 1.1","<b>WASHINGTON FIELD OFFICE<\/b><br>VA | Hold/Staging<br>Peak: 127 (2025-08-23)<br>Mean ADP: 17.3","<b>WACO DRO HOLD ROOM<\/b><br>TX | Hold/Staging<br>Peak: 24 (2025-06-30)<br>Mean ADP: 4.9","<b>WESTMINSTER CUSTODY<\/b><br>CA | Hold/Staging<br>Peak: 8 (2025-07-04)<br>Mean ADP: 1.6","<b>WICHITA HOLDROOM<\/b><br>KS | Hold/Staging<br>Peak: 2 (2025-05-31)<br>Mean ADP: 0","<b>WENATCHEE HOLD ROOM<\/b><br>WA | Hold/Staging<br>Peak: 4 (2024-11-04)<br>Mean ADP: 0.2","<b>WILLIAMSPORT HOLD ROOM<\/b><br>PA | Hold/Staging<br>Peak: 21 (2025-08-19)<br>Mean ADP: 0.5","<b>EASTERN REGIONAL JAIL<\/b><br>WV | Federal<br>Peak: 16 (2025-03-11)<br>Mean ADP: 1.1","<b>YAKIMA SUB-OFFICE<\/b><br>WA | Hold/Staging<br>Peak: 12 (2025-06-04)<br>Mean ADP: 1.2","<b>YORK HOLD ROOM<\/b><br>PA | Hold/Staging<br>Peak: 16 (2025-04-23)<br>Mean ADP: 3","<b>YUMA HOLDROOM<\/b><br>AZ | Hold/Staging<br>Peak: 8 (2025-07-31)<br>Mean ADP: 1"],null,["ALBUQUERQUE HOLD ROOM (NM: peak 45)","GUAM ERO HOLD ROOM (GU: peak 4)","AGUADILLA SPC (PR: peak 60)","ALBANY HOLDROOM (NY: peak 16)","ALAMOSA HOLDROOM (CO: peak 7)","AMARILLO HOLD ROOM (TX: peak 17)","ANCHORAGE JAIL (AK: peak 43)","ANCHORAGE SUB-OFFICE HOLD ROOM (AK: peak 5)","ATLANTA PRETRIAL DETN CTR (GA: peak 3)","ATLANTA DIST. HOLD RM (GA: peak 168)","ATHENS, TX HOLD ROOM (TX: peak 14)","AUSTIN DRO HOLD ROOM (TX: peak 48)","ARIZONA STATE PRISON - YUMA (AZ: peak 3)","BALDWIN COUNTY COR. CENTER (AL: peak 28)","BALTIMORE HOLD ROOM (MD: peak 120)","BIRMINGHAM HOLD ROOM (AL: peak 18)","BAKERFIELD HOLD (CA: peak 49)","BOISE HOLD ROOM (ID: peak 8)","GUAYNABO MDC (SAN JUAN) (PR: peak 16)","BOSTON HOLDROOM (MA: peak 206)","BROWARD COUNTY JAIL (FL: peak 14)","BROOKS COUNTY JAIL (CONTRACT) (TX: peak 90)","BROADVIEW SERVICE STAGING (IL: peak 245)","BIG SPRING HOLD ROOM (TX: peak 10)","BUFFALO HOLD ROOM (NY: peak 45)","CACHE CO. JAIL (UT: peak 13)","CASCADE COUNTY JAIL, MT (MT: peak 5)","BUFFALO USBP HOLD ROOM (NY: peak 20)","Cabarrus County Jail (NC: peak 6)","CHARLOTTE AMALIE HOLDROOM (VI: peak 4)","CHAVEZ DET CRT (NM: peak 16)","CHICAGO HOLD ROOM (IL: peak 7)","CHARLESTON, SC HOLD ROOM (SC: peak 69)","CHAMPLAIN HOLD ROOM (NY: peak 8)","CHEYENNE HOLDROOM (WY: peak 3)","CINCINNATI HOLDROOM (OH: peak 4)","CENTRAL ISLIP HOLD ROOM (NY: peak 45)","CLEVELAND HOLD ROOM (OH: peak 14)","COLUMBUS HOLDROOM (OH: peak 10)","CHARLOTTE HOLD ROOM (NC: peak 48)","CHATTANOOGA HOLD ROOM (TN: peak 12)","COLUMBIA, SC HOLDROOM (SC: peak 31)","COBB CO SHERIFFS OFC ADULT DET CTR (GA: peak 4)","CRAIG HOLDROOM (CO: peak 4)","CEDAR RAPIDS HOLD ROOM (IA: peak 17)","CORPUS CHRISTI EOR HOLD ROOM (TX: peak 8)","COLO SPRINGS DEN HSI HOLD (CO: peak 7)","CASPER HOLDROOM (WY: peak 6)","DALLAS F.O. HOLD (TX: peak 225)","DENVER HOLD ROOM (CO: peak 35)","DETROIT HOLDROOM (MI: peak 47)","DEL RIO DRO HOLD ROOM (TX: peak 12)","DORCHESTER CO DET CTR (SC: peak 10)","DES MOINES HOLD ROOM (IA: peak 3)","DURANGO HOLDROOM (CO: peak 6)","DOVER HOLDROOM (DE: peak 10)","EL PASO COUNTY DETENTION FACILITY (TX: peak 95)","EGP CPC HOLDING (TX: peak 2)","EL PASO SOFT SIDED FACILITY (TX: peak 1606)","ETOWAH ERO HOLD ROOM (AL: peak 2)","EUGENE HOLDROOM (OR: peak 9)","FAYETTEVILLE HOLD ROOM (AR: peak 9)","FERNDALE HOLD ROOM (WA: peak 6)","FINNEY COUNTY JAIL (KS: peak 11)","DADE CORRECTIONAL INST (FL: peak 7)","FLORIDA SOFT-SIDED FACILITY-SOUTH (FL: peak 1482)","FORT MYERS ERO HOLDROOM (FL: peak 29)","FRANKLIN COUNTY JAIL (PA: peak 2)","FREDERICK HOLDROOM (CO: peak 7)","FRESNO HOLDROOM (CA: peak 22)","FORT SMITH HOLDROOM (AR: peak 4)","GARVIN COUNTY JAIL (OK: peak 15)","GASTON COUNTY JAIL (NC: peak 6)","GRAND JUNCTION HOLDROOM (CO: peak 7)","GLENDALE POLICE DEPT (CA: peak 22)","GRAND FORKS HOLD ROOM (ND: peak 13)","GRAND RAPIDS HOLDROOM (MI: peak 9)","GREER HOLD ROOM (SC: peak 7)","GLENWOOD SPRINGS HOLDROOM (CO: peak 10)","HAILE DET. CENTER (ID: peak 2)","HARTFORD OFFICE (CT: peak 37)","HARRISONBURG HOLD ROOM (VA: peak 11)","HEL DISTRICT CUSTODY (MT: peak 2)","HENDERSONVILLE HOLD ROOM (NC: peak 5)","ERO HONOLULU SUB-OFFICE HOLD ROOM (HI: peak 4)","HILLSBOROUGH COUNTY JAIL (FL: peak 40)","HARLINGEN HOLD ROOM (TX: peak 118)","HOUSTON FO HOLDROOM (TX: peak 18)","IDAHO FALLS HOLD ROOM (ID: peak 5)","IMPERIAL SUB OFFICE HOLD ROOM (CA: peak 12)","INDIANAPOLIS HOLD ROOM (IN: peak 130)","AZ REM OP COORD CENTER (AROCC) (AZ: peak 195)","JACKSON MS HOLD ROOM (MS: peak 23)","JACKSONVILLE SUB-OFFICE (FL: peak 35)","JACK HARWELL DETENTION CENTER (TX: peak 6)","KANSAS CITY HOLDROOM (MO: peak 64)","KARNES CTY CORR CTR (TX: peak 10)","KARNES COUNTY CIVIL DET. FACILITY (TX: peak 9)","KNOXVILLE HOLD ROOM (TN: peak 20)","KROME/MIAMI HUB (FL: peak 54)","KROME HOLD ROOM (FL: peak 600)","LARAMIE COUNTY JAIL (WY: peak 8)","LAS CRUCES HOLD ROOM (NM: peak 7)","LAWRENCE CO. JAIL, SD (SD: peak 5)","LUBBOCK HOLD ROOM (TX: peak 17)","LINCOLN COUNTY SHERIFF'S (MO: peak 4)","LOS CUST CASE (CA: peak 455)","LOUISVILLE HOLD ROOM (KY: peak 23)","LITTLE ROCK HOLD ROOM (AR: peak 27)","LAREDO DETENTION CENTER HOLD ROOM (TX: peak 115)","LAS VEGAS HOLD ROOM (NV: peak 68)","MANCHESTER HOLDROOM (NH: peak 9)","MARTIN COUNTY JAIL (FL: peak 24)","MCALLEN HOLD ROOM (TX: peak 59)","MEDFORD SUB-OFFICE (OR: peak 14)","MEMPHIS HOLD ROOM (TN: peak 25)","MIAMI (MIRAMAR) HOLD ROOM (FL: peak 94)","MIDLAND DETENTION CENTER (TX: peak 13)","MILWAUKEE HOLDROOM (WI: peak 22)","MINICASSIA DET. CENTER (ID: peak 8)","MIDLAND, TX ERO HOLDROOM (TX: peak 13)","MOUNT LAUREL HOLD ROOM (NJ: peak 26)","MOBILE HOLDROOM (AL: peak 35)","MONROE COUNTY JAIL (FL: peak 3)","MONTGOMERY CO MAC SIM BUTLER D.F. (AL: peak 2)","MIAMI STAGING FACILITY (FL: peak 176)","MONTGOMERY HOLD RM (TX: peak 221)","NEWBURGH HOLDING (NY: peak 10)","NEW/INS OS HOLD ROOM (NJ: peak 12)","NEW ORLEANS HOLD ROOM (LA: peak 5)","NORFOLK SUB-OFFICE HOLD (VA: peak 16)","NORTH PLATTE HOLD ROOM (NE: peak 13)","NASHVILLE HOLD ROOM (TN: peak 75)","NYC HOLD ROOM (NY: peak 228)","NYE COUNTY SHERIFF-PAHRUMP (NV: peak 90)","OAKDALE HOLDING ROOM (LA: peak 14)","OGDEN HOLD ROOM (UT: peak 13)","OKLAHOMA CITY HOLD ROOM. (OK: peak 79)","OMAHA FO HOLD (NE: peak 73)","ORLANDO HOLD ROOM (FL: peak 126)","PECOS HOLD ROOM (TX: peak 28)","PDN HOLD ROOM (TX: peak 36)","PHI DISTRICT OFFICE (PA: peak 33)","PHOENIX DIST OFFICE (AZ: peak 90)","PITTSBURGH HOLDROOM (PA: peak 19)","PIKE COUNTY ERO HOLD ROOM (PA: peak 7)","PLATTE COUNTY JAIL (WY: peak 11)","PORTLAND, ME HOLDROOM (ME: peak 3)","PORTLAND DISTRICT OFFICE (OR: peak 19)","PRAIRIELAND SUBOFFICE HOLD ROOM (TX: peak 81)","PROHOLD (RI: peak 8)","PROVO HOLD ROOM (UT: peak 10)","PUEBLO HOLDROOM (CO: peak 15)","RICHMOND SUB-OFFICE HOLD (VA: peak 277)","RALEIGH HOLD ROOM (NC: peak 14)","REDDING HOLD ROOM (CA: peak 7)","RENO HOLD ROOM (NV: peak 10)","RIO GRANDE VALLEY STAGING (TX: peak 21)","RICHLAND HOLD ROOM (WA: peak 4)","ROCK ISLAND HOLD ROOM (IL: peak 6)","ROANOKE SUB-OFFICE HOLD ROOM (VA: peak 6)","ROANOKE CITY JAIL (VA: peak 13)","RAPID CITY HOLD ROOM (SD: peak 7)","ROSWELL HOLD ROOM (NM: peak 16)","SANTA ANA DRO HOLDROOM (CA: peak 150)","SACRAMENTO HOLD (CA: peak 35)","SAN ANGELO HOLDROOM (TX: peak 20)","SAN JUAN SUB-OFFICE HOLD ROOM (PR: peak 50)","SALISBURY HOLD ROOM (MD: peak 23)","SALINE COUNTY JAIL (NE: peak 7)","SAN BERNARDINO HOLD ROOM (CA: peak 38)","SEATTLE FIELD OFFICE HOLD ROOM (WA: peak 59)","SIOUX FALLS HOLD ROOM (SD: peak 20)","SFR HOLD ROOM (CA: peak 44)","ST. GEORGE, UT HOLDROOM (UT: peak 9)","SIOUX COUNTY JAIL (IA: peak 10)","SAN JUAN AIRPORT HOLD ROOM (PR: peak 24)","SALT LAKE CITY HOLD ROOM (UT: peak 48)","SANTA MARIA SUB OFFICE ERO (CA: peak 19)","SAN ANTONIO DRO HOLD ROOM (TX: peak 145)","SND DISTRICT STAGING (CA: peak 68)","SNJ HOLD ROOM (CA: peak 2)","ERO HOLD ROOM (SPRINGFIELD MO) (MO: peak 62)","BISHOP HENRY WHIPPLE FED BLDG (MN: peak 87)","SPOKANE HOLD ROOM (WA: peak 17)","SAINT ALBANS HOLD ROOM (VT: peak 7)","SOUTH TEXAS/PEARSALL HOLD ROOM (TX: peak 51)","STOCKTON STAGING FACILITY (CA: peak 14)","ST. LOUIS HOLDROOM (MO: peak 36)","STUART HOLD ROOM (FL: peak 53)","SIOUX CITY HOLD ROOM (IA: peak 3)","SYRACUSE HOLD ROOM (NY: peak 14)","TALLAHASSEE HOLD ROOM (FL: peak 45)","TAMPA HOLD ROOM (FL: peak 84)","TELLER COUNTY JAIL (CO: peak 2)","TWIN FALLS HOLD ROOM (ID: peak 6)","TURNER GUIFORD KNIGHT (TGK) JAIL (FL: peak 27)","TOM GREEN CTY JAIL (TX: peak 15)","TEX HEALTH HUGULEY HOSP (TX: peak 4)","TITUS COUNTY JAIL (TX: peak 6)","WESTERN TENNESSEE DET. FAC. (TN: peak 39)","TUCSON INS HOLD ROOM (AZ: peak 15)","TULSA HOLD ROOM (OK: peak 16)","TEXARKANA HOLDROOM (AR: peak 6)","VAL VERDE DETENTION CENTER (TX: peak 35)","VENTURA CUSTODY CASE (CA: peak 80)","VRK PRCS (NY: peak 12)","SHREVEPORT HOLD ROOM (LA: peak 8)","WASHINGTON FIELD OFFICE (VA: peak 127)","WACO DRO HOLD ROOM (TX: peak 24)","WESTMINSTER CUSTODY (CA: peak 8)","WICHITA HOLDROOM (KS: peak 2)","WENATCHEE HOLD ROOM (WA: peak 4)","WILLIAMSPORT HOLD ROOM (PA: peak 21)","EASTERN REGIONAL JAIL (WV: peak 16)","YAKIMA SUB-OFFICE (WA: peak 12)","YORK HOLD ROOM (PA: peak 16)","YUMA HOLDROOM (AZ: peak 8)"],{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addLegend","args":[{"colors":["#E41A1C","#A65628","#4DAF4A","#FF7F00","#377EB8","#984EA3","#333333"],"labels":["Dedicated","Non-Dedicated","Federal","Hold/Staging","Family/Youth","Medical","Unclassified"],"na_color":null,"na_label":"NA","opacity":0.5,"position":"bottomright","type":"factor","title":"Facility type","extra":null,"layerId":null,"className":"info legend","group":null}]},{"method":"addLayersControl","args":[[],["Peak < 2","Peak ≥ 2"],{"collapsed":false,"autoZIndex":true,"position":"topright"}]},{"method":"addSearchFeatures","args":[["Peak < 2","Peak ≥ 2"],{"openPopup":true,"propertyName":"label","moveToLocation":true,"zoom":9,"container":"","minLength":1,"initial":false,"casesensitive":false,"autoType":true,"delayType":400,"tooltipLimit":-1,"tipAutoSubmit":true,"firstTipSubmit":false,"autoResize":true,"collapsed":true,"autoCollapse":false,"autoCollapseTime":1200,"textErr":"Location Not Found","textCancel":"Cancel","textPlaceholder":"Search...","position":"topleft","hideMarkerOnCollapse":true,"marker":{"animate":true,"circle":{"radius":10,"weight":3,"color":"#e03","stroke":true,"fill":false}}}]},{"method":"addControl","args":["<style>\n      /* Force legend text left in Quarto/Bootstrap contexts */\n      .leaflet-container .leaflet-control {\n        text-align: left !important;\n      }\n      .leaflet-container .leaflet-control .legend {\n        text-align: left !important;\n      }\n\n      /* Make the color swatch and label behave like a left-aligned row */\n      .leaflet-container .leaflet-control .legend i {\n        display: inline-block !important;\n        width: 14px !important;\n        height: 14px !important;\n        margin: 0 8px 0 0 !important;\n        vertical-align: middle !important;\n      }\n      .leaflet-container .leaflet-control .legend span {\n        display: inline !important;\n        vertical-align: middle !important;\n      }\n    <\/style>","bottomright",null,"info legend"]}],"limits":{"lat":[13.4760946,61.2185041],"lng":[-157.8638944,145.7028775]}},"evals":[],"jsHooks":[]}</script>
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-map-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;6: DDP facilities not in ICE FY25 annual statistics, sized by FY25 peak population
</figcaption>
</figure>
</div>
</div>
</div>
</section>
<section id="sec-period-comparison" class="level2">
<h2 class="anchored" data-anchor-id="sec-period-comparison">Unreported detention: Final Biden quarter vs recent Trump quarter</h2>
<p>The preceding sections establish which DDP facilities are absent from the ICE FY25 annual statistics. Here we compare the <strong>unreported population</strong>—detainees held at those unmatched facilities—during the final three months of the Biden administration versus a comparable window under the Trump administration.</p>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb16" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb16-1">biden_from <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.Date</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-10-20"</span>)</span>
<span id="cb16-2">biden_to   <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.Date</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2025-01-19"</span>)</span>
<span id="cb16-3">trump_from <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.Date</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2025-07-01"</span>)</span>
<span id="cb16-4">trump_to   <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.Date</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2025-09-30"</span>)</span></code></pre></div></div>
</details>
</div>
<ul>
<li><strong>Biden final quarter</strong>: 2024-10-20 to 2025-01-19 (92 days)</li>
<li><strong>Trump recent quarter</strong>: 2025-07-01 to 2025-09-30 (92 days)</li>
</ul>
<section id="aggregate-unreported-population" class="level3">
<h3 class="anchored" data-anchor-id="aggregate-unreported-population">Aggregate unreported population</h3>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb17" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb17-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">bind_rows</span>(biden_unmatched, trump_unmatched) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb17-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(peak_pop <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb17-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">group_by</span>(period, peak_class) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb17-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">summarise</span>(</span>
<span id="cb17-5">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Facilities =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">n</span>(),</span>
<span id="cb17-6">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Total ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(mean_pop)),</span>
<span id="cb17-7">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.groups =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"drop"</span></span>
<span id="cb17-8">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb17-9">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">arrange</span>(peak_class, period) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb17-10">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>()</span></code></pre></div></div>
</details>
<div id="tbl-period-totals" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-period-totals-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;5: Unreported DDP population by period (facilities not in ICE FY25)
</figcaption>
<div aria-describedby="tbl-period-totals-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">period</th>
<th style="text-align: left;">peak_class</th>
<th style="text-align: right;">Facilities</th>
<th style="text-align: right;">Total ADP</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Biden</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">109</td>
<td style="text-align: right;">8</td>
</tr>
<tr class="even">
<td style="text-align: left;">Trump</td>
<td style="text-align: left;">Peak &lt; 2</td>
<td style="text-align: right;">129</td>
<td style="text-align: right;">14</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Biden</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">206</td>
<td style="text-align: right;">396</td>
</tr>
<tr class="even">
<td style="text-align: left;">Trump</td>
<td style="text-align: left;">Peak ≥ 2</td>
<td style="text-align: right;">292</td>
<td style="text-align: right;">3233</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb18" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb18-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">bind_rows</span>(biden_unmatched, trump_unmatched) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb18-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(peak_pop <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, peak_class <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak \u2265 2"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb18-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">group_by</span>(period) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb18-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">summarise</span>(</span>
<span id="cb18-5">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Facilities =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">n</span>(),</span>
<span id="cb18-6">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Total ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(mean_pop)),</span>
<span id="cb18-7">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Mean ADP per facility</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(mean_pop) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">n</span>(), <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb18-8">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.groups =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"drop"</span></span>
<span id="cb18-9">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb18-10">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>()</span></code></pre></div></div>
</details>
<div id="tbl-period-headline" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-period-headline-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;6: Unreported population totals (Peak ≥ 2 facilities only)
</figcaption>
<div aria-describedby="tbl-period-headline-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">period</th>
<th style="text-align: right;">Facilities</th>
<th style="text-align: right;">Total ADP</th>
<th style="text-align: right;">Mean ADP per facility</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Biden</td>
<td style="text-align: right;">206</td>
<td style="text-align: right;">396</td>
<td style="text-align: right;">1.9</td>
</tr>
<tr class="even">
<td style="text-align: left;">Trump</td>
<td style="text-align: right;">292</td>
<td style="text-align: right;">3233</td>
<td style="text-align: right;">11.1</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<p>This graph shows the distribution of population totals among the unmatched facilities in each period, with a horizontal line marking the average for each period. The six largest facilities are named. As you can see, the largest unreported opulation in the Biden period would not even be an outlier in the Trump period. Conversely, the three largest unreported facilities in the Trump period each held more people in this period that all the Biden facilities combined.</p>
<div class="{column-screen-inset-right}">
<div class="cell" data-tbl-cap="Distribution plots for FY25 peak population compared between Biden and Trump">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb19" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb19-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">source</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"violin-plot.R"</span>)</span>
<span id="cb19-2">violin_plot</span></code></pre></div></div>
</details>
<div class="cell-output-display">
<div>
<figure class="figure">
<p><img src="https://carwilb.github.io/posts/ddp-comparison/index_files/figure-html/violin-plot-1.png" class="img-fluid figure-img" width="960"></p>
</figure>
</div>
</div>
</div>
</div>
</section>
<section id="by-facility-type-1" class="level3">
<h3 class="anchored" data-anchor-id="by-facility-type-1">By facility type</h3>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb20" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb20-1">type_comp <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">bind_rows</span>(biden_unmatched, trump_unmatched) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb20-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(peak_pop <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, adp_class <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ADP \u2265 2"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb20-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">group_by</span>(period, type_grouped) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb20-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">summarise</span>(</span>
<span id="cb20-5">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Facilities =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">n</span>(),</span>
<span id="cb20-6">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">ADP =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(mean_pop)),</span>
<span id="cb20-7">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.groups =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"drop"</span></span>
<span id="cb20-8">  )</span>
<span id="cb20-9"></span>
<span id="cb20-10">type_comp <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb20-11">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">pivot_wider</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">names_from =</span> period,</span>
<span id="cb20-12">              <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">values_from =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(Facilities, ADP),</span>
<span id="cb20-13">              <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">values_fill =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>,</span>
<span id="cb20-14">              <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">names_glue =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"{period} {.value}"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb20-15">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mutate</span>(</span>
<span id="cb20-16">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">ADP change</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Trump ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Biden ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span>,</span>
<span id="cb20-17">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">% change</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">if_else</span>(</span>
<span id="cb20-18">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Biden ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">NA_real_</span>,</span>
<span id="cb20-19">      <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>((<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Trump ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Biden ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">100</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb20-20">    )</span>
<span id="cb20-21">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb20-22">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">arrange</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">desc</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Trump ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span>)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb20-23">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">col.names =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facility type"</span>,</span>
<span id="cb20-24">                       <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Biden fac."</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Trump fac."</span>,</span>
<span id="cb20-25">                       <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Biden ADP"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Trump ADP"</span>,</span>
<span id="cb20-26">                       <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ADP change"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"% change"</span>))</span></code></pre></div></div>
</details>
<div id="tbl-period-type-composition" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-period-type-composition-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;7: Unreported facilities by type and period (ADP ≥ 2 only)
</figcaption>
<div aria-describedby="tbl-period-type-composition-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<colgroup>
<col style="width: 18%">
<col style="width: 14%">
<col style="width: 14%">
<col style="width: 13%">
<col style="width: 13%">
<col style="width: 14%">
<col style="width: 11%">
</colgroup>
<thead>
<tr class="header">
<th style="text-align: left;">Facility type</th>
<th style="text-align: right;">Biden fac.</th>
<th style="text-align: right;">Trump fac.</th>
<th style="text-align: right;">Biden ADP</th>
<th style="text-align: right;">Trump ADP</th>
<th style="text-align: right;">ADP change</th>
<th style="text-align: right;">% change</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">37</td>
<td style="text-align: right;">91</td>
<td style="text-align: right;">258</td>
<td style="text-align: right;">1848</td>
<td style="text-align: right;">1590</td>
<td style="text-align: right;">616.3</td>
</tr>
<tr class="even">
<td style="text-align: left;">Dedicated</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">808</td>
<td style="text-align: right;">808</td>
<td style="text-align: right;">NA</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">8</td>
<td style="text-align: right;">20</td>
<td style="text-align: right;">32</td>
<td style="text-align: right;">348</td>
<td style="text-align: right;">316</td>
<td style="text-align: right;">987.5</td>
</tr>
<tr class="even">
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">11</td>
<td style="text-align: right;">7</td>
<td style="text-align: right;">71</td>
<td style="text-align: right;">64</td>
<td style="text-align: right;">914.3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">2</td>
<td style="text-align: right;">10</td>
<td style="text-align: right;">14</td>
<td style="text-align: right;">48</td>
<td style="text-align: right;">34</td>
<td style="text-align: right;">242.9</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb21" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb21-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">bind_rows</span>(biden_unmatched, trump_unmatched) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb21-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(peak_pop <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, peak_class <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak &lt; 2"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb21-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">group_by</span>(period, type_grouped) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb21-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">summarise</span>(</span>
<span id="cb21-5">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Facilities =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">n</span>(),</span>
<span id="cb21-6">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">ADP =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(mean_pop), <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb21-7">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.groups =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"drop"</span></span>
<span id="cb21-8">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb21-9">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">pivot_wider</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">names_from =</span> period,</span>
<span id="cb21-10">              <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">values_from =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(Facilities, ADP),</span>
<span id="cb21-11">              <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">values_fill =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>,</span>
<span id="cb21-12">              <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">names_glue =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"{period} {.value}"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb21-13">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">arrange</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">desc</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Trump Facilities</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span>)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb21-14">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">col.names =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facility type"</span>,</span>
<span id="cb21-15">                       <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Biden fac."</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Trump fac."</span>,</span>
<span id="cb21-16">                       <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Biden ADP"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Trump ADP"</span>))</span></code></pre></div></div>
</details>
<div id="tbl-period-type-transient" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-period-type-transient-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;8: Transient facilities (Peak &lt; 2) by type and period
</figcaption>
<div aria-describedby="tbl-period-type-transient-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">Facility type</th>
<th style="text-align: right;">Biden fac.</th>
<th style="text-align: right;">Trump fac.</th>
<th style="text-align: right;">Biden ADP</th>
<th style="text-align: right;">Trump ADP</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">77</td>
<td style="text-align: right;">105</td>
<td style="text-align: right;">5.4</td>
<td style="text-align: right;">11.6</td>
</tr>
<tr class="even">
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">4</td>
<td style="text-align: right;">9</td>
<td style="text-align: right;">0.2</td>
<td style="text-align: right;">0.3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">9</td>
<td style="text-align: right;">8</td>
<td style="text-align: right;">1.3</td>
<td style="text-align: right;">2.1</td>
</tr>
<tr class="even">
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">17</td>
<td style="text-align: right;">5</td>
<td style="text-align: right;">0.5</td>
<td style="text-align: right;">0.2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Medical</td>
<td style="text-align: right;">2</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">0.1</td>
</tr>
<tr class="even">
<td style="text-align: left;">Family/Youth</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">0.0</td>
<td style="text-align: right;">0.0</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
</section>
<section id="facilities-active-in-only-one-period" class="level3">
<h3 class="anchored" data-anchor-id="facilities-active-in-only-one-period">Facilities active in only one period</h3>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb22" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb22-1">biden_active <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> biden_unmatched <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(peak_pop <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, peak_class <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak \u2265 2"</span>)</span>
<span id="cb22-2">trump_active <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> trump_unmatched <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(peak_pop <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, peak_class <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Peak \u2265 2"</span>)</span>
<span id="cb22-3"></span>
<span id="cb22-4">biden_only_codes <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">setdiff</span>(biden_active<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>detention_facility_code,</span>
<span id="cb22-5">                             trump_active<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>detention_facility_code)</span>
<span id="cb22-6">trump_only_codes <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">setdiff</span>(trump_active<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>detention_facility_code,</span>
<span id="cb22-7">                             biden_active<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>detention_facility_code)</span></code></pre></div></div>
</details>
</div>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb23" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb23-1"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> (<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">length</span>(biden_only_codes) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>) {</span>
<span id="cb23-2">  biden_unmatched <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb23-3">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(detention_facility_code <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%in%</span> biden_only_codes) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb23-4">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">arrange</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">desc</span>(mean_pop)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb23-5">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">select</span>(detention_facility, state, type_grouped, mean_pop, peak_pop) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb23-6">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mutate</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">mean_pop =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(mean_pop, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb23-7">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">col.names =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facility"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"State"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Type"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Biden ADP"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Biden peak"</span>)) </span>
<span id="cb23-8">}</span></code></pre></div></div>
</details>
<div id="tbl-biden-only" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-biden-only-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;9: Unreported facilities with Peak ≥ 2 active under Biden but not Trump
</figcaption>
<div aria-describedby="tbl-biden-only-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<colgroup>
<col style="width: 46%">
<col style="width: 7%">
<col style="width: 18%">
<col style="width: 13%">
<col style="width: 14%">
</colgroup>
<thead>
<tr class="header">
<th style="text-align: left;">Facility</th>
<th style="text-align: left;">State</th>
<th style="text-align: left;">Type</th>
<th style="text-align: right;">Biden ADP</th>
<th style="text-align: right;">Biden peak</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">NYE COUNTY SHERIFF-PAHRUMP</td>
<td style="text-align: left;">NV</td>
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">12.0</td>
<td style="text-align: right;">69</td>
</tr>
<tr class="even">
<td style="text-align: left;">GUAYNABO MDC (SAN JUAN)</td>
<td style="text-align: left;">PR</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">6.6</td>
<td style="text-align: right;">12</td>
</tr>
<tr class="odd">
<td style="text-align: left;">MONTGOMERY CO MAC SIM BUTLER D.F.</td>
<td style="text-align: left;">AL</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">0.9</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">BRONSON METHODIST HOSPITAL</td>
<td style="text-align: left;">MI</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.8</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">COBB CO SHERIFFS OFC ADULT DET CTR</td>
<td style="text-align: left;">GA</td>
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">0.6</td>
<td style="text-align: right;">4</td>
</tr>
<tr class="even">
<td style="text-align: left;">SAINT ALBANS HOLD ROOM</td>
<td style="text-align: left;">VT</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.5</td>
<td style="text-align: right;">7</td>
</tr>
<tr class="odd">
<td style="text-align: left;">LINCOLN COUNTY SHERIFF’S</td>
<td style="text-align: left;">MO</td>
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="even">
<td style="text-align: left;">ST. JOHN’S COUNTY JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">METHODIST HOSPITAL TEXSAN</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">WASHINGTON COUNTY JAIL</td>
<td style="text-align: left;">MN</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">ORANGE REGIONAL MED CTR</td>
<td style="text-align: left;">NY</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.2</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">LOMPOC FCI</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.2</td>
<td style="text-align: right;">6</td>
</tr>
<tr class="odd">
<td style="text-align: left;">COLUMBUS HOLDROOM</td>
<td style="text-align: left;">OH</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.2</td>
<td style="text-align: right;">9</td>
</tr>
<tr class="even">
<td style="text-align: left;">KARNES COUNTY CIVIL DET. FACILITY</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Family/Youth</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">KINNEY COUNTY JAIL</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">4</td>
</tr>
<tr class="even">
<td style="text-align: left;">SIOUX CITY HOLD ROOM</td>
<td style="text-align: left;">IA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">EL CENTRO REGIONAL MED CTR</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">METHODIST HOSPITAL</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">SPRINGFIELD FED.MED.CNTR</td>
<td style="text-align: left;">MO</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">FCI VICTORVILLE</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">7</td>
</tr>
<tr class="odd">
<td style="text-align: left;">ST FRANCIS HOSPITAL</td>
<td style="text-align: left;">GA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">CHANDLER REG MED CTR</td>
<td style="text-align: left;">AZ</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">CINCINNATI HOLDROOM</td>
<td style="text-align: left;">OH</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.0</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">SNJ HOLD ROOM</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.0</td>
<td style="text-align: right;">2</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<p>24 unreported facilities (Peak ≥ 2) were active in the Biden period but fell below the threshold or had zero population in the Trump period. Of these, 2 had ADP ≥ 2 under Biden, contributing 19 ADP in total.</p>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb24" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb24-1"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> (<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">length</span>(trump_only_codes) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>) {</span>
<span id="cb24-2">  trump_unmatched <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb24-3">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(detention_facility_code <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%in%</span> trump_only_codes) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb24-4">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">arrange</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">desc</span>(mean_pop)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb24-5">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">select</span>(detention_facility, state, type_grouped, mean_pop, peak_pop) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb24-6">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mutate</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">mean_pop =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(mean_pop, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb24-7">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">col.names =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facility"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"State"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Type"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Trump ADP"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Trump peak"</span>)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span> </span>
<span id="cb24-8">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scroll_box</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">height =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"630px"</span>)</span>
<span id="cb24-9">}</span></code></pre></div></div>
</details>
<div id="tbl-trump-only" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-trump-only-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;10: Unreported facilities with Peak ≥ 2 active under Trump but not Biden (scroll for full list)
</figcaption>
<div aria-describedby="tbl-trump-only-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<div style="border: 1px solid #ddd; padding: 0px; overflow-y: scroll; height:630px; ">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th data-quarto-table-cell-role="th" style="text-align: left; position: sticky; top: 0; background-color: #FFFFFF;">Facility</th>
<th data-quarto-table-cell-role="th" style="text-align: left; position: sticky; top: 0; background-color: #FFFFFF;">State</th>
<th data-quarto-table-cell-role="th" style="text-align: left; position: sticky; top: 0; background-color: #FFFFFF;">Type</th>
<th data-quarto-table-cell-role="th" style="text-align: right; position: sticky; top: 0; background-color: #FFFFFF;">Trump ADP</th>
<th data-quarto-table-cell-role="th" style="text-align: right; position: sticky; top: 0; background-color: #FFFFFF;">Trump peak</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">FLORIDA SOFT-SIDED FACILITY-SOUTH</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Dedicated</td>
<td style="text-align: right;">808.4</td>
<td style="text-align: right;">1482</td>
</tr>
<tr class="even">
<td style="text-align: left;">EL PASO SOFT SIDED FACILITY</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">326.1</td>
<td style="text-align: right;">1606</td>
</tr>
<tr class="odd">
<td style="text-align: left;">BAKER C. I.</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">176.1</td>
<td style="text-align: right;">667</td>
</tr>
<tr class="even">
<td style="text-align: left;">URSULA CENTRALIZED PROCESSING CNTR</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">84.6</td>
<td style="text-align: right;">365</td>
</tr>
<tr class="odd">
<td style="text-align: left;">BROOKS COUNTY JAIL (CONTRACT)</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">21.1</td>
<td style="text-align: right;">90</td>
</tr>
<tr class="even">
<td style="text-align: left;">TURNER GUIFORD KNIGHT (TGK) JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">14.9</td>
<td style="text-align: right;">27</td>
</tr>
<tr class="odd">
<td style="text-align: left;">WESTERN TENNESSEE DET. FAC.</td>
<td style="text-align: left;">TN</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">12.6</td>
<td style="text-align: right;">74</td>
</tr>
<tr class="even">
<td style="text-align: left;">MARTIN COUNTY JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">7.4</td>
<td style="text-align: right;">24</td>
</tr>
<tr class="odd">
<td style="text-align: left;">CHRISTIAN COUNTY JAIL</td>
<td style="text-align: left;">KY</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">6.4</td>
<td style="text-align: right;">51</td>
</tr>
<tr class="even">
<td style="text-align: left;">WESTMINSTER CUSTODY</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">6.0</td>
<td style="text-align: right;">7</td>
</tr>
<tr class="odd">
<td style="text-align: left;">RIO VISTA BEHV HLTH HSP</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">5.2</td>
<td style="text-align: right;">14</td>
</tr>
<tr class="even">
<td style="text-align: left;">ERO HOLD ROOM (SPRINGFIELD MO)</td>
<td style="text-align: left;">MO</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">5.0</td>
<td style="text-align: right;">62</td>
</tr>
<tr class="odd">
<td style="text-align: left;">OSCEOLA COUNTY JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">4.5</td>
<td style="text-align: right;">12</td>
</tr>
<tr class="even">
<td style="text-align: left;">EASTERN REGIONAL JAIL</td>
<td style="text-align: left;">WV</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">4.5</td>
<td style="text-align: right;">23</td>
</tr>
<tr class="odd">
<td style="text-align: left;">SW VIRGINIA REG JAIL AUTH-ABG FAC</td>
<td style="text-align: left;">VA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">4.0</td>
<td style="text-align: right;">47</td>
</tr>
<tr class="even">
<td style="text-align: left;">SIOUX COUNTY JAIL</td>
<td style="text-align: left;">IA</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">4.0</td>
<td style="text-align: right;">11</td>
</tr>
<tr class="odd">
<td style="text-align: left;">CHAVEZ DET CRT</td>
<td style="text-align: left;">NM</td>
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">3.5</td>
<td style="text-align: right;">16</td>
</tr>
<tr class="even">
<td style="text-align: left;">TOM GREEN CTY JAIL</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">3.2</td>
<td style="text-align: right;">11</td>
</tr>
<tr class="odd">
<td style="text-align: left;">LAWRENCE CO. JAIL, SD</td>
<td style="text-align: left;">SD</td>
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">2.7</td>
<td style="text-align: right;">11</td>
</tr>
<tr class="even">
<td style="text-align: left;">GRAND RAPIDS HOLDROOM</td>
<td style="text-align: left;">MI</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">2.7</td>
<td style="text-align: right;">9</td>
</tr>
<tr class="odd">
<td style="text-align: left;">NEW YORK PRESBYTERIAN HOSPITAL</td>
<td style="text-align: left;">NY</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">2.4</td>
<td style="text-align: right;">5</td>
</tr>
<tr class="even">
<td style="text-align: left;">CHESAPEAKE CITY JAIL</td>
<td style="text-align: left;">VA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">2.3</td>
<td style="text-align: right;">25</td>
</tr>
<tr class="odd">
<td style="text-align: left;">CEDAR RAPIDS HOLD ROOM</td>
<td style="text-align: left;">IA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">2.2</td>
<td style="text-align: right;">17</td>
</tr>
<tr class="even">
<td style="text-align: left;">CASCADE COUNTY JAIL, MT</td>
<td style="text-align: left;">MT</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">2.1</td>
<td style="text-align: right;">5</td>
</tr>
<tr class="odd">
<td style="text-align: left;">HILLSBOROUGH COUNTY JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">2.0</td>
<td style="text-align: right;">12</td>
</tr>
<tr class="even">
<td style="text-align: left;">WHITE MEMORIAL HOSPITAL</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">1.8</td>
<td style="text-align: right;">4</td>
</tr>
<tr class="odd">
<td style="text-align: left;">SCOTT COUNTY JAIL</td>
<td style="text-align: left;">IA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">1.8</td>
<td style="text-align: right;">7</td>
</tr>
<tr class="even">
<td style="text-align: left;">SYRACUSE HOLD ROOM</td>
<td style="text-align: left;">NY</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">1.8</td>
<td style="text-align: right;">14</td>
</tr>
<tr class="odd">
<td style="text-align: left;">SEMINOLE COUNTY JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">1.7</td>
<td style="text-align: right;">5</td>
</tr>
<tr class="even">
<td style="text-align: left;">CACHE CO. JAIL</td>
<td style="text-align: left;">UT</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">1.7</td>
<td style="text-align: right;">13</td>
</tr>
<tr class="odd">
<td style="text-align: left;">BUFFALO HOLD ROOM</td>
<td style="text-align: left;">NY</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">1.7</td>
<td style="text-align: right;">17</td>
</tr>
<tr class="even">
<td style="text-align: left;">ST JOSEPH MEDICAL CENTER</td>
<td style="text-align: left;">WA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">1.7</td>
<td style="text-align: right;">4</td>
</tr>
<tr class="odd">
<td style="text-align: left;">MINICASSIA DET. CENTER</td>
<td style="text-align: left;">ID</td>
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">1.6</td>
<td style="text-align: right;">7</td>
</tr>
<tr class="even">
<td style="text-align: left;">LARAMIE COUNTY JAIL</td>
<td style="text-align: left;">WY</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">1.6</td>
<td style="text-align: right;">8</td>
</tr>
<tr class="odd">
<td style="text-align: left;">RIO GRANDE VALLEY STAGING</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">1.5</td>
<td style="text-align: right;">11</td>
</tr>
<tr class="even">
<td style="text-align: left;">MARION COUNTY JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">1.5</td>
<td style="text-align: right;">5</td>
</tr>
<tr class="odd">
<td style="text-align: left;">COLO SPRINGS DEN HSI HOLD</td>
<td style="text-align: left;">CO</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">1.5</td>
<td style="text-align: right;">9</td>
</tr>
<tr class="even">
<td style="text-align: left;">LIRS - LFSRM FORT COLLINS LTFC CO</td>
<td style="text-align: left;">CO</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">1.5</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">TEX HEALTH HUGULEY HOSP</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Medical</td>
<td style="text-align: right;">1.3</td>
<td style="text-align: right;">4</td>
</tr>
<tr class="even">
<td style="text-align: left;">NASSAU COUNTY ICE TRAILER</td>
<td style="text-align: left;">NY</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">1.3</td>
<td style="text-align: right;">13</td>
</tr>
<tr class="odd">
<td style="text-align: left;">UNIVERSITY MED CENTER OF EL PASO</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">1.2</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="even">
<td style="text-align: left;">BREVARD COUNTY JAIL COMPLEX</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">1.2</td>
<td style="text-align: right;">5</td>
</tr>
<tr class="odd">
<td style="text-align: left;">AGUADILLA SPC</td>
<td style="text-align: left;">PR</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">1.2</td>
<td style="text-align: right;">26</td>
</tr>
<tr class="even">
<td style="text-align: left;">EL PASO LTAC HOSPITAL</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">1.1</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">PROMISE HOSPITAL</td>
<td style="text-align: left;">AZ</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">1.1</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="even">
<td style="text-align: left;">ALVARADO PARKWAY INSTITUTE</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">1.0</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">UCHEALTH UNV HOSP OF CO</td>
<td style="text-align: left;">CO</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.9</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">ANAHEIM GLOBAL MEDICAL CENTER</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.9</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">MANATEE COUNTY DETENTION-ANNEX</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.9</td>
<td style="text-align: right;">7</td>
</tr>
<tr class="even">
<td style="text-align: left;">VRK PRCS</td>
<td style="text-align: left;">NY</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.9</td>
<td style="text-align: right;">12</td>
</tr>
<tr class="odd">
<td style="text-align: left;">HARRIS COUNTY PSYCHIATRIC CENTER</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.9</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">DADE CORRECTIONAL INST</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Dedicated</td>
<td style="text-align: right;">0.8</td>
<td style="text-align: right;">11</td>
</tr>
<tr class="odd">
<td style="text-align: left;">BUFFALO USBP HOLD ROOM</td>
<td style="text-align: left;">NY</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">0.7</td>
<td style="text-align: right;">20</td>
</tr>
<tr class="even">
<td style="text-align: left;">POLK COUNTY JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.7</td>
<td style="text-align: right;">23</td>
</tr>
<tr class="odd">
<td style="text-align: left;">LOUISVILLE HOLD ROOM</td>
<td style="text-align: left;">KY</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.7</td>
<td style="text-align: right;">4</td>
</tr>
<tr class="even">
<td style="text-align: left;">CBP MOVEMENT COORDINATION AREA</td>
<td style="text-align: left;">NA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.7</td>
<td style="text-align: right;">12</td>
</tr>
<tr class="odd">
<td style="text-align: left;">FRANKLIN COUNTY JAIL</td>
<td style="text-align: left;">PA</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">0.6</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="even">
<td style="text-align: left;">BROWN COUNTY JAIL</td>
<td style="text-align: left;">WI</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.6</td>
<td style="text-align: right;">4</td>
</tr>
<tr class="odd">
<td style="text-align: left;">CHAMPLAIN HOLD ROOM</td>
<td style="text-align: left;">NY</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.5</td>
<td style="text-align: right;">8</td>
</tr>
<tr class="even">
<td style="text-align: left;">HOUSTON HEALTHCARE HOSP</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.5</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">LOUDOUN COUNTY</td>
<td style="text-align: left;">VA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.5</td>
<td style="text-align: right;">4</td>
</tr>
<tr class="even">
<td style="text-align: left;">NORTHWEST REG. ADULT DET.</td>
<td style="text-align: left;">VA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.5</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">WENTWORTH DOUGLAS HOSPITAL</td>
<td style="text-align: left;">NH</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.5</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">RAPID CITY HOLD ROOM</td>
<td style="text-align: left;">SD</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.5</td>
<td style="text-align: right;">7</td>
</tr>
<tr class="odd">
<td style="text-align: left;">FRIO REGIONAL HOSPITAL</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.5</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">CLEVELAND HOLD ROOM</td>
<td style="text-align: left;">OH</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">14</td>
</tr>
<tr class="odd">
<td style="text-align: left;">NASHVILLE HOLD ROOM</td>
<td style="text-align: left;">TN</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">22</td>
</tr>
<tr class="even">
<td style="text-align: left;">BROWARD GENERAL MEDICAL CENTER</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">UNION COUNTY JAIL</td>
<td style="text-align: left;">SD</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">9</td>
</tr>
<tr class="even">
<td style="text-align: left;">GLENWOOD SPRINGS HOLDROOM</td>
<td style="text-align: left;">CO</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">MEDFORD SUB-OFFICE</td>
<td style="text-align: left;">OR</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">14</td>
</tr>
<tr class="even">
<td style="text-align: left;">UNIVERSITY HOSPITAL</td>
<td style="text-align: left;">NJ</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">ALAMOSA HOLDROOM</td>
<td style="text-align: left;">CO</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">7</td>
</tr>
<tr class="even">
<td style="text-align: left;">EUGENE HOLDROOM</td>
<td style="text-align: left;">OR</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">7</td>
</tr>
<tr class="odd">
<td style="text-align: left;">MONROE COUNTY JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">LOYOLA CENTER FOR HEALTH</td>
<td style="text-align: left;">IL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">6</td>
</tr>
<tr class="odd">
<td style="text-align: left;">TX HLTH HARRIS METH HOSP</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.4</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">LAREDO MEDICAL CENTER</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">NASSAU UNIV MED CTR</td>
<td style="text-align: left;">NY</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="even">
<td style="text-align: left;">GRADY MEMORIAL HOSPITAL</td>
<td style="text-align: left;">GA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">HIGHLAND MTN COR CTR</td>
<td style="text-align: left;">AK</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">DURANGO HOLDROOM</td>
<td style="text-align: left;">CO</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">6</td>
</tr>
<tr class="odd">
<td style="text-align: left;">ARROWHEAD REGIONAL MED CENTER</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="even">
<td style="text-align: left;">MCLENNAN COUNTY JAIL</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">BOSTON SPC</td>
<td style="text-align: left;">MA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">CENTRAL VA REGIONAL JAIL</td>
<td style="text-align: left;">VA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">VIRGINIA BEACH</td>
<td style="text-align: left;">VA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">CAMPBELL COUNTY JAIL</td>
<td style="text-align: left;">WY</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">4</td>
</tr>
<tr class="odd">
<td style="text-align: left;">FLAGLER COUNTY JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">12</td>
</tr>
<tr class="even">
<td style="text-align: left;">SUMTER COUNTY JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.3</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">BANNER IRONWOOD MED CTR</td>
<td style="text-align: left;">AZ</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.2</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">CRAIG HOLDROOM</td>
<td style="text-align: left;">CO</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.2</td>
<td style="text-align: right;">4</td>
</tr>
<tr class="odd">
<td style="text-align: left;">PARKLAND HOSPITAL</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.2</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="even">
<td style="text-align: left;">WEST MIAMI DADE BAPT HEALTH EMERG</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.2</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">SALINE COUNTY JAIL</td>
<td style="text-align: left;">NE</td>
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">0.2</td>
<td style="text-align: right;">7</td>
</tr>
<tr class="even">
<td style="text-align: left;">ST ELIZABETH YOUNGSTOWN HOSPITAL</td>
<td style="text-align: left;">OH</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.2</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">UNIVERSITY MEDICAL CENTER</td>
<td style="text-align: left;">NV</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.2</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">CHARLESTON COUNTY CORRECT</td>
<td style="text-align: left;">SC</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">EL PASO COUNTY JAIL (TX)</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">PALM BEACH COUNTY JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">4</td>
</tr>
<tr class="odd">
<td style="text-align: left;">MOUNT NITTANY MEDICAL CENTER</td>
<td style="text-align: left;">PA</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">RIO GRANDE ST.HOSPITAL</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">7</td>
</tr>
<tr class="odd">
<td style="text-align: left;">CHARLOTTE COUNTY JAIL</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">ANCHORAGE SUB-OFFICE HOLD ROOM</td>
<td style="text-align: left;">AK</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">5</td>
</tr>
<tr class="odd">
<td style="text-align: left;">GARDEN CITY PROCESSING @ FINNEY CO</td>
<td style="text-align: left;">KS</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="even">
<td style="text-align: left;">HEL DISTRICT CUSTODY</td>
<td style="text-align: left;">MT</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.1</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="odd">
<td style="text-align: left;">FORT SMITH HOLDROOM</td>
<td style="text-align: left;">AR</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.0</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="even">
<td style="text-align: left;">HENDERSONVILLE HOLD ROOM</td>
<td style="text-align: left;">NC</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.0</td>
<td style="text-align: right;">3</td>
</tr>
<tr class="odd">
<td style="text-align: left;">WICHITA HOLDROOM</td>
<td style="text-align: left;">KS</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0.0</td>
<td style="text-align: right;">2</td>
</tr>
<tr class="even">
<td style="text-align: left;">MARION CO JAIL</td>
<td style="text-align: left;">OR</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0.0</td>
<td style="text-align: right;">2</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</figure>
</div>
</div>
<p>110 unreported facilities (Peak ≥ 2) were active in the Trump period but not the Biden period. Of these, 25 had ADP &lt; 2 under Trump, contributing 1514 ADP in total.</p>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb25" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb25-1"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> (<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">length</span>(trump_only_codes) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>) {</span>
<span id="cb25-2">  trump_unmatched <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb25-3">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(detention_facility_code <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%in%</span> trump_only_codes) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb25-4">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">group_by</span>(type_grouped) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb25-5">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">summarise</span>(</span>
<span id="cb25-6">      <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Facilities =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">n</span>(),</span>
<span id="cb25-7">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Total ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sum</span>(mean_pop)),</span>
<span id="cb25-8">      <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">.groups =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"drop"</span></span>
<span id="cb25-9">    ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb25-10">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">arrange</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">desc</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Total ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span>)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb25-11">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">col.names =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facility type"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facilities"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Total ADP"</span>))</span>
<span id="cb25-12">}</span></code></pre></div></div>
</details>
<div id="tbl-trump-only-by-type" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-trump-only-by-type-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;11: New unreported facilities under Trump (ADP ≥ 2), by type
</figcaption>
<div aria-describedby="tbl-trump-only-by-type-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<thead>
<tr class="header">
<th style="text-align: left;">Facility type</th>
<th style="text-align: right;">Facilities</th>
<th style="text-align: right;">Total ADP</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Dedicated</td>
<td style="text-align: right;">2</td>
<td style="text-align: right;">809</td>
</tr>
<tr class="even">
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">27</td>
<td style="text-align: right;">355</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">60</td>
<td style="text-align: right;">311</td>
</tr>
<tr class="even">
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">12</td>
<td style="text-align: right;">59</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">8</td>
<td style="text-align: right;">33</td>
</tr>
<tr class="even">
<td style="text-align: left;">Medical</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">1</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
</section>
<section id="facilities-active-in-both-periods" class="level3">
<h3 class="anchored" data-anchor-id="facilities-active-in-both-periods">Facilities active in both periods</h3>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb26" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb26-1">both_codes <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">intersect</span>(biden_active<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>detention_facility_code,</span>
<span id="cb26-2">                         trump_active<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>detention_facility_code)</span>
<span id="cb26-3"></span>
<span id="cb26-4">both_compare <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> biden_unmatched <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb26-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(detention_facility_code <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%in%</span> both_codes) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb26-6">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">select</span>(detention_facility_code, detention_facility, state, type_grouped,</span>
<span id="cb26-7">         <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">biden_adp =</span> mean_pop, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">biden_peak =</span> peak_pop) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb26-8">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">inner_join</span>(</span>
<span id="cb26-9">    trump_unmatched <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb26-10">      <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">filter</span>(detention_facility_code <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%in%</span> both_codes) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb26-11">      <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">select</span>(detention_facility_code,</span>
<span id="cb26-12">             <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">trump_adp =</span> mean_pop, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">trump_peak =</span> peak_pop),</span>
<span id="cb26-13">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">by =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"detention_facility_code"</span></span>
<span id="cb26-14">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb26-15">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mutate</span>(</span>
<span id="cb26-16">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">adp_change =</span> trump_adp <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> biden_adp,</span>
<span id="cb26-17">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">adp_pct_change =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">if_else</span>(biden_adp <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">NA_real_</span>,</span>
<span id="cb26-18">                             (trump_adp <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> biden_adp <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">100</span>)</span>
<span id="cb26-19">  )</span></code></pre></div></div>
</details>
</div>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb27" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb27-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ggplot</span>(both_compare, <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">aes</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> biden_adp, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> trump_adp, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">color =</span> type_grouped)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb27-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">geom_abline</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">slope =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">intercept =</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">linetype =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"dashed"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">alpha =</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.5</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb27-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">geom_point</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">alpha =</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.7</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb27-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scale_x_log10</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">labels =</span> comma) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb27-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scale_y_log10</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">labels =</span> comma) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb27-6">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">labs</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Biden final quarter ADP"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Trump recent quarter ADP"</span>,</span>
<span id="cb27-7">       <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">color =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facility type"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output-display">
<div id="fig-scatter-periods" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-scatter-periods-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://carwilb.github.io/posts/ddp-comparison/index_files/figure-html/fig-scatter-periods-1.png" class="img-fluid figure-img" width="672">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-scatter-periods-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;7: Mean ADP at unreported facilities: Biden vs Trump (facilities with ADP ≥ 2 in both periods, log scale)
</figcaption>
</figure>
</div>
</div>
</div>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb28" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb28-1">both_compare <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb28-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">arrange</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">desc</span>(adp_change)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb28-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">head</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">15</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb28-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">transmute</span>(</span>
<span id="cb28-5">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Facility =</span> detention_facility, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">State =</span> state, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Type =</span> type_grouped,</span>
<span id="cb28-6">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Biden ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(biden_adp),</span>
<span id="cb28-7">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Trump ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(trump_adp),</span>
<span id="cb28-8">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Change =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(adp_change)</span>
<span id="cb28-9">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb28-10">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>()</span></code></pre></div></div>
</details>
<div id="tbl-top-increases" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-top-increases-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;12: Top 15 unreported facilities by ADP increase (Biden → Trump)
</figcaption>
<div aria-describedby="tbl-top-increases-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<colgroup>
<col style="width: 40%">
<col style="width: 7%">
<col style="width: 16%">
<col style="width: 12%">
<col style="width: 12%">
<col style="width: 9%">
</colgroup>
<thead>
<tr class="header">
<th style="text-align: left;">Facility</th>
<th style="text-align: left;">State</th>
<th style="text-align: left;">Type</th>
<th style="text-align: right;">Biden ADP</th>
<th style="text-align: right;">Trump ADP</th>
<th style="text-align: right;">Change</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">DALLAS F.O. HOLD</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">16</td>
<td style="text-align: right;">104</td>
<td style="text-align: right;">88</td>
</tr>
<tr class="even">
<td style="text-align: left;">LOS CUST CASE</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">7</td>
<td style="text-align: right;">89</td>
<td style="text-align: right;">82</td>
</tr>
<tr class="odd">
<td style="text-align: left;">ATLANTA DIST. HOLD RM</td>
<td style="text-align: left;">GA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">9</td>
<td style="text-align: right;">89</td>
<td style="text-align: right;">80</td>
</tr>
<tr class="even">
<td style="text-align: left;">BROADVIEW SERVICE STAGING</td>
<td style="text-align: left;">IL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">9</td>
<td style="text-align: right;">89</td>
<td style="text-align: right;">80</td>
</tr>
<tr class="odd">
<td style="text-align: left;">MONTGOMERY HOLD RM</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">30</td>
<td style="text-align: right;">96</td>
<td style="text-align: right;">66</td>
</tr>
<tr class="even">
<td style="text-align: left;">NYC HOLD ROOM</td>
<td style="text-align: left;">NY</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">5</td>
<td style="text-align: right;">67</td>
<td style="text-align: right;">62</td>
</tr>
<tr class="odd">
<td style="text-align: left;">AZ REM OP COORD CENTER (AROCC)</td>
<td style="text-align: left;">AZ</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">16</td>
<td style="text-align: right;">70</td>
<td style="text-align: right;">54</td>
</tr>
<tr class="even">
<td style="text-align: left;">BALTIMORE HOLD ROOM</td>
<td style="text-align: left;">MD</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">2</td>
<td style="text-align: right;">47</td>
<td style="text-align: right;">45</td>
</tr>
<tr class="odd">
<td style="text-align: left;">WASHINGTON FIELD OFFICE</td>
<td style="text-align: left;">VA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">7</td>
<td style="text-align: right;">44</td>
<td style="text-align: right;">37</td>
</tr>
<tr class="even">
<td style="text-align: left;">MIAMI (MIRAMAR) HOLD ROOM</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">35</td>
<td style="text-align: right;">35</td>
</tr>
<tr class="odd">
<td style="text-align: left;">SAN ANTONIO DRO HOLD ROOM</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">5</td>
<td style="text-align: right;">36</td>
<td style="text-align: right;">31</td>
</tr>
<tr class="even">
<td style="text-align: left;">RICHMOND SUB-OFFICE HOLD</td>
<td style="text-align: left;">VA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">5</td>
<td style="text-align: right;">34</td>
<td style="text-align: right;">29</td>
</tr>
<tr class="odd">
<td style="text-align: left;">ORLANDO HOLD ROOM</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">6</td>
<td style="text-align: right;">34</td>
<td style="text-align: right;">28</td>
</tr>
<tr class="even">
<td style="text-align: left;">TAMPA HOLD ROOM</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">5</td>
<td style="text-align: right;">33</td>
<td style="text-align: right;">27</td>
</tr>
<tr class="odd">
<td style="text-align: left;">SND DISTRICT STAGING</td>
<td style="text-align: left;">CA</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">9</td>
<td style="text-align: right;">35</td>
<td style="text-align: right;">27</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb29" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb29-1">both_compare <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb29-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">arrange</span>(adp_change) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb29-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">head</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">15</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb29-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">transmute</span>(</span>
<span id="cb29-5">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Facility =</span> detention_facility, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">State =</span> state, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Type =</span> type_grouped,</span>
<span id="cb29-6">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Biden ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(biden_adp),</span>
<span id="cb29-7">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Trump ADP</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">=</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(trump_adp),</span>
<span id="cb29-8">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">Change =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">round</span>(adp_change)</span>
<span id="cb29-9">  ) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb29-10">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">kable</span>()</span></code></pre></div></div>
</details>
<div id="tbl-top-decreases" class="cell quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-top-decreases-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;13: Top 15 unreported facilities by ADP decrease (Biden → Trump)
</figcaption>
<div aria-describedby="tbl-top-decreases-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<div class="cell-output-display">
<table class="do-not-create-environment cell caption-top table table-sm table-striped small">
<colgroup>
<col style="width: 41%">
<col style="width: 7%">
<col style="width: 17%">
<col style="width: 12%">
<col style="width: 12%">
<col style="width: 8%">
</colgroup>
<thead>
<tr class="header">
<th style="text-align: left;">Facility</th>
<th style="text-align: left;">State</th>
<th style="text-align: left;">Type</th>
<th style="text-align: right;">Biden ADP</th>
<th style="text-align: right;">Trump ADP</th>
<th style="text-align: right;">Change</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">KROME HOLD ROOM</td>
<td style="text-align: left;">FL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">21</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">-21</td>
</tr>
<tr class="even">
<td style="text-align: left;">MCALLEN HOLD ROOM</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">13</td>
<td style="text-align: right;">5</td>
<td style="text-align: right;">-7</td>
</tr>
<tr class="odd">
<td style="text-align: left;">PECOS HOLD ROOM</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">3</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">-1</td>
</tr>
<tr class="even">
<td style="text-align: left;">COLUMBIA CARE CENTER</td>
<td style="text-align: left;">SC</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">3</td>
<td style="text-align: right;">2</td>
<td style="text-align: right;">-1</td>
</tr>
<tr class="odd">
<td style="text-align: left;">NEW/INS OS HOLD ROOM</td>
<td style="text-align: left;">NJ</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">-1</td>
</tr>
<tr class="even">
<td style="text-align: left;">CASPER HOLDROOM</td>
<td style="text-align: left;">WY</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left;">CHARLOTTE AMALIE HOLDROOM</td>
<td style="text-align: left;">VI</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="even">
<td style="text-align: left;">BALDWIN COUNTY COR. CENTER</td>
<td style="text-align: left;">AL</td>
<td style="text-align: left;">Non-Dedicated</td>
<td style="text-align: right;">2</td>
<td style="text-align: right;">2</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left;">FAYETTEVILLE HOLD ROOM</td>
<td style="text-align: left;">AR</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="even">
<td style="text-align: left;">LAS CRUCES HOLD ROOM</td>
<td style="text-align: left;">NM</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left;">JACK HARWELL DETENTION CENTER</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="even">
<td style="text-align: left;">VALLEYWISE HEALTH MED CTR</td>
<td style="text-align: left;">AZ</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left;">LEXINGTON PROCESSING @ FAYETTE CO</td>
<td style="text-align: left;">KY</td>
<td style="text-align: left;">Unclassified</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="even">
<td style="text-align: left;">ROCK ISLAND HOLD ROOM</td>
<td style="text-align: left;">IL</td>
<td style="text-align: left;">Hold/Staging</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">1</td>
<td style="text-align: right;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left;">TITUS COUNTY JAIL</td>
<td style="text-align: left;">TX</td>
<td style="text-align: left;">Federal</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
<td style="text-align: right;">0</td>
</tr>
</tbody>
</table>
</div>
</div>
</figure>
</div>
</div>
</section>
<section id="daily-unreported-population-by-period" class="level3">
<h3 class="anchored" data-anchor-id="daily-unreported-population-by-period">Daily unreported population by period</h3>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb30" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb30-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ggplot</span>(daily_unreported, <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">aes</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> date, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> total_pop, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">fill =</span> type_grouped)) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb30-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">geom_col</span>() <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb30-3">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">facet_wrap</span>(<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span>period, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">scales =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"free_x"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb30-4">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scale_y_continuous</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">labels =</span> comma) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb30-5">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">scale_x_date</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">date_labels =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"%b %d"</span>) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span></span>
<span id="cb30-6">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">labs</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">x =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">NULL</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">y =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Unreported detained population"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">fill =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Facility type"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output-display">
<div id="fig-daily-unreported-periods" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-fig figure">
<div aria-describedby="fig-daily-unreported-periods-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<img src="https://carwilb.github.io/posts/ddp-comparison/index_files/figure-html/fig-daily-unreported-periods-1.png" class="img-fluid figure-img" width="672">
</div>
<figcaption class="quarto-float-caption-bottom quarto-float-caption quarto-float-fig" id="fig-daily-unreported-periods-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Figure&nbsp;8: Daily unreported detention population during both comparison periods, by facility type (ADP ≥ 2 facilities only)
</figcaption>
</figure>
</div>
</div>
</div>


</section>
</section>

 ]]></description>
  <guid>https://carwilb.github.io/posts/ddp-comparison/</guid>
  <pubDate>Fri, 10 Apr 2026 13:30:55 GMT</pubDate>
  <media:content url="https://carwilb.github.io/posts/ddp-comparison/ddp-comparison-thumbnail.png" medium="image" type="image/png" height="96" width="144"/>
</item>
<item>
  <title>Interactive Map of ICE Detention Facilities</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/posts/ice-detention-map/</link>
  <description><![CDATA[ 





<p>This interactive map shows 390 U.S. Immigration and Customs Enforcement (ICE) detention facilities active between fiscal years 2010 and 2026. Circle size represents the facility’s average daily population (ADP). Color indicates facility type. Open facilities are shown in saturated colors sized by their most recent ADP; closed facilities appear in desaturated tones sized by their peak ADP.</p>
<p>The white circle represents the population-weighted geographic center of all facilities for each fiscal year. You will need to zoom out or scroll to see facilities in Hawaii, Alaska, and several Pacific islands.</p>
<p>Click any facility to see its name, location, type, operational status, and a bar chart of ADP across all available fiscal years. The map is searchable by facility name and location; use two-letter abbreviations to search for states.</p>
<div class="column-screen-inset">
<div class="cell">
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-6c85941c784063c88c47" style="width:100%;height:715px;"></div>
<script type="application/json" data-for="htmlwidget-6c85941c784063c88c47">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"fitBounds":[17.5,-125,49.5,-65,[]],"calls":[{"method":"addProviderTiles","args":["CartoDB.Positron",null,null,{"errorTileUrl":"","noWrap":false,"detectRetina":false}]},{"method":"addCircleMarkers","args":[[40.1917752,36.0683261,42.75117669999999,41.08328729999999,39.19977069999999,40.6457985,32.8420841,40.8739964,40.3795474,31.7797922,32.8388766,38.2131205,29.9542788,41.66567149999999,27.2482081,30.75823759999999,37.8122753,35.4090546,41.7351513,39.6421981,44.788815,31.7755649,32.5650942,32.5436666,29.4234143,32.8460024,42.2544692,37.0196035,35.14726,41.1547743,33.9084065,31.7952659,46.1405685,36.1683772,34.4181788,39.9020477,39.7596321,38.5479445,33.057249,41.2530735,32.5895269,32.8290476,36.096971,42.596401,39.3658822,34.7404942,35.257809,18.4235781,32.2096678,29.4020511,33.308392,39.1694445,40.7279128,31.549304,33.6636063,32.3742348,41.0756796,28.8849772,42.5942926,46.997416,32.8096576,34.1455578,29.3508612,28.8982611,31.9028296,40.6048678,29.4651997,38.9718009,34.7836234,42.01046119999999,42.3408464,31.994141,24.576552,32.3819047,42.9531454,38.9795443,38.4321028,40.5600739,31.7302787,43.6481147,45.6134532,45.6134532,36.2206495,42.0130434,35.6221933,38.4080063,32.9007766,39.3714749,42.05559290000001,37.2690407,35.115385,47.45144699999999,42.7095864,37.6764999,33.9783467,33.43492120000001,33.1771862,30.4802794,40.481929,40.6970507,39.0466939,28.6578745,42.0109623,42.3338356,33.575455,26.4552267,34.0265493,38.943053,32.586731,33.7825672,31.4464325,28.8819255,37.2165677,35.7759236,30.1967424,31.1664137,37.2461454,34.7937394,32.695999,38.1700717,46.60419419999999,42.8717874,39.9865258,39.1412869,33.7475641,30.8749079,37.9950562,38.3060244,32.0785912,34.9805119,26.470892,44.9562397,42.3133107,43.06291119999999,34.2384105,35.3142188,38.7981291,42.4330027,41.509035,38.7880487,42.0398749,40.5061336,33.7487689,42.9756102,34.1473511,31.4635264,34.6108031,43.665091,39.7994917,38.7519901,38.8442758,42.260328,31.3553982,32.41693060000001,33.1546792,34.0919793,40.4345441,34.5022411,41.4058191,35.1892029,39.4373784,37.2471854,35.2198207,36.9238408,40.1587796,32.3743852,34.86963,42.882147,33.7487689,34.0544968,38.2754264,38.3477524,39.630125,34.1023852,33.7482944,31.80787909999999,40.1488668],[-75.915868,-79.40356709999999,-73.81635849999999,-85.13990869999999,-76.59404069999999,-80.24205549999999,-97.13133500000001,-74.03937470000001,-76.01592889999999,-106.3932017,-93.74603530000002,-84.24984950000001,-82.1085483,-70.99593159999999,-98.12491639999999,-98.2283585,-96.83250550000001,-80.5782942,-111.8361612,-94.046756,-93.5929618,-91.8368181,-117.0524063,-117.0297398,-98.49707739999999,-80.01401620000001,-79.503649,-93.2054354,-107.8514466,-77.3377862,-84.5809412,-106.402018,-122.9197446,-86.7793245,-85.7729963,-75.51529549999999,-104.8491356,-76.0584168,-80.221052,-95.9383692,-116.9196445,-97.10220439999999,-80.2422699,-72.61253189999999,-77.41307570000001,-97.2220938,-81.1822263,-66.1036671,-95.84675609999999,-98.3904132,-111.9734076,-76.78182099999999,-74.10840379999999,-97.081435,-117.6999484,-97.3884638,-87.8581207,-97.9008355,-87.91194809999999,-120.5494155,-111.5320133,-114.2904066,-98.4295604,-99.11918559999999,-92.2426468,-75.4664248,-82.6408105,-90.96271609999999,-91.9015024,-93.05956689999999,-88.44099399999999,-102.0750416,-81.75143799999999,-86.29798959999999,-74.3726886,-91.5047677,-92.8397605,-82.8067453,-93.0994456,-95.5899823,-121.201599,-121.201599,-115.9869885,-89.3297367,-95.97454979999999,-85.37977599999999,-105.9601797,-94.78011719999999,-104.9522605,-89.16413559999999,-101.8680283,-122.2948795,-73.70107660000001,-106.3504446,-117.3744144,-84.30644909999999,-99.7217295,-90.09636309999999,-96.9608662,-111.9157703,-95.66919399999999,-99.2003862,-93.44194689999999,-71.06861689999999,-111.9274702,-97.78092289999999,-90.4462432,-105.1513323,-97.3168944,-117.8882283,-106.1233978,-97.9374948,-76.60355729999999,-78.64084889999999,-84.3771057,-105.3519631,-80.1760426,-84.979935,-114.6038311,-75.3758308,-120.5080052,-97.393024,-76.6609023,-121.5866877,-84.3955253,-81.9806924,-122.3539701,-121.4234753,-106.278468,-81.1917967,-97.758336,-93.08540049999999,-83.20014809999999,-77.03124199999999,-83.81264209999999,-80.84030349999999,-77.0646527,-123.3033804,-90.58090899999999,-104.7789648,-88.28337019999999,-107.5564184,-117.8783938,-85.6316746,-118.2491447,-100.4398316,-111.9182493,-116.6817811,-89.6498742,-77.4799665,-77.3110609,-71.2085658,-110.9278601,-99.7349093,-94.97105119999999,-118.1266645,-79.99352360000002,-109.3654253,-81.4975106,-111.6414322,-77.96108959999999,-107.8782578,-80.8354389,-89.3520295,-75.4231307,-86.30494399999999,-110.1558946,-77.21189500000001,-117.8783938,-117.7539275,-104.6106011,-98.20625440000001,-75.3569385,-117.2740451,-117.8744444,-91.3937421,-111.6597178],[3.057826464950208,5.010531523863117,5.089997156865294,3,5.170312471752574,3.380986618992767,4.337684176147178,10.77905966768504,5.069512284992433,5.003497950860199,9.134870308841945,3.213102341199346,3,8.789145426781719,8.273794222929293,3.998537922895898,7.102734976558643,3,5.120413854476023,5.096788285825762,5.062646320113187,10.69973048490955,3.671096463042712,3.992494780835913,3.301992380873566,6.629415539262737,3.509914213039938,4.432357690102513,3.380986618992767,6.413109748750923,4.016514025769769,4.873195585084163,3.359242319972722,4.337684176147178,5.618929338441394,3.289982758406638,9.087916239903775,3.797244014573607,3,7.309083974207778,3,4.432357690102513,3.039373903049768,6.063504100450318,5.618929338441394,3.678920577117766,3.170875216033968,3.589500836664386,3,3,5.463364880866541,6.345791195308882,13.07253317327777,7.272902496667362,9.827329937088813,10.11994332147441,7.644951647395748,13.06928652126084,8.137484362553936,3.092713836388035,19.61198918637685,3.452799420449488,3,5.059206185602709,10.05869346893208,3.313803456149518,3,4.18518970536024,3.412529264022637,5.729200010302796,9.660874141726769,3,6.390802625568383,3.156103084672556,3.109283566291158,5.096788285825762,5.701998379052369,5.618929338441394,4.978717529489479,3.678920577117766,4.662456027486434,3.140936822214908,6.107290711422738,3,8.542770396102137,3.170875216033968,3,4.18518970536024,3.092713836388035,8.665806319577143,3.825058528045274,3.057826464950208,3.554937616657432,3,3,3,11.89455515488133,3.838733946421329,3,3.694402908452453,3.732192986699324,16.11503434953286,3.092713836388035,9.252084959560776,5.024537772244431,3.039373903049768,16.33590203758002,4.921088656203783,3,11.63494382837743,12.15512634003284,3,5.887704848158462,3.754279696090573,7.049656978166485,12.60946995504637,3.092713836388035,3.412529264022637,4.650117056090549,8.198475354571602,4.846986571339391,3.039373903049768,14.42928834934434,9.004920016600018,8.884456659916584,8.508379542660853,8.884456659916584,8.436082462591365,7.485984337896141,5.292606024281356,5.163715164079496,5.938874319933476,3.678920577117766,4.385644109105248,3.301992380873566,5.504493136260388,3.170875216033968,3.678920577117766,3.412529264022637,6.230830546187519,3,3.301992380873566,3.170875216033968,3,3,3,3.754279696090573,3.301992380873566,3,3,3,5.228946865091046,3,3,3,3.140936822214908,3.746964207297044,3,5.981761921453571,3,3,3,3,4.989369015585492,3.156103084672556,3,3,3.239736773869607,3,3.039373903049768,3,4.686916423815946,3,3,8.473787763817604,7.274718203676299,8.682581886667343],null,"Closed",{"interactive":true,"className":"","stroke":true,"color":"#666","weight":0.5,"opacity":0.5,"fill":true,"fillColor":["#8B7B4C","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#89A764","#7E417D","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#78A174","#78A174","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#7E417D","#8B7B4C","#6A73A2","#6A73A2","#6A73A2","#942C79","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#9F767B","#6A73A2","#78A174","#7E417D","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#7E417D","#6A73A2","#6A73A2","#89A764","#6A73A2","#78A174","#7E417D","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#8B7B4C","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#78A174","#6A73A2","#6A73A2","#6A73A2","#78A174","#6A73A2","#6A73A2","#78A174","#6A73A2","#6A73A2","#7E417D","#6A73A2","#6A73A2","#7E417D","#78A174","#6A73A2","#6A73A2","#78A174","#6A73A2","#78A174","#7E417D","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#7E417D","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#89A764","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#78A174","#6A73A2","#6A73A2","#6A73A2","#78A174","#78A174","#6A73A2","#78A174","#78A174","#78A174","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#6A73A2","#78A174","#6A73A2","#6A73A2","#78A174","#6A73A2","#6A73A2","#78A174","#6A73A2","#6A73A2","#6A73A2","#78A174","#6A73A2","#6A73A2","#6A73A2","#6A73A2"],"fillOpacity":0.5},null,null,["<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Abraxas Academy Detention Center<\/b><br>\n     Morgantown, PA<br>\n     <span style=\"color:#666;\">Type: Juvenile Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY19<\/span><br><b>ADP: 1<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Alamance County Detention Facility<\/b><br>\n     Graham, NC<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY25<\/span><br><b>ADP: 24<\/b> (FY25)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">34<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"171.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"204.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"23.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"56.7\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"43.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"106.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"139.5\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"129.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">21<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"147.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"180.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">24<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Albany County Jail<\/b><br>\n     Albany, NY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 37<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"17.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"50.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"74.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.2\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"22.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"55.8\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"22.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"55.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"91.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"124.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"51.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"84.4\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"165.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"198.5\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"176.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">37<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Allen County Jail<\/b><br>\n     Ft. Wayne, IN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY20 | Last seen: FY21<\/span><br><b>ADP: 1<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"185.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Anne Arundel County Ordnance Road Correctional Center<\/b><br>\n     Glen Burnie, MD<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY19<\/span><br><b>ADP: 39<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">39<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Beaver County Jail<\/b><br>\n     Aliquippa, PA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY22<\/span><br><b>ADP: 2<\/b> (FY22)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"64.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"116.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"149.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Bedford Municipal Detention Center<\/b><br>\n     Bedford, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 8<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"93.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"126.3\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"163.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"163.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"128.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"161.3\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"186.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"219.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"151.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"98.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"131.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"94.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"127.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Bergen County Jail<\/b><br>\n     Hackensack, NJ<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY21<\/span><br><b>ADP: 107<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"57.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"90.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">111<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"62.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"95.1\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">120<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"56.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">109<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"70.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">137<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"86.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">167<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"54.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.8\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">106<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"76.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"109.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">147<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"111.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"144.8\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">216<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">394<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"94.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"127.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">182<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"55.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">107<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Berks County Residential Center1<\/b><br>\n     Leesport, PA<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY22<\/span><br><b>ADP: 19<\/b> (FY22)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"149.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"182.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">26<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">36<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"112.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">19<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Best Western-Casa De Estrella<\/b><br>\n     El Paso, TX<br>\n     <span style=\"color:#666;\">Type: Family Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY21 | Last seen: FY21<\/span><br><b>ADP: 34<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">34<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Bossier Parish Cor. Center<\/b><br>\n     Plain Dealing, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY19<\/span><br><b>ADP: 252<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">252<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Bourbon County Detention Center<\/b><br>\n     Paris, KY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY25 | Last seen: FY25<\/span><br><b>ADP: 2<\/b> (FY25)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Bradford County Jail<\/b><br>\n     Starke, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY22 | Last seen: FY22<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Bristol County Detention Center<\/b><br>\n     North Dartmouth, MA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 115<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">226<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"191.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.4\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">212<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"185.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">206<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"138.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"171.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">153<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"127.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">141<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"73.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">81<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"104.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"137.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">116<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"158.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"191.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">175<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"167.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"200.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">185<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"104.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"137.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">115<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Brooks County Detention Center<\/b><br>\n     Falfurrias, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY12 | Last seen: FY19<\/span><br><b>ADP: 35<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"56.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">53<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">190<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"46.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"79.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"24.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">23<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"34.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"67.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">32<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"38.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"71.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">35<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Burnet County Jail<\/b><br>\n     Burnet, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY14 | Last seen: FY21<\/span><br><b>ADP: 1<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"35.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.9\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"35.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"17.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"50.9\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"35.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"12.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"45.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Butler County Jail<\/b><br>\n     El Dorado, KS<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 120<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"10.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"43.2\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"20.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"53.4\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"15.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"48.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"15.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"48.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"11.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"44.9\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"8.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"41.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"8.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"41.5\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"13.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"46.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">120<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cabarrus County Jail<\/b><br>\n     Concord, NC<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY22<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"21.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cache County Jail<\/b><br>\n     Logan, UT<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY22<\/span><br><b>ADP: 3<\/b> (FY22)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">38<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"10.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"43.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"14.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Caldwell County Detention Center<\/b><br>\n     Kingston, MO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 25<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"198.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">35<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"175.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"208.9\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">37<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"158.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"191.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"130.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"163.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">23<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"136.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">24<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"119.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">21<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"107.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"140.8\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">19<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"140.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"173.2\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Carver County Jail<\/b><br>\n     Chaska, MN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 12<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"169.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"202.2\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"192.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.5\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">33<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"180.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.8\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"163.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"204.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">35<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"99.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"132.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"169.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"202.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">36<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"120.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">21<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"70.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.6\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Catahoula Correctional Center<\/b><br>\n     Harrisonburg, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY20<\/span><br><b>ADP: 387<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"42.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"75.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">80<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">387<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cbp Chula Vista Bps<\/b><br>\n     San Diego, CA<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY20<\/span><br><b>ADP: 7<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"43.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cbp San Ysidro Poe<\/b><br>\n     San Ysidro, CA<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY21<\/span><br><b>ADP: 2<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"39.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"72.8\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Central Texas Detention Facility<\/b><br>\n     San Antonio, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 1<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Charleston County Detention Center<\/b><br>\n     North Charleston, SC<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 9<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"67.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"100.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"124.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.7\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">57<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"59.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"92.1\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"37.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"70.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"21.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.9\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"19.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"52.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"19.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"52.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">96<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"199.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"232.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">91<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"19.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"52.2\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Chautauqua County Jail<\/b><br>\n     Mayville, NY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 2<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"86.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"172.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"205.8\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"86.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"86.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.4\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"172.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"205.8\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"159.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"192.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"77.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"110.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Christian County Jail<\/b><br>\n     Ozark, MO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 10<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"136.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.5\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"178.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.5\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">20<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"178.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.5\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"73.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"115.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"148.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"136.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.5\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"136.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"158.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"191.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"110.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"143.2\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cibola County Detention Center<\/b><br>\n     Grants, NM<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY19<\/span><br><b>ADP: 4<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Clinton County Correctional Facility<\/b><br>\n     Lock Haven, PA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY23<\/span><br><b>ADP: 54<\/b> (FY23)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">86<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"188.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"221.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">77<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"141.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"174.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">58<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"56.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">23<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"34.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"67.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"26.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"29.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"62.3\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"129.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">53<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"138.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"171.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">57<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"185.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">76<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"184.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">76<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"107.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"140.7\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">44<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"132.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"165.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">54<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cobb County Jail<\/b><br>\n     Marietta, GA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY23<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"140.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"173.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"87.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"120.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"35.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"17.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"50.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"17.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"50.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"17.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"50.5\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"70.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"42.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"75.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"29.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"62.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"8.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"41.8\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Comfort Suites-Casa Consuelo<\/b><br>\n     El Paso, TX<br>\n     <span style=\"color:#666;\">Type: Family Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY21 | Last seen: FY21<\/span><br><b>ADP: 31<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cowlitz County Juvenile<\/b><br>\n     Longview, WA<br>\n     <span style=\"color:#666;\">Type: Juvenile Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY20<\/span><br><b>ADP: 3<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"197.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"230.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Davidson County Sheriff<\/b><br>\n     Nashville, TN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 7<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"198.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.3\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"163.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"70.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"58.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"46.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"79.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"46.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"79.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"46.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"79.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"78.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"111.2\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Dekalb County Detention Center<\/b><br>\n     Fort Payne, AL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY21<\/span><br><b>ADP: 1<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"171.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"204.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">44<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">54<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"163.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">42<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"120.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"132.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"165.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">34<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"85.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">22<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"85.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.6\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">22<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"120.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"101.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"134.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">26<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"23.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"56.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"5.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.1\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Delaware County Jail (George W. Hill)<\/b><br>\n     Thornton, PA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY16 | Last seen: FY19<\/span><br><b>ADP: 3<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"74.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.5\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"149.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"182.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Denver Contract Detention Facility (Cdf) Ii<\/b><br>\n     Aurora, CO<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY21<\/span><br><b>ADP: 69<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">248<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"100.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"133.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">123<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"56.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">69<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Dorchester County Detention Center<\/b><br>\n     Cambridge, MD<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY21 | Last seen: FY21<\/span><br><b>ADP: 9<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Dorchester County Detention Center<\/b><br>\n     Summerville, SC<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY23 | Last seen: FY23<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Douglas County Department of Corrections<\/b><br>\n     Omaha, NE<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY21<\/span><br><b>ADP: 14<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"168.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.2\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">108<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">131<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"171.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"204.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">110<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"101.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"134.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">65<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"110.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"143.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">71<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"96.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"129.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">62<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"127.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">82<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"109.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"142.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">70<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"43.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"25.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"58.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"22.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"55.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">East Mesa Detention Facility<\/b><br>\n     San Diego, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY21 | Last seen: FY21<\/span><br><b>ADP: 1<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Euless City Jail<\/b><br>\n     Euless, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY21<\/span><br><b>ADP: 4<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"94.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"127.5\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"136.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.5\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">20<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"178.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.5\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"178.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"136.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"189.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"157.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"190.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"82.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"115.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"77.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"110.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"45.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"78.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Forsyth County Jail<\/b><br>\n     Winston-Salem, NC<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY13 | Last seen: FY19<\/span><br><b>ADP: 1<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"180.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"180.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"180.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"180.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"180.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Franklin County House of Correction<\/b><br>\n     Greenfield, MA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 21<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"91.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"124.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"5.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.9\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"115.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"148.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">39<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"192.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">65<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"207.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"240.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">70<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"192.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.3\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">65<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">71<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"207.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"240.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">70<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"99.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"132.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">34<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"63.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"96.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">21<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Frederick County Detention Center<\/b><br>\n     Frederick, MD<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 40<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"190.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">49<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"202.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"235.2\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">52<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">54<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"190.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">49<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"202.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"235.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">52<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"155.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"188.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">40<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"151.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">39<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"167.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"200.2\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"154.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">40<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Garvin County Detention Center<\/b><br>\n     Pauls Valley, OK<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 1<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"185.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"154.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"123.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"156.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"61.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"30.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"30.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.9\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"58.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"21.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.6\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Gaston County Jail<\/b><br>\n     Gastonia, NC<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY23<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"21.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.6\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Guaynabo MDC (San Juan)<\/b><br>\n     San Juan, PR<br>\n     <span style=\"color:#666;\">Type: Federal Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY24<\/span><br><b>ADP: 6<\/b> (FY24)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"124.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"197.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"230.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"98.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"131.8\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"131.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Henderson County Jail<\/b><br>\n     Athens, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY20 | Last seen: FY20<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Holiday Inn Exp San Antonio<\/b><br>\n     San Antonio, TX<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY20 | Last seen: FY20<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Holiday Inn Express-Casa De La Luz<\/b><br>\n     Phoenix, AZ<br>\n     <span style=\"color:#666;\">Type: Family Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY21 | Last seen: FY21<\/span><br><b>ADP: 49<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">49<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Howard County Detention Center<\/b><br>\n     Jessup, MD<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 44<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"103.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"136.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">41<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"154.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">61<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">83<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"199.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"232.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">79<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"179.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">71<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"124.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">49<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"151.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.8\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">60<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"172.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"205.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">68<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"200.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"233.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">79<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"112.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">44<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Hudson County Correctional Center<\/b><br>\n     Kearny, NJ<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY21<\/span><br><b>ADP: 57<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"114.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"147.3\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">362<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"137.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"170.1\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">434<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"133.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"166.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">423<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"135.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"168.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">430<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"149.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"182.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">474<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"143.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"176.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">455<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"155.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"188.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">491<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">646<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"149.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"182.2\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">473<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"60.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"93.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">192<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"17.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"50.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">57<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Jack Harwell Detention Center<\/b><br>\n     Waco, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY11 | Last seen: FY19<\/span><br><b>ADP: 1<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"36.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"69.4\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">23<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"185.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">117<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"196.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">124<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">129<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">James A. Musick Facility<\/b><br>\n     Irvine, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY11 | Last seen: FY19<\/span><br><b>ADP: 144<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"185.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.5\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">280<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"191.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">289<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">308<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"190.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">288<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"168.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">254<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"192.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">290<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"196.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">297<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"95.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">144<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Johnson County Corrections Center<\/b><br>\n     Cleburne, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 119<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"78.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"111.3\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">128<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"108.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">177<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"128.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"161.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">210<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"136.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">223<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"142.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"175.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">233<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"121.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"154.8\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">199<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"132.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"165.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">216<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"159.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"192.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">261<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">333<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"72.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">119<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Kankakee County Jail (Jerome Combs Detention Center)<\/b><br>\n     Kankakee, IL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY17 | Last seen: FY21<\/span><br><b>ADP: 40<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"134.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"167.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">99<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">150<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"120.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">89<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"53.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"86.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">40<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Karnes County Residential Center<\/b><br>\n     Karnes City, TX<br>\n     <span style=\"color:#666;\">Type: Family Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY21<\/span><br><b>ADP: 169<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">646<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"66.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"99.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">211<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"53.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"86.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">169<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Kenosha County Detention Center<\/b><br>\n     Kenosha, WI<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 179<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"179.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.2\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">159<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">181<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">181<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"174.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"207.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">155<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"196.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.1\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">174<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"146.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"179.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">130<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"187.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">166<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"200.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"233.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">178<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"201.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"234.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">179<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Kittitas County Jail<\/b><br>\n     Ellensburg, WA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY19<\/span><br><b>ADP: 2<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">La Palma Correctional Center<\/b><br>\n     Eloy, AZ<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY22<\/span><br><b>ADP: 689<\/b> (FY22)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,703<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"174.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"207.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,551<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"141.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"174.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,254<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"77.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"110.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">689<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">La Paz County Adult Detention Facility<\/b><br>\n     Parker, AZ<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY14 | Last seen: FY25<\/span><br><b>ADP: 1<\/b> (FY25)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"98.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"131.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"49.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"82.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"58.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.9\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"49.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"82.1\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">La Quinta Inn By Wyndham Sna<\/b><br>\n     San Antonio, TX<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY21 | Last seen: FY21<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">La Quinta-Wyndham-Casa De Paz<\/b><br>\n     Pearsall, TX<br>\n     <span style=\"color:#666;\">Type: Family Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY21 | Last seen: FY21<\/span><br><b>ADP: 36<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">36<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Lasalle Correctional Center Olla<\/b><br>\n     Olla, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY20<\/span><br><b>ADP: 328<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"16.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"49.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">26<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">328<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Lehigh County Jail (Pennsylvania)<\/b><br>\n     Allentown, PA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY19<\/span><br><b>ADP: 3<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Levy County Jail<\/b><br>\n     Bronson, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY22 | Last seen: FY22<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Lincoln County Detention Center<\/b><br>\n     Troy, MO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY22<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"126.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"159.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"84.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"117.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"126.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"159.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"112.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"168.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"98.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"131.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"112.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"78.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"111.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"2.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Lonoke Police Department<\/b><br>\n     Lonoke, AR<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 1<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"162.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"91.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"124.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"59.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"92.4\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Marshall County Jail<\/b><br>\n     Marshalltown, IA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY11 | Last seen: FY19<\/span><br><b>ADP: 42<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"61.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"57.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"90.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"32.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"65.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"68.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"101.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">19<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"86.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">24<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"112.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">58<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"153.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"186.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">42<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Mchenry County Correctional Facility<\/b><br>\n     Woodstock, IL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY21<\/span><br><b>ADP: 118<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"156.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"189.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">226<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">294<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"171.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"204.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">247<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"130.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"163.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">188<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"128.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"161.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">185<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"115.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"148.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">167<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"143.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"176.6\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">207<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"161.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"194.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">233<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"194.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"227.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">281<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"147.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"180.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">213<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"81.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">118<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Midland County Detention Center<\/b><br>\n     Midland, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY22 | Last seen: FY22<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Monroe County Detention Center<\/b><br>\n     Key West, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 80<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"39.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"72.5\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"200.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"233.1\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">81<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">85<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"140.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"173.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">57<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"140.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"173.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">57<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"113.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"146.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">46<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"128.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"161.5\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">52<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"153.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"186.2\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">62<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"198.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">80<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Montgomery City Jail<\/b><br>\n     Montgomery, AL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY11 | Last seen: FY19<\/span><br><b>ADP: 2<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"113.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"146.7\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"113.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"146.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"113.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"146.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"113.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"146.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"113.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"146.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"113.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"146.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"113.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"146.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Montgomery County Jail<\/b><br>\n     Fonda, NY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY25 | Last seen: FY25<\/span><br><b>ADP: 2<\/b> (FY25)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Montgomery County Jail<\/b><br>\n     Montgomery City, MO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 26<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"181.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">32<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">37<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"164.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"197.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"107.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"140.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">19<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"119.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">21<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"79.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"112.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"102.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"135.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"124.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">22<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"120.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">21<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"146.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"179.4\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">26<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Morgan County Adult Detention Center<\/b><br>\n     Versailles, MO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 39<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"125.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"158.3\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">34<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"154.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.7\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">42<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"198.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">54<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"158.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"191.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"110.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"143.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">30<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"106.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"139.8\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"187.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.9\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">51<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">57<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"206.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"239.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">56<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"143.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"176.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">39<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Morrow County Correctional Facility<\/b><br>\n     Mount Gilead, OH<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 29<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">54<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"186.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"219.7\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">48<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"190.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">49<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"163.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">42<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"182.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"215.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">47<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"124.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.4\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">32<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"112.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.8\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"128.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"161.3\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">33<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"136.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">35<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"113.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"146.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Natchitoches Parish Detention. Center<\/b><br>\n     Natchitoches, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY19<\/span><br><b>ADP: 34<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">34<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Nobles County Jail<\/b><br>\n     Worthington, MN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 2<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"123.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"156.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"154.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"123.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"156.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"61.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"30.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.9\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"30.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"30.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.9\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"61.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Northern Oregon Correctional Facility<\/b><br>\n     The Dalles, OR<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY22<\/span><br><b>ADP: 25<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"66.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"99.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"16.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"49.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"24.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"24.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"66.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"99.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"58.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"116.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"149.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"207.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"240.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Northern Oregon Juvenile Detention<\/b><br>\n     The Dalles, OR<br>\n     <span style=\"color:#666;\">Type: Juvenile Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY19<\/span><br><b>ADP: 2<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Nye County Detention Center (Nevada)<\/b><br>\n     Pahrump, NV<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY24<\/span><br><b>ADP: 72<\/b> (FY24)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"28.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">73<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"199.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"232.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">69<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"198.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">69<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"199.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"232.9\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">69<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"209.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"242.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">72<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Ogle County Jail<\/b><br>\n     Oregon, IL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY20 | Last seen: FY20<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Okmulgee County Jail<\/b><br>\n     Okmulgee, OK<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY21<\/span><br><b>ADP: 85<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">208<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"173.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"206.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">177<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"83.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"116.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">85<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Oldham County Jail<\/b><br>\n     La Grange, KY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY15 | Last seen: FY23<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"86.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Otero County Detention<\/b><br>\n     Alamogordo, NM<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY23 | Last seen: FY23<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Platte County Detention Center<\/b><br>\n     Platte City, MO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 6<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"14.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"14.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"189.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"81.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.2\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Platte County Jail<\/b><br>\n     Wheatland, WY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 1<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"144.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"100.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"133.8\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"28.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"14.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"14.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.4\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"100.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"133.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Pulaski County Jail<\/b><br>\n     Ullin, IL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 116<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"158.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"191.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">169<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"197.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"230.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">210<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">217<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"180.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">192<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"171.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"204.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">182<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"122.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"155.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">130<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"95.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.8\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">102<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"181.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">193<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"168.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">179<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"109.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"142.2\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">116<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Randall County Jail<\/b><br>\n     Amarillo, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 1<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"48.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"81.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"24.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"48.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"81.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"24.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"48.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"81.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"45.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"78.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"33.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"66.6\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Red Roof Inn<\/b><br>\n     Seatac, WA<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY19<\/span><br><b>ADP: 1<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Rensselaer County Correctional Facility<\/b><br>\n     Troy, NY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY21<\/span><br><b>ADP: 6<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"90.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"123.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"106.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"139.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Rio Grande County Jail<\/b><br>\n     Del Norte, CO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY20 | Last seen: FY20<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Riverside County Sheriff<\/b><br>\n     Riverside, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY21 | Last seen: FY21<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Robert A. Deyton Detention Facility<\/b><br>\n     Lovejoy, GA<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: NA | Last seen: NA<\/span><br><span style=\"color:#999;\">No ADP data<\/span><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Rolling Plains Detention Center<\/b><br>\n     Haskell, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY21<\/span><br><b>ADP: 31<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">509<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"192.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.8\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">481<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"202.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"235.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">504<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"187.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">467<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"189.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">472<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"176.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.3\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">440<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"196.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.4\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">490<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"89.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"122.8\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">224<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"80.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">200<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"25.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"58.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">65<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"12.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"45.5\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Saint Tammany Parish Jail<\/b><br>\n     Covington, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY12 | Last seen: FY19<\/span><br><b>ADP: 9<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"70.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"140.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"173.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"117.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"150.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"93.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"126.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"93.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"126.9\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"211.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"244.3\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Saline County Jail<\/b><br>\n     Wilber, NE<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY20 | Last seen: FY20<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Salt Lake County Metro Jail<\/b><br>\n     Salt Lake City, UT<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY20 | Last seen: FY25<\/span><br><b>ADP: 7<\/b> (FY25)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"39.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"72.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"63.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"96.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"126.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"159.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"132.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"165.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Shawnee County Department of Corrections<\/b><br>\n     Topeka, KS<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 8<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"84.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"117.2\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"168.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"196.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"56.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"28.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.1\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"84.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"117.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"168.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.3\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">South Texas Family Residential Center<\/b><br>\n     Dilley, TX<br>\n     <span style=\"color:#666;\">Type: Family Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY21<\/span><br><b>ADP: 484<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,075<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"129.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.6\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">726<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"86.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.3\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">484<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Story County Jail<\/b><br>\n     Nevada, IA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY19<\/span><br><b>ADP: 1<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Suffolk County House of Corrections<\/b><br>\n     Boston, MA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 145<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">261<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"193.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"226.1\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">247<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"184.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">236<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"177.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"210.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">227<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"147.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"180.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">189<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"119.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">153<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"150.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"183.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">192<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"144.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">185<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"113.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"146.2\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">145<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Suites On Scottsdale-Casa De Alegría<\/b><br>\n     Scottsdale, AZ<br>\n     <span style=\"color:#666;\">Type: Family Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY21 | Last seen: FY21<\/span><br><b>ADP: 35<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">35<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Sunny Glen Cld Home Ndr Center<\/b><br>\n     Raymondville, TX<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY20 | Last seen: FY20<\/span><br><b>ADP: 1<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Tallahatchie County Correctional Facility<\/b><br>\n     Tutwiler, MS<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY20<\/span><br><b>ADP: 125<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,111<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"21.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.6\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">125<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Teller County Jail<\/b><br>\n     Divide, CO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY21<\/span><br><b>ADP: 4<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"45.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"78.9\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"45.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"78.9\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"65.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"26.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"59.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"92.1\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"26.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"65.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.6\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">32<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"89.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"122.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"23.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"56.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Tex Health Huguley Hosp<\/b><br>\n     Burleson, TX<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY20 | Last seen: FY21<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Theo Lacy Facility<\/b><br>\n     Orange, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY11 | Last seen: FY19<\/span><br><b>ADP: 326<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"198.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.1\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">467<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"189.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.2\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">446<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"168.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">398<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"153.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"186.1\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">361<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"114.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"147.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">271<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"190.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">448<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">481<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"138.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"171.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">326<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Tornillo-Guadalupe Poe<\/b><br>\n     Tornillo, TX<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY19<\/span><br><b>ADP: 538<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">538<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Trusted Adult Karnes Fsc<\/b><br>\n     San Antonio, TX<br>\n     <span style=\"color:#666;\">Type: Family Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY22 | Last seen: FY22<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Virginia Peninsula Regional Jail<\/b><br>\n     Williamsburg, VA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY14 | Last seen: FY19<\/span><br><b>ADP: 45<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"3.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"128.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"161.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">39<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"164.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"197.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">50<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">64<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"148.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"181.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">45<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Wake County Sheriff Department<\/b><br>\n     Raleigh, NC<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 2<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"135.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"168.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"81.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"81.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"81.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"81.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"81.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"162.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"40.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"73.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Wakulla County Jail<\/b><br>\n     Crawfordville, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 82<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"183.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"216.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">105<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">117<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"174.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"207.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">100<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"139.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"172.5\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">80<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"146.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"179.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">84<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"97.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"130.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">56<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"108.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">62<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"174.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"207.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">100<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"184.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">106<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"142.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"175.6\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">82<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">West Texas Detention Facility<\/b><br>\n     Sierra Blanca, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 590<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"8.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"41.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"44.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"77.2\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">128<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"52.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"85.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">153<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"76.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"109.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">221<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"69.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"102.8\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">202<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"156.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"189.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">452<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"122.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"155.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">353<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">590<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Western Virginia Regional Jail<\/b><br>\n     Salem, VA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY25 | Last seen: FY25<\/span><br><b>ADP: 2<\/b> (FY25)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Whitfield County Jail<\/b><br>\n     Dalton, GA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY11 | Last seen: FY22<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"162.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"75.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"108.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"16.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"49.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Wingate-Wyndham Casa Esperanza<\/b><br>\n     Yuma, AZ<br>\n     <span style=\"color:#666;\">Type: Family Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY21 | Last seen: FY21<\/span><br><b>ADP: 25<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Worcester County Jail<\/b><br>\n     Snow Hill, MD<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY21<\/span><br><b>ADP: 22<\/b> (FY21)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"124.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">113<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"186.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"219.4\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">169<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">185<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"196.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">178<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"185.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">168<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"156.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"189.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">142<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"181.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.9\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">165<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"191.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">174<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"170.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"203.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">155<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"88.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"121.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">80<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"24.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">22<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Yakima County Department of Corrections<\/b><br>\n     Yakima, WA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY19<\/span><br><b>ADP: 4<\/b> (FY19)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"35.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"28.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"21.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"14.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"14.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"49.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"82.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"56.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">30<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"29.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"62.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Yankton County Jail<\/b><br>\n     Yankton, SD<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY19 | Last seen: FY20<\/span><br><b>ADP: 1<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">York County Prison<\/b><br>\n     York, PA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY20<\/span><br><b>ADP: 397<\/b> (FY20)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"187.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">757<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">824<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"191.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">775<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"188.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"221.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">761<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"180.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">730<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"158.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"191.4\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">640<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"166.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">671<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"174.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"207.8\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">706<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"176.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">714<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"98.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"131.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">397<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Yuba County Jail<\/b><br>\n     Marysville, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY22<\/span><br><b>ADP: 3<\/b> (FY22)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">242<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"181.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.2\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">215<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"191.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">227<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"177.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"210.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">211<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"167.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"200.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">199<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"161.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"194.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">192<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"159.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"192.3\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">189<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"141.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"174.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">168<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"153.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"186.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">182<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"103.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"136.2\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">122<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"11.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"44.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"2.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Atlanta City Detention Center<\/b><br>\n     Atlanta, GA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 233<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"156.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"189.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">179<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"119.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.9\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">137<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"42.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"75.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">49<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"14.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"12.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"45.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"14.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"121.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"154.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">139<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">233<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Folkston ICE Processing Center (D. Ray James)<\/b><br>\n     Folkston, GA<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY17 | Last seen: FY17<\/span><br><b>ADP: 206<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">206<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Contra Costa County Jail West<\/b><br>\n     Richmond, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 205<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"46.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"79.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">53<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"106.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"139.8\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">122<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"105.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"138.1\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">120<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"140.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"173.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">160<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">233<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"105.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"138.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">120<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"171.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"204.6\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">196<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"179.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">205<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Rio Cosumnes Correctional. Center<\/b><br>\n     Elk Grove, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY14 | Last seen: FY17<\/span><br><b>ADP: 125<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">201<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"137.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"170.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">135<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"138.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"171.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">136<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"126.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"159.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">125<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Otero County Prison Facility<\/b><br>\n     Chaparral, NM<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 89<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"8.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"41.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"52.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"85.1\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">36<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">141<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"76.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"109.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">53<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"21.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"128.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"161.8\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">89<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">York County Detention Center<\/b><br>\n     York, SC<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 43<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"63.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"96.5\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"127.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">26<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"156.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"189.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">32<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"131.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"166.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">34<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"131.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"136.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Willacy County Regional Detention Facility<\/b><br>\n     Raymondville, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY14 | Last seen: FY17<\/span><br><b>ADP: 39<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"32.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"65.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"5.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.4\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"123.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"156.8\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">23<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">39<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Ramsey County Adult Detention Center<\/b><br>\n     St. Paul, MN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 4<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"187.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">59<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">66<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"152.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"185.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">48<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"89.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"122.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"70.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">22<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"31.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"64.8\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"35.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"12.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"45.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Dearborn Police Department<\/b><br>\n     Dearborn, MI<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 3<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"185.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.1\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"154.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"123.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"156.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"92.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"125.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"61.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"61.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"92.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"125.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Wayne County Jail<\/b><br>\n     Lyons, NY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 2<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"165.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"198.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">19<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"154.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"44.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"77.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"11.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"44.1\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"11.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"44.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"44.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"77.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"22.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"55.1\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Hall County Jail<\/b><br>\n     Gainesville, GA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 2<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"144.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"144.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"144.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"144.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Mecklenburg County Detention Center North<\/b><br>\n     Charlotte, NC<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 2<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">50<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"92.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"125.4\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">22<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"12.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"45.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"4.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"37.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"8.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"41.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"4.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"37.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"4.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"37.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"8.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"41.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Alexandria City Jail<\/b><br>\n     Alexandria, VA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY15 | Last seen: FY17<\/span><br><b>ADP: 2<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Josephine County Jail<\/b><br>\n     Grants Pass, OR<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 1<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"123.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"156.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"154.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"154.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"185.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"30.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"30.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.9\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"30.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Rock Island County Correctional Center<\/b><br>\n     Rock Island, IL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 1<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">El Paso County Criminal Justice Center<\/b><br>\n     Colorado Springs, CO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 1<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"201.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"234.9\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">75<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">78<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"169.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"202.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">63<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"175.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"208.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">65<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"172.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"205.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">64<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"72.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"16.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"49.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"2.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Elgin Police Department<\/b><br>\n     Elgin, IL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY17<\/span><br><b>ADP: 1<\/b> (FY17)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Moffat County Jail<\/b><br>\n     Craig, CO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY13<\/span><br><b>ADP: 1<\/b> (FY13)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"144.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"144.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Orange County Intake Release Facility<\/b><br>\n     Santa Ana, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY11 | Last seen: FY12<\/span><br><b>ADP: 1<\/b> (FY12)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Kent County Jail<\/b><br>\n     Grand Rapids, MI<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY14 | Last seen: FY14<\/span><br><b>ADP: 1<\/b> (FY14)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Glendale Police Department<\/b><br>\n     Glendale, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY11<\/span><br><b>ADP: 1<\/b> (FY11)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Tom Green County Jail<\/b><br>\n     San Angelo, TX<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: NA | Last seen: NA<\/span><br><span style=\"color:#999;\">No ADP data<\/span><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Yavapai County Detention Center<\/b><br>\n     Camp Verde, AZ<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY13<\/span><br><b>ADP: 1<\/b> (FY13)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"135.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"168.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"27.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"60.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Dale G. Haile Detention Center<\/b><br>\n     Caldwell, ID<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY13<\/span><br><b>ADP: 1<\/b> (FY13)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"144.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Sangamon County Jail<\/b><br>\n     Springfield, IL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY12 | Last seen: FY14<\/span><br><b>ADP: 1<\/b> (FY14)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Prince William County Correctional Facility<\/b><br>\n     Manassas, VA<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: NA | Last seen: NA<\/span><br><span style=\"color:#999;\">No ADP data<\/span><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Fairfax County Adult Detention Center<\/b><br>\n     Fairfax, VA<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: NA | Last seen: NA<\/span><br><span style=\"color:#999;\">No ADP data<\/span><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Norfolk County Jail<\/b><br>\n     Dedham, MA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY15<\/span><br><b>ADP: 1<\/b> (FY15)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"204.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.9\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">40<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">41<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"128.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"161.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"92.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"125.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"30.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"5.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Santa Cruz County Jail<\/b><br>\n     Nogales, AZ<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: NA | Last seen: NA<\/span><br><span style=\"color:#999;\">No ADP data<\/span><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Taylor County Adult Detention Facility<\/b><br>\n     Abilene, TX<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: NA | Last seen: NA<\/span><br><span style=\"color:#999;\">No ADP data<\/span><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Titus County Jail<\/b><br>\n     Mt. Pleasant, TX<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: NA | Last seen: NA<\/span><br><span style=\"color:#999;\">No ADP data<\/span><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Alhambra City Jail<\/b><br>\n     Alhambra, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY14<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"120.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"12.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"45.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"24.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"12.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"45.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Allegheny County Jail<\/b><br>\n     Pittsburgh, PA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY14<\/span><br><b>ADP: 4<\/b> (FY14)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"175.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"208.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"175.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"208.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"150.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"183.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"117.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"150.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Apache County Jail<\/b><br>\n     St Johns, AZ<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY12 | Last seen: FY13<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"162.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Bedford Heights City Jail<\/b><br>\n     Bedford Hts, OH<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY15<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"124.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">40<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">68<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"142.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"175.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">46<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"83.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"116.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"68.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"101.9\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">22<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Coconino County Detention Facility<\/b><br>\n     Flagstaff, AZ<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY10<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Eastern Regional Jail<\/b><br>\n     Martinsburg, WV<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY14<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"21.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"43.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"21.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">La Plata County Jail<\/b><br>\n     Durango, CO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY15<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"135.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"168.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"162.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"81.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"27.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"60.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Mecklenburg County Jail Central<\/b><br>\n     Charlotte, NC<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: NA | Last seen: NA<\/span><br><span style=\"color:#999;\">No ADP data<\/span><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Mississippi County Detention Center<\/b><br>\n     Charleston, MO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY15<\/span><br><b>ADP: 3<\/b> (FY15)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"208.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"241.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">34<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">34<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"124.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">20<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"55.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"54.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"17.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"50.3\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Montgomery County Correctional Facility<\/b><br>\n     Norristown, PA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY15<\/span><br><b>ADP: 2<\/b> (FY15)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"136.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"136.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.4\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"193.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"226.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"193.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"226.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"204.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Montgomery County Mac Sim Butler Detention Facilit<\/b><br>\n     Montgomery, AL<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: NA | Last seen: NA<\/span><br><span style=\"color:#999;\">No ADP data<\/span><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Navajo County Sheriff<\/b><br>\n     Holbrook, AZ<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY13<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"64.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"21.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"86.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Ontario County Jail<\/b><br>\n     Canandaigua, NY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY15<\/span><br><b>ADP: 1<\/b> (FY15)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"190.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"181.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"43.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"164.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"197.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"51.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"84.8\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Orange County Central Women's Jail<\/b><br>\n     Santa Ana, CA<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: NA | Last seen: NA<\/span><br><span style=\"color:#999;\">No ADP data<\/span><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Pomona City Jail<\/b><br>\n     Pomona, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY14<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"90.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"123.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"36.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"69.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Pueblo County Jail<\/b><br>\n     Pueblo, CO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY13<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Rice County Detention Center<\/b><br>\n     Lyons, KS<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY14<\/span><br><b>ADP: 1<\/b> (FY14)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"130.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"163.5\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">26<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"167.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"200.8\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">21<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"201.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"234.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"6.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"39.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Salem County Correctional Facility<\/b><br>\n     Woodstown, NJ<br>\n     <span style=\"color:#666;\">Type: Other<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: NA | Last seen: NA<\/span><br><span style=\"color:#999;\">No ADP data<\/span><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">San Bernardino County Jail<\/b><br>\n     San Bernardino, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY13<\/span><br><span style=\"color:#999;\">No ADP data<\/span><div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"61.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"30.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"30.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Santa Ana City Jail<\/b><br>\n     Santa Ana, CA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY15<\/span><br><b>ADP: 161<\/b> (FY15)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"186.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"219.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">186<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">204<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"188.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"221.2\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">188<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"180.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">180<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"169.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"202.9\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">170<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"161.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"194.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">161<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Tensas Parish Detention Center<\/b><br>\n     Waterproof, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY15<\/span><br><b>ADP: 49<\/b> (FY15)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"154.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">98<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">129<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"163.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">104<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"122.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"155.5\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">78<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"90.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"123.1\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">57<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"77.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"110.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">49<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Utah County Jail<\/b><br>\n     Spanish Fork, UT<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#a55;\">Closed<\/span> | First seen: FY10 | Last seen: FY15<\/span><br><b>ADP: 164<\/b> (FY15)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"129.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.9\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">139<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"186.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"219.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">199<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"173.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"206.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">186<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"164.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"197.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">176<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">218<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"153.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"186.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">164<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><\/svg><\/div><\/div>"],null,["Abraxas Academy Detention Center (Morgantown, PA)","Alamance County Detention Facility (Graham, NC)","Albany County Jail (Albany, NY)","Allen County Jail (Ft. Wayne, IN)","Anne Arundel County Ordnance Road Correctional Center (Glen Burnie, MD)","Beaver County Jail (Aliquippa, PA)","Bedford Municipal Detention Center (Bedford, TX)","Bergen County Jail (Hackensack, NJ)","Berks County Residential Center1 (Leesport, PA)","Best Western-Casa De Estrella (El Paso, TX)","Bossier Parish Cor. Center (Plain Dealing, LA)","Bourbon County Detention Center (Paris, KY)","Bradford County Jail (Starke, FL)","Bristol County Detention Center (North Dartmouth, MA)","Brooks County Detention Center (Falfurrias, TX)","Burnet County Jail (Burnet, TX)","Butler County Jail (El Dorado, KS)","Cabarrus County Jail (Concord, NC)","Cache County Jail (Logan, UT)","Caldwell County Detention Center (Kingston, MO)","Carver County Jail (Chaska, MN)","Catahoula Correctional Center (Harrisonburg, LA)","Cbp Chula Vista Bps (San Diego, CA)","Cbp San Ysidro Poe (San Ysidro, CA)","Central Texas Detention Facility (San Antonio, TX)","Charleston County Detention Center (North Charleston, SC)","Chautauqua County Jail (Mayville, NY)","Christian County Jail (Ozark, MO)","Cibola County Detention Center (Grants, NM)","Clinton County Correctional Facility (Lock Haven, PA)","Cobb County Jail (Marietta, GA)","Comfort Suites-Casa Consuelo (El Paso, TX)","Cowlitz County Juvenile (Longview, WA)","Davidson County Sheriff (Nashville, TN)","Dekalb County Detention Center (Fort Payne, AL)","Delaware County Jail (George W. Hill) (Thornton, PA)","Denver Contract Detention Facility (Cdf) Ii (Aurora, CO)","Dorchester County Detention Center (Cambridge, MD)","Dorchester County Detention Center (Summerville, SC)","Douglas County Department of Corrections (Omaha, NE)","East Mesa Detention Facility (San Diego, CA)","Euless City Jail (Euless, TX)","Forsyth County Jail (Winston-Salem, NC)","Franklin County House of Correction (Greenfield, MA)","Frederick County Detention Center (Frederick, MD)","Garvin County Detention Center (Pauls Valley, OK)","Gaston County Jail (Gastonia, NC)","Guaynabo MDC (San Juan) (San Juan, PR)","Henderson County Jail (Athens, TX)","Holiday Inn Exp San Antonio (San Antonio, TX)","Holiday Inn Express-Casa De La Luz (Phoenix, AZ)","Howard County Detention Center (Jessup, MD)","Hudson County Correctional Center (Kearny, NJ)","Jack Harwell Detention Center (Waco, TX)","James A. Musick Facility (Irvine, CA)","Johnson County Corrections Center (Cleburne, TX)","Kankakee County Jail (Jerome Combs Detention Center) (Kankakee, IL)","Karnes County Residential Center (Karnes City, TX)","Kenosha County Detention Center (Kenosha, WI)","Kittitas County Jail (Ellensburg, WA)","La Palma Correctional Center (Eloy, AZ)","La Paz County Adult Detention Facility (Parker, AZ)","La Quinta Inn By Wyndham Sna (San Antonio, TX)","La Quinta-Wyndham-Casa De Paz (Pearsall, TX)","Lasalle Correctional Center Olla (Olla, LA)","Lehigh County Jail (Pennsylvania) (Allentown, PA)","Levy County Jail (Bronson, FL)","Lincoln County Detention Center (Troy, MO)","Lonoke Police Department (Lonoke, AR)","Marshall County Jail (Marshalltown, IA)","Mchenry County Correctional Facility (Woodstock, IL)","Midland County Detention Center (Midland, TX)","Monroe County Detention Center (Key West, FL)","Montgomery City Jail (Montgomery, AL)","Montgomery County Jail (Fonda, NY)","Montgomery County Jail (Montgomery City, MO)","Morgan County Adult Detention Center (Versailles, MO)","Morrow County Correctional Facility (Mount Gilead, OH)","Natchitoches Parish Detention. Center (Natchitoches, LA)","Nobles County Jail (Worthington, MN)","Northern Oregon Correctional Facility (The Dalles, OR)","Northern Oregon Juvenile Detention (The Dalles, OR)","Nye County Detention Center (Nevada) (Pahrump, NV)","Ogle County Jail (Oregon, IL)","Okmulgee County Jail (Okmulgee, OK)","Oldham County Jail (La Grange, KY)","Otero County Detention (Alamogordo, NM)","Platte County Detention Center (Platte City, MO)","Platte County Jail (Wheatland, WY)","Pulaski County Jail (Ullin, IL)","Randall County Jail (Amarillo, TX)","Red Roof Inn (Seatac, WA)","Rensselaer County Correctional Facility (Troy, NY)","Rio Grande County Jail (Del Norte, CO)","Riverside County Sheriff (Riverside, CA)","Robert A. Deyton Detention Facility (Lovejoy, GA)","Rolling Plains Detention Center (Haskell, TX)","Saint Tammany Parish Jail (Covington, LA)","Saline County Jail (Wilber, NE)","Salt Lake County Metro Jail (Salt Lake City, UT)","Shawnee County Department of Corrections (Topeka, KS)","South Texas Family Residential Center (Dilley, TX)","Story County Jail (Nevada, IA)","Suffolk County House of Corrections (Boston, MA)","Suites On Scottsdale-Casa De Alegría (Scottsdale, AZ)","Sunny Glen Cld Home Ndr Center (Raymondville, TX)","Tallahatchie County Correctional Facility (Tutwiler, MS)","Teller County Jail (Divide, CO)","Tex Health Huguley Hosp (Burleson, TX)","Theo Lacy Facility (Orange, CA)","Tornillo-Guadalupe Poe (Tornillo, TX)","Trusted Adult Karnes Fsc (San Antonio, TX)","Virginia Peninsula Regional Jail (Williamsburg, VA)","Wake County Sheriff Department (Raleigh, NC)","Wakulla County Jail (Crawfordville, FL)","West Texas Detention Facility (Sierra Blanca, TX)","Western Virginia Regional Jail (Salem, VA)","Whitfield County Jail (Dalton, GA)","Wingate-Wyndham Casa Esperanza (Yuma, AZ)","Worcester County Jail (Snow Hill, MD)","Yakima County Department of Corrections (Yakima, WA)","Yankton County Jail (Yankton, SD)","York County Prison (York, PA)","Yuba County Jail (Marysville, CA)","Atlanta City Detention Center (Atlanta, GA)","Folkston ICE Processing Center (D. Ray James) (Folkston, GA)","Contra Costa County Jail West (Richmond, CA)","Rio Cosumnes Correctional. Center (Elk Grove, CA)","Otero County Prison Facility (Chaparral, NM)","York County Detention Center (York, SC)","Willacy County Regional Detention Facility (Raymondville, TX)","Ramsey County Adult Detention Center (St. Paul, MN)","Dearborn Police Department (Dearborn, MI)","Wayne County Jail (Lyons, NY)","Hall County Jail (Gainesville, GA)","Mecklenburg County Detention Center North (Charlotte, NC)","Alexandria City Jail (Alexandria, VA)","Josephine County Jail (Grants Pass, OR)","Rock Island County Correctional Center (Rock Island, IL)","El Paso County Criminal Justice Center (Colorado Springs, CO)","Elgin Police Department (Elgin, IL)","Moffat County Jail (Craig, CO)","Orange County Intake Release Facility (Santa Ana, CA)","Kent County Jail (Grand Rapids, MI)","Glendale Police Department (Glendale, CA)","Tom Green County Jail (San Angelo, TX)","Yavapai County Detention Center (Camp Verde, AZ)","Dale G. Haile Detention Center (Caldwell, ID)","Sangamon County Jail (Springfield, IL)","Prince William County Correctional Facility (Manassas, VA)","Fairfax County Adult Detention Center (Fairfax, VA)","Norfolk County Jail (Dedham, MA)","Santa Cruz County Jail (Nogales, AZ)","Taylor County Adult Detention Facility (Abilene, TX)","Titus County Jail (Mt. Pleasant, TX)","Alhambra City Jail (Alhambra, CA)","Allegheny County Jail (Pittsburgh, PA)","Apache County Jail (St Johns, AZ)","Bedford Heights City Jail (Bedford Hts, OH)","Coconino County Detention Facility (Flagstaff, AZ)","Eastern Regional Jail (Martinsburg, WV)","La Plata County Jail (Durango, CO)","Mecklenburg County Jail Central (Charlotte, NC)","Mississippi County Detention Center (Charleston, MO)","Montgomery County Correctional Facility (Norristown, PA)","Montgomery County Mac Sim Butler Detention Facilit (Montgomery, AL)","Navajo County Sheriff (Holbrook, AZ)","Ontario County Jail (Canandaigua, NY)","Orange County Central Women's Jail (Santa Ana, CA)","Pomona City Jail (Pomona, CA)","Pueblo County Jail (Pueblo, CO)","Rice County Detention Center (Lyons, KS)","Salem County Correctional Facility (Woodstown, NJ)","San Bernardino County Jail (San Bernardino, CA)","Santa Ana City Jail (Santa Ana, CA)","Tensas Parish Detention Center (Waterproof, LA)","Utah County Jail (Spanish Fork, UT)"],{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addCircleMarkers","args":[[31.5574938,31.31734179999999,42.2127932,30.624485,61.2185041,30.214814,30.29596799999999,30.8852959,44.5213004,32.7676451,39.035064,40.6594911,42.1309207,26.1161559,26.2777097,43.0201451,46.85,39.3875859,42.3166565,35.1517183,40.4845391,39.08908419999999,38.1116967,47.6408175,41.0117281,33.0433427,38.3678608,33.3515168,46.4973719,44.4464047,36.8682675,35.1799003,35.94228590000001,38.277738,39.5237009,41.1508791,40.2792086,44.72054319999999,27.7903032,26.1296403,41.4586244,46.3567043,43.6513147,42.4160837,32.7780872,39.4359416,37.7871208,40.9801077,39.76134709999999,13.474307,34.5592376,35.8459755,31.7473943,43.4084408,32.3029629,46.72149479999999,26.2944185,31.2166775,31.7584731,31.7942381,26.470298,40.6660324,43.1368404,32.8176183,42.123951,40.7181313,34.0165766,33.7123589,39.9526835,38.0654485,37.9676572,33.0639575,33.0639575,25.9015333,34.280156,30.8749079,30.8740285,39.9349618,43.6459816,41.052251,41.5046752,26.8386472,35.6697644,47.935621,37.4890253,37.224653,40.9266016,30.3025048,42.3600424,36.0309509,27.959392,21.3338725,37.3377164,29.9497807,30.6980352,32.6901156,31.5798201,19.9147787,32.2154049,43.6734611,30.3357896,45.1457492,39.2686641,28.8837901,28.8849772,36.8678591,39.0024275,36.0851558,25.7543477,28.0455037,28.8016049,41.1347715,27.5292214,31.7089427,37.0575396,44.3742947,39.3299481,33.9791296,31.5268364,41.152691,41.9745858,35.8763173,30.9406293,33.5852981,32.5865785,41.1042306,30.8763257,39.754849,27.1719467,40.2146455,35.3799739,40.644835,25.7785364,25.7783254,33.4011832,42.5350478,43.5526943,41.89553069999999,30.3360804,40.9184435,41.4244034,40.7322545,42.8626014,29.9931553,36.252992,34.3557241,43.1801046,39.2809184,43.9284879,41.13167869999999,39.9258505,47.7688993,44.8497953,38.38929359999999,28.5038535,41.4047777,32.5750242,32.0802208,36.6032101,44.0783468,37.9454123,40.4395445,33.260415,41.3890147,30.7886095,27.9052741,41.9313647,41.6534852,41.2842697,32.4227672,37.32051570000001,36.1614631,32.4568901,27.377685,26.1569011,31.5971028,37.2989493,37.2711908,33.43492120000001,38.44932,15.1850483,38.7945952,38.7945952,32.4846707,41.1415989,43.4616858,35.382742,41.0793527,45.304588,43.0185162,38.3110351,30.4870681,28.8973835,37.7708901,37.7987366,42.94231130000001,37.9653281,32.0365622,43.218151,41.5984866,30.5655231,47.24986029999999,40.5294169,34.7583934,28.6578745,36.1577756,25.8101315,43.97825840000001,41.2680071,29.3708857,28.8002906,30.7835164,48.14,36.0334327,37.1373633,39.5711833,43.0227067,27.3698802,41.2402118,38.4185611,35.4074582,31.924131,42.500696,41.8924645],[-91.22170269999999,-92.5361202,-78.01657519999999,-92.783878,-149.8573539,-82.372328,-82.1217298,-87.774794,-71.1360471,-99.8880841,-84.72825,-74.00328429999999,-75.9136937,-80.1424222,-80.1521559,-78.2023932,-100.72,-84.5557427,-85.1757947,-117.858652,-78.7012046,-84.49632219999999,-77.26721069999999,-111.5910066,-95.8829576,-111.3720644,-96.5386769,-104.5043043,-84.3455596,-73.2054397,-87.490437,-107.907208,-96.7847659,-85.73775429999999,-87.1190405,-77.3499399,-86.50877799999999,-73.46700629999999,-97.6688843,-81.7634135,-84.35675069999999,-94.2053148,-70.28180789999999,-96.41981749999999,-96.8160791,-77.95636999999999,-87.0702975,-111.9045938,-104.8490165,144.7505229,-117.4415063,-98.412496,-106.2840728,-88.7058622,-106.8056701,-92.0982418,-97.9248314,-99.8338127,-106.4831939,-106.3676273,-97.7586475,-74.1898667,-115.6731309,-111.5200907,-80.06694809999999,-74.12849729999999,-86.0123672,-84.3685888,-75.1521168,-84.54567059999999,-100.8759294,-111.3794442,-111.3794442,-81.3047701,-85.1414741,-81.9806924,-81.97946449999999,-77.62632529999999,-93.36810029999999,-86.2317408,-81.1915623,-81.1239104,-119.2278172,-97.0576258,-86.27049819999999,-93.38618,-98.32869319999999,-89.4762853,-93.09746699999999,-114.9787348,-82.37207239999999,-157.9279267,-87.54017809999999,-95.31226939999999,-95.00622009999999,-115.3975363,-83.25536380000001,-75.14977929999999,-92.71671889999999,-111.9111853,-95.4480609,-95.0139765,-94.67557459999999,-97.91196629999999,-97.9008355,-97.0691621,-84.53061249999999,-83.8402298,-80.4891143,-99.3362626,-81.7326411,-104.8201135,-99.44793399999999,-92.15058089999999,-84.07061379999999,-103.7295749,-94.93634980000002,-81.25039029999999,-96.51481919999999,-100.7596064,-91.66915139999999,-97.4225036,-91.56842089999999,-101.8436702,-90.0453383,-80.6549256,-81.97801609999999,-86.1127175,-80.24193769999999,-100.6502029,-119.0064452,-86.13349339999999,-80.1932264,-80.1990136,-94.0223446,-113.7911723,-96.7304941,-83.39339439999999,-95.4425066,-78.2428977,-91.04462409999999,-73.553505,-106.3455262,-90.5020311,-115.975308,-77.8999864,-78.73699300000001,-80.8534092,-85.83946130000001,-80.63199780000001,-80.73622349999999,-96.62848249999999,-73.1318053,-85.42376729999999,-81.4163786,-74.3601231,-116.9147637,-106.281786,-92.4596506,-103.222046,-91.7726412,-99.3703646,-88.0959692,-75.0713413,-92.42351459999999,-82.70221950000001,-70.6510495,-93.58775799999999,-95.8653913,-97.1958652,-78.4408127,-85.4978924,-92.0784706,-99.4901498,-97.35055609999999,-91.55809739999999,-77.33093749999999,-79.9471628,-84.30644909999999,-78.8709058,145.7467259,-106.5348379,-106.5348379,-114.6846486,-96.0418183,-89.76717889999999,-94.4251113,-83.1538747,-93.61912060000002,-96.07665849999999,-81.7099734,-92.581813,-99.1187908,-81.1162375,-82.0950124,-82.47947909999999,-90.0557269,-84.7713749,-70.9400658,-109.2412428,-97.4198336,-122.4218964,-112.2973599,-106.0558506,-99.2003862,-95.9991192,-80.3113644,-69.6987883,-110.9206116,-100.8958674,-97.0086053,-86.10390129999999,-101.39,-94.1772012,-113.4079986,-119.8111143,-88.2301255,-99.49025619999999,-111.9934202,-82.2932624,-89.54861219999999,-92.63454159999999,-96.4123945,-71.38395899999999],[21.76719802726091,10.96699521116862,3.519092981172699,7.638217315631831,3.277764225943887,14.68027902375642,9.572506087830591,4.376155001321894,8.446257760973182,15.91606079484683,8.436082462591365,6.937650016957233,5.412618601728862,3.277764225943887,13.33700501916214,13.7935455390842,4.273297706450158,10.4135760051169,8.007169615833618,15.86296755115874,4.8843364708271,7.470325756749098,10.23763657632702,3.402150756189427,4.174502502008172,11.97103805802901,6.964948586042583,3.156103084672556,5.12377097075187,3.528182193923053,6.729231675776512,8.858729698761955,12.59417567009052,6.584962320219663,8.948987663246282,6.535701233381913,4.695006803265189,3.422778831273787,5.669039486965774,5.176892970916523,6.087897616316992,4.522404497337501,5.838347917173409,4.72706242362692,3,4.086263982729822,4.666552744784734,3.46257745606227,17.03011968025069,4.252985796522736,22.01448952562128,5.900571306748086,25,6.708636018851962,3,4.735001566627785,3.301992380873566,11.58779669614836,3.226558323730513,14.29196632136772,15.24075941400472,9.793165574801751,3.858971321865178,17.64111521888277,4.206352468098615,14.99767848105271,6.128981008989688,6.852712122330987,6.679627958962055,3.213102341199346,3.156103084672556,10.07575757048977,10.18181964924685,17.69415494920741,3.020135078213425,9.447126620287722,15.24748237748743,3.039373903049768,6.329909299194846,3.528182193923053,4.491372620339777,11.51279662802719,12.86019491790223,4.441559178375996,7.781081464314328,9.363507203819818,4.091930518051408,4.735001566627785,5.276832506210219,6.531388582725743,3.422778831273787,6.268008649996818,7.876861695263665,14.84868436973104,14.77001239706019,13.29655880628578,7.258351431214884,3.961880561972925,16.82720173989146,3.655276260229272,15.24949857046236,6.957166397043657,3.289982758406638,3.199350516722837,16.8701608851857,7.781081464314328,6.896377900206932,4.950078810233846,14.72452757712015,9.178908705437632,3,3.432904147568865,10.50007882895493,16.71321006473487,3.075581943741621,3.865645911483664,5.726490454581549,3.537184422557593,9.164693255567219,4.738960152163648,5.176892970916523,3.500643189026505,8.119055932173438,3.265325486585971,3.818163834888713,6.477077013958815,13.50586648669911,5.644087102609055,3.597956936798706,6.202696072556607,10.60052649103109,10.89356076654342,11.42176349427907,4.413815642075647,3.554937616657432,3.402150756189427,3.472247437131541,7.190454443589721,17.03659897821267,19.36985887152656,4.395083404266985,4.0224560193403,4.142000114981129,3.265325486585971,11.40826865840121,3.432904147568865,3.998537922895898,3.226558323730513,18.09495003798598,8.531328887627872,4.75472219010806,4.179855069534552,3.998537922895898,7.247408314200649,6.056152594093881,7.90093733610691,18.49581016642013,14.936505142449,4.477917314745521,3.359242319972722,4.174502502008172,4.587280539774684,5.289458687219933,8.991647097984361,14.98327153500647,5.113686238030722,11.8698375310185,5.582217260589355,4.880628856247162,15.37121948374924,13.60980184353462,4.332815700958083,16.17027474631084,12.8841879438821,17.31366765371982,12.57119031214144,6.692085087391003,3.057826464950208,4.016514025769769,3.057826464950208,4.464365551643311,3.936889207884106,4.273297706450158,10.16050134917937,4.459826500704304,4.136516749115232,3.140936822214908,5.793542441035369,6.755853899054324,4.040136176321673,4.921088656203783,15.48981397637143,19.87485889419174,3.039373903049768,3.057826464950208,5.427638100798983,6.994009391013105,21.08562517263511,7.565247882363947,3.838733946421329,11.41983692294261,17.91447355548031,3.865645911483664,10.53548697477443,14.73573964125811,5.283152989123125,3.858971321865178,3.79018988284333,4.548612469013587,3.348137113895567,4.131013903968081,4.731035670665974,3.125343090023934,3.554937616657432,4.016514025769769,5.533518949674484,3.301992380873566,11.27020730908904,3.631096396604954,3.746964207297044,9.428494655000097,18.8093677501907,5.864417919087919,6.997869697189287],null,"Open",{"interactive":true,"className":"","stroke":true,"color":"#333","weight":0.8,"opacity":0.5,"fill":true,"fillColor":["#4daf4a","#ff7f00","#377eb8","#377eb8","#377eb8","#e6ab02","#377eb8","#377eb8","#f781bf","#4daf4a","#377eb8","#f781bf","#377eb8","#377eb8","#e41a1c","#984ea3","#377eb8","#377eb8","#377eb8","#e41a1c","#377eb8","#377eb8","#4daf4a","#377eb8","#377eb8","#e41a1c","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#e41a1c","#377eb8","#e41a1c","#4daf4a","#e41a1c","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#984ea3","#4daf4a","#e41a1c","#377eb8","#4daf4a","#377eb8","#e41a1c","#377eb8","#f781bf","#f781bf","#377eb8","#377eb8","#984ea3","#ff7f00","#e6ab02","#377eb8","#4daf4a","#4daf4a","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#e41a1c","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#f781bf","#377eb8","#e41a1c","#4daf4a","#e41a1c","#377eb8","#66c2a5","#377eb8","#377eb8","#377eb8","#377eb8","#e41a1c","#377eb8","#4daf4a","#377eb8","#377eb8","#377eb8","#984ea3","#377eb8","#377eb8","#377eb8","#4daf4a","#377eb8","#377eb8","#377eb8","#f781bf","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#4daf4a","#377eb8","#377eb8","#4daf4a","#e41a1c","#377eb8","#f781bf","#ff7f00","#377eb8","#377eb8","#377eb8","#377eb8","#e41a1c","#4daf4a","#377eb8","#377eb8","#377eb8","#377eb8","#e41a1c","#377eb8","#377eb8","#377eb8","#e41a1c","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#e41a1c","#4daf4a","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#4daf4a","#377eb8","#377eb8","#377eb8","#377eb8","#4daf4a","#4daf4a","#377eb8","#377eb8","#e41a1c","#984ea3","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#ff7f00","#ff7f00","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#4daf4a","#e41a1c","#377eb8","#377eb8","#377eb8","#377eb8","#4daf4a","#377eb8","#377eb8","#e41a1c","#e41a1c","#377eb8","#377eb8","#a65628","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#377eb8","#4daf4a","#377eb8","#377eb8","#4daf4a","#4daf4a","#377eb8","#377eb8"],"fillOpacity":0.8},null,null,["<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Adams County Detention Center (Mississippi)<\/b><br>\n     Natchez, MS<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 2,162<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"9.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"42.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">109<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"78.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"111.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">891<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"63.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"96.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">716<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"73.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">830<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"80.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.4\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">909<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"135.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"168.8\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,536<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2,171<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"191.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.2\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2,162<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Alexandria Staging Facility<\/b><br>\n     Alexandria, LA<br>\n     <span style=\"color:#666;\">Type: ICE Short-Term Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 413<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"127.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">258<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"98.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"131.2\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">199<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"56.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">114<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"72.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.3\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">146<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"102.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"135.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">207<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"147.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"180.3\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">298<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"166.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">338<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">413<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Allegany County Jail<\/b><br>\n     Belmont, NY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 5<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"123.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"156.5\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"123.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"156.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"111.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"144.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"111.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"144.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"98.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"131.8\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"148.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"181.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"135.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"168.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"71.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"104.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"63.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"96.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Allen Parish Public Safety Complex<\/b><br>\n     Oberlin, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY16 | Last seen: FY26<\/span><br><b>ADP: 150<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"21.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.4\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"59.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"92.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">50<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"74.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">63<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"87.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"120.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">73<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"77.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"110.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">66<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"119.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">101<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"121.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"154.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">102<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"165.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"198.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">139<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">172<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"178.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.1\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">150<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Anchorage Correctional Complex<\/b><br>\n     Anchorage, AK<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 3<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"144.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"201.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"234.6\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Baker Correctional Institution<\/b><br>\n     Sanderson, FL<br>\n     <span style=\"color:#666;\">Type: State Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 859<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">859<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Baker County Sheriff's Office<\/b><br>\n     Macclenny, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 287<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"118.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"151.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">167<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"178.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">251<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"175.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"208.8\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">247<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"149.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"182.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">210<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"162.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">228<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"119.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">168<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"133.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"166.8\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">188<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"192.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.1\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">270<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"185.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">261<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"166.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.6\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">234<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"99.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"132.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">140<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"106.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"139.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">150<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"134.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"167.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">188<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"165.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"198.6\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">233<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"186.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"219.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">263<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">287<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Baldwin County Correctional Center<\/b><br>\n     Bay Minette, AL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY11 | Last seen: FY26<\/span><br><b>ADP: 19<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"22.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"55.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"22.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"55.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"22.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"55.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"22.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"55.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"11.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"44.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"22.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"55.3\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"33.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"66.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"43.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"7.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"40.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"16.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"49.8\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">19<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Berlin Federal. Correctional. Institution.<\/b><br>\n     Berlin, NH<br>\n     <span style=\"color:#666;\">Type: Federal Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 202<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"135.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"168.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">134<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">202<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Bluebonnet Detention Center<\/b><br>\n     Anson, TX<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY20 | Last seen: FY26<\/span><br><b>ADP: 1,044<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"47.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"80.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">258<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"72.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.3\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">393<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"71.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"104.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">389<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"100.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"133.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">544<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"120.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.7\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">656<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"178.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">972<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,044<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Boone County Jail<\/b><br>\n     Burlington, KY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 201<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"90.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"123.3\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">89<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"152.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"185.2\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">150<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"125.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"158.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">124<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"144.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">142<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"148.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"181.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">146<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"120.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.8\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">119<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"144.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">142<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"161.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"194.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">159<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"139.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"172.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">137<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"101.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"134.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">100<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"69.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"102.5\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">68<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"92.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"125.9\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">92<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"126.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"159.9\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">125<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"131.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.6\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">130<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"171.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"204.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">169<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">201<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Brooklyn MDC<\/b><br>\n     Brooklyn, NY<br>\n     <span style=\"color:#666;\">Type: Federal Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 111<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"47.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"80.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">26<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">111<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Broome County Jail<\/b><br>\n     Binghamton, NY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 47<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"45.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"78.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">47<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Broward County Jail<\/b><br>\n     Fort Lauderdale, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 3<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Broward Transitional Center<\/b><br>\n     Pompano Beach, FL<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 679<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"174.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"207.3\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">580<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"189.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">629<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"191.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">638<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"166.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">555<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"179.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">598<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"121.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"154.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">405<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"185.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">618<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"196.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.2\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">653<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"195.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"228.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">650<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"142.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"175.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">473<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"95.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">318<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"109.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"142.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">364<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"156.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"189.5\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">521<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"180.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.2\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">600<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"195.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"228.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">649<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">679<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Buffalo (Batavia) Service Processing Center<\/b><br>\n     Batavia, NY<br>\n     <span style=\"color:#666;\">Type: ICE Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 738<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"137.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"170.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">498<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"146.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"179.2\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">529<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"122.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"155.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">444<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"113.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"146.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">411<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"136.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">493<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"117.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"150.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">424<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"149.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"182.3\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">540<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"157.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"190.3\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">569<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"168.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">611<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"101.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"134.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">368<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"69.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"102.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">251<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"75.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"108.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">273<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"99.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"132.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">359<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"151.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.8\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">549<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"176.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">638<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">738<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Burleigh County<\/b><br>\n     Bismarck, ND<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 17<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"81.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Butler County Jail<\/b><br>\n     Hamilton, OH<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 360<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"53.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"86.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">95<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"68.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"101.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">121<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"60.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"93.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">107<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"57.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"90.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">102<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"47.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"80.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">83<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"31.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"64.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">55<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"45.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"78.9\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">81<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"67.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"100.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">119<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"67.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"100.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">120<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"58.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.4\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">103<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"89.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"122.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">158<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">360<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Calhoun County Correctional Center<\/b><br>\n     Battle Creek, MI<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 173<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"187.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">170<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"179.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.8\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">163<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"178.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">162<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"130.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"163.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">118<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"140.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"173.1\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">127<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"94.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"127.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">86<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"163.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.3\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">148<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"196.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">178<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">185<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"154.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">140<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"81.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">74<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"71.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"104.7\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">65<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"92.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"125.5\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">84<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"136.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.7\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">124<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"175.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"208.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">159<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"190.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.4\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">173<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">California City Immigration Processing Center<\/b><br>\n     California City, CA<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 1,036<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"3.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">19<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,036<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cambria County Prison<\/b><br>\n     Ebensburg, PA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 31<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"163.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.2\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"131.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"94.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"127.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"73.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"10.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"43.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"21.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"131.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">40<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"160.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"193.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">30<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"163.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.2\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Campbell County Detention Center<\/b><br>\n     Newport, KY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 140<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"76.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"109.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">52<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">140<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Caroline Detention Facility<\/b><br>\n     Bowling Green, VA<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 344<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"161.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"194.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">272<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"133.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"166.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">226<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"99.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"132.8\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">168<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"109.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"142.3\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">184<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"119.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">201<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"142.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"175.9\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">241<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"179.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">303<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">344<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cascade County Jail, Montana<\/b><br>\n     Great Falls, MT<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 4<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"110.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"143.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"55.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.4\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"55.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"55.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"55.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"55.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.4\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"55.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.4\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"55.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"105.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"138.2\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"33.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"66.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cass County Jail<\/b><br>\n     Plattsmouth, NE<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 15<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"202.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"235.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"123.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"156.1\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"36.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"69.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"43.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.4\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"94.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"127.1\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"118.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"151.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"55.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"107.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"140.2\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Central Arizona Florence Correctional Complex<\/b><br>\n     Florence, AZ<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 517<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"71.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"104.9\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">284<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"67.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"100.8\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">268<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"70.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.1\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">277<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"104.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"137.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">412<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"108.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.1\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">427<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"98.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"131.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">390<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"180.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">712<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">806<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"90.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"123.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">358<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"31.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"64.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">126<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"34.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"67.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">136<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"68.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"101.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">271<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"93.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"126.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">369<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"95.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">376<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"119.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">472<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"131.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">517<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Chase County Jail<\/b><br>\n     Cottonwood Falls, KS<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 113<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"50.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"83.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"45.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"78.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"47.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"80.1\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">26<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"43.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.5\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">24<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"76.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"109.1\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">42<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"58.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">32<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"79.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"112.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">44<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"101.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"134.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">56<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"141.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"174.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">78<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"125.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"158.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">69<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"110.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"143.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">61<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"115.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"148.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">64<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"123.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"156.2\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">68<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"141.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"174.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">78<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"193.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"226.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">107<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">113<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Chavez Detention Center<\/b><br>\n     Roswell, NM<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 2<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"125.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"158.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Chippewa County SSM<\/b><br>\n     Sault Ste. Marie, MI<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 38<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"181.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">38<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">44<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"167.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"200.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">35<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"81.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"95.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">20<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"43.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"85.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.9\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"114.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"147.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">24<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"146.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"179.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"117.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"150.4\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"28.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"17.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"50.7\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"43.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"58.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.2\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"157.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"190.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">33<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"180.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.4\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">38<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Chittenden Regional Correctional Facility<\/b><br>\n     South Burlington, VT<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 5<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"166.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Christian County Jail<\/b><br>\n     Hopkinsville, KY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 101<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">101<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cibola County Correctional Center<\/b><br>\n     Milan, NM<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY17 | Last seen: FY26<\/span><br><b>ADP: 231<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"167.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"200.1\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">306<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">374<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"28.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">52<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"12.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"45.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">22<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"40.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"73.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">74<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"48.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"81.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">88<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"102.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"135.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">187<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"120.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">220<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"126.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"159.2\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">231<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cimmarron Correctional Facility<\/b><br>\n     Cushing, OK<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 588<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"53.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"86.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">154<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">588<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Clark County Jail (Indiana)<\/b><br>\n     Jeffersonville, IN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 94<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"76.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"109.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">34<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">94<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Clay County Justice Center<\/b><br>\n     Brazil, IN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY13 | Last seen: FY26<\/span><br><b>ADP: 238<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"27.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"60.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">35<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"41.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"74.3\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">52<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"42.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"75.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">53<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"42.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"75.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">54<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"34.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"67.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"44.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"77.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">56<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"39.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"72.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">50<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"38.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"71.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">49<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"24.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.5\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"64.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.9\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">82<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">257<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"188.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"221.9\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">238<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Clinton County Correctional Facility<\/b><br>\n     McElhattan, PA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY24 | Last seen: FY26<\/span><br><b>ADP: 92<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"140.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"173.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">61<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"193.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"226.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">84<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">92<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Clinton County Jail<\/b><br>\n     Frankfort, IN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 26<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"65.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">26<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Clinton County Jail<\/b><br>\n     Plattsburgh, NY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 4<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"136.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.5\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"136.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.5\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"63.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"96.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"42.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"75.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"52.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"85.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"31.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"64.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"147.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"180.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">20<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"71.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"104.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"78.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"111.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"54.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"74.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"24.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"56.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"43.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Coastal Bend Detention Facility<\/b><br>\n     Robstown, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY12 | Last seen: FY26<\/span><br><b>ADP: 56<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"71.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"104.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">214<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"194.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"227.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">584<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">612<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"13.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"46.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">41<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"73.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.3\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">220<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"69.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"102.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">209<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"5.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"3.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"3.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"12.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"45.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">37<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"18.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"51.6\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">56<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Collier County Naples Jail Center<\/b><br>\n     Naples, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 39<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"42.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"75.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"37.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"70.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"37.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"70.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"37.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"70.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"37.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"70.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"26.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"21.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.3\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"32.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"65.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"60.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"93.2\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"30.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"16.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"49.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"30.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"43.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.7\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"47.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"80.4\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"93.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"126.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">39<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Correctional. Center of Northwest Ohio<\/b><br>\n     Stryker, OH<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 72<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"111.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"144.1\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">38<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">72<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Crow Wing County Jail<\/b><br>\n     Brainerd, MN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 22<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">22<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Cumberland County Jail<\/b><br>\n     Portland, ME<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 62<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"44.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"77.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"20.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"53.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"13.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"46.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"6.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"39.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"3.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"3.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.4\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"3.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.4\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"6.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"39.8\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"3.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"5.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"9.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"42.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"17.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"50.9\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"187.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">55<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">62<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Dakota County Jail<\/b><br>\n     Dakota City, NE<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 27<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"15.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"48.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"15.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"48.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"15.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"48.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"7.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"40.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"7.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"40.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"7.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"40.8\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"15.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"48.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"26.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"9.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"42.4\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"179.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">23<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Dallas County Jail - Lew Sterrett Justice Center<\/b><br>\n     Dallas, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 1<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"178.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"77.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"110.3\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"112.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"173.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"206.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"178.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.7\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"189.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"26.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.7\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Daviess County Detention<\/b><br>\n     Martinsburg, WV<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 13<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Daviess County Detention<\/b><br>\n     Owensboro, KY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 25<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Davis County<\/b><br>\n     Farmington, UT<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 5<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Denver Contract Detention Facility<\/b><br>\n     Aurora, CO<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 1,226<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"64.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.9\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">414<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"65.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">415<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"62.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"95.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">400<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"64.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.5\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">412<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"65.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">417<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"61.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">395<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"74.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">477<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"118.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"151.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">759<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"139.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"172.2\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">888<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"72.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.4\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">462<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"59.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"92.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">378<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"82.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"115.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">527<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"109.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"142.2\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">697<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"160.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"193.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,021<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"185.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,181<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,226<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Department of Corrections Hagatna<\/b><br>\n     Hagatna, GU<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 16<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"129.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"122.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"155.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"80.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"65.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.9\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"102.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"135.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"199.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"232.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Adelanto ICE Processing Center<\/b><br>\n     Adelanto, CA<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY11 | Last seen: FY26<\/span><br><b>ADP: 2,218<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">19<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"50.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"83.8\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">587<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"93.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"126.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,081<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"104.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"137.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,209<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"102.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"135.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,180<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"127.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.4\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,472<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"151.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.1\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,745<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"148.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"181.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,711<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"111.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"144.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,291<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"23.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"56.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">276<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"11.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"44.9\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">138<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"18.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"51.9\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">219<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"34.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"67.3\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">396<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"86.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">999<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2,218<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Diamondback Correctional Facility<\/b><br>\n     Watonga, OK<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 64<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">64<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Camp East Montana<\/b><br>\n     El Paso, TX<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 2,952<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"6.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"39.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">107<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2,952<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Dodge County Jail<\/b><br>\n     Juneau, WI<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 100<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"125.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"158.9\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">145<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"176.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.2\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">203<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">235<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"168.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">194<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"167.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"200.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">193<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"138.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"171.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">160<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"172.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"205.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">199<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"167.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"200.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">193<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"111.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"144.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">128<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"80.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">92<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"63.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"96.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">73<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"35.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">40<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"101.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"134.4\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">117<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"99.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"132.5\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">115<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"94.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"127.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">109<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"86.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.6\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">100<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Dona Ana County Detention Center<\/b><br>\n     Las Cruces, NM<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 1<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Douglas County<\/b><br>\n     Superior, WI<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 27<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"25.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"58.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">East Hidalgo Detention Center<\/b><br>\n     La Villa, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY12 | Last seen: FY26<\/span><br><b>ADP: 3<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">318<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"165.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"198.5\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">258<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"103.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"136.9\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">162<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"25.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"58.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">40<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"82.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"115.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">128<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"34.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"67.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">54<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"50.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"83.2\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">78<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"6.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"39.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Eden Detention Center<\/b><br>\n     Eden, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 476<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"26.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">62<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"109.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"142.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">256<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"50.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"83.7\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">118<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"45.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"78.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">105<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"62.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"95.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">145<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"61.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">142<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"56.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.1\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">131<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">476<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">El Paso County Detention Facility<\/b><br>\n     El Paso, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 2<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">El Paso Service Processing Center<\/b><br>\n     El Paso, TX<br>\n     <span style=\"color:#666;\">Type: ICE Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 805<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"195.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"228.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">794<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"179.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">726<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"153.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"186.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">623<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"190.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">772<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"176.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">717<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"174.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"207.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">706<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"202.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"235.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">819<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"189.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.2\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">767<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"200.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"233.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">813<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"128.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"161.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">522<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"81.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.7\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">331<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"106.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"139.1\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">430<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"138.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"171.8\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">563<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"187.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.6\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">761<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">827<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"198.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.5\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">805<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">El Valle Detention Facility<\/b><br>\n     Raymondville, TX<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 941<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"151.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">697<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"132.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"165.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">610<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"82.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"115.3\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">380<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"85.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.7\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">395<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"139.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"172.9\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">645<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"180.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.9\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">834<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"184.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">853<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">941<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Elizabeth Detention Center<\/b><br>\n     Elizabeth, NJ<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 305<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"154.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.5\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">231<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"185.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.2\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">277<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"169.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"202.2\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">253<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"181.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">271<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"182.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"215.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">273<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"165.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"198.8\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">248<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"197.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"230.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">295<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"195.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"228.2\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">292<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"195.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"228.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">293<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"105.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"138.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">157<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"70.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.3\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">105<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"62.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"95.9\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">94<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"112.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.6\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">168<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"160.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"193.4\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">240<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"198.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">297<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">305<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Elmore County Jail<\/b><br>\n     Mountain Home, ID<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 10<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"114.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"147.5\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"190.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"114.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"147.5\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"95.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"95.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"95.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.5\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"152.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"185.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"110.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"143.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"42.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"75.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"21.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"28.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"181.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.4\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Eloy Detention Center<\/b><br>\n     Eloy, AZ<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 1,332<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"191.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.5\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,487<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"191.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.4\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,486<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,491<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"190.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,478<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"191.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,483<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"180.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.4\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,401<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"184.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.5\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,433<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"178.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.1\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,383<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"186.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"219.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,451<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"130.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"163.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,010<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"75.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"108.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">584<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"101.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"134.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">789<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"134.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"167.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,041<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"182.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"215.6\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,418<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"180.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,402<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"171.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"204.5\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,332<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Erie County Jail<\/b><br>\n     Erie, PA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 15<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"109.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"142.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"95.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.5\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"54.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"27.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"60.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"13.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"46.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"54.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"40.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"73.9\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"40.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"73.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"2.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"177.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"210.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Delaney Hall Detention Facility<\/b><br>\n     Newark, NJ<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 905<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"88.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"121.5\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">395<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"114.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"147.2\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">510<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">911<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"185.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">829<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"190.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">852<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"120.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">536<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"120.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">539<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"152.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"185.1\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">679<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"175.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"208.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">781<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"113.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"146.4\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">506<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"52.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"85.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">234<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"202.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"235.7\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">905<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Etowah County Jail<\/b><br>\n     Gadsden, AL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 74<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">360<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"193.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"226.2\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">341<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"179.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">317<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"176.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">311<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"171.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"204.1\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">302<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"159.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"192.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">281<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"157.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"190.5\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">278<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"170.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"203.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">300<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"162.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">287<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"95.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">169<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"61.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">108<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"24.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">44<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"41.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"74.8\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">74<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">FCI Atlanta<\/b><br>\n     Atlanta, GA<br>\n     <span style=\"color:#666;\">Type: Federal Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 107<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"168.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.1\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">88<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">107<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">FDC Philadelphia<\/b><br>\n     Philadelphia, PA<br>\n     <span style=\"color:#666;\">Type: Federal Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 98<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"133.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"166.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">62<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">98<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Fayette County Detention Center<\/b><br>\n     Lexington, KY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY16 | Last seen: FY26<\/span><br><b>ADP: 2<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"83.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"116.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"83.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"116.1\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"91.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"124.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"74.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"58.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.2\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"132.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"165.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"191.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.1\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Finney County Jail<\/b><br>\n     Garden City, KS<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 2<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Florence Service Processing Center<\/b><br>\n     Florence, AZ<br>\n     <span style=\"color:#666;\">Type: ICE Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 329<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"189.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">385<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"170.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"203.9\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">348<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"190.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.1\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">387<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"185.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">377<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"184.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">375<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"184.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">375<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"190.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">387<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"183.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"216.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">374<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">415<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"128.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"161.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">262<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"46.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"79.1\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">94<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"85.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">174<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"116.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"149.8\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">238<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"190.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">387<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"190.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">389<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"161.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"194.8\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">329<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Florence Staging Facility<\/b><br>\n     Florence, AZ<br>\n     <span style=\"color:#666;\">Type: ICE Short-Term Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 339<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"138.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"171.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">231<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"72.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.6\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">121<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"21.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.8\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">36<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"27.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"60.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">45<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"70.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">116<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"121.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"154.5\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">202<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"119.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">198<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">339<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Florida Soft-Sided Facility<\/b><br>\n     Ochopee, FL<br>\n     <span style=\"color:#666;\">Type: State Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 1,341<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,341<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Floyd County Jail<\/b><br>\n     Rome, GA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY23 | Last seen: FY26<\/span><br><b>ADP: 1<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"24.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.9\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"91.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"124.4\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Folkston Annex IPC<\/b><br>\n     Folkston, GA<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 276<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"138.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"171.4\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">194<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"63.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"96.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">89<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"121.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"154.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">170<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"96.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"129.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">135<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"172.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"205.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">241<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">286<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"197.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"230.2\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">276<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Folkston ICE Processing Center<\/b><br>\n     Folkston, GA<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 942<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"9.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"42.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">46<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">942<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Franklin County Jail<\/b><br>\n     Chambersburg, PA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 1<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Freeborn County Adult Detention Center<\/b><br>\n     Albert Lea, MN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 82<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"183.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"216.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">72<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"193.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"226.9\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">76<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"181.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.2\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">71<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"148.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"181.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">58<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"140.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"173.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">55<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"112.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.3\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">44<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"155.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"188.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">61<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"201.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"234.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">79<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"179.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">70<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"152.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"185.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">60<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"96.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"129.7\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">38<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"49.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"82.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">19<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"70.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.9\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"128.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"161.9\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">50<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"208.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"241.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">82<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">82<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Fulton County Jail Indiana<\/b><br>\n     Rochester, IN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 5<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Geauga County Jail<\/b><br>\n     Chardon, OH<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY11 | Last seen: FY26<\/span><br><b>ADP: 21<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"7.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"40.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"141.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"174.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">39<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"120.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">33<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"101.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"134.9\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"120.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">33<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"138.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"171.3\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">38<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"182.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"215.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">50<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">58<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"174.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"207.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">48<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"71.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"104.3\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">20<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"58.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"92.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"125.4\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"192.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.2\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">53<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"150.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"183.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">41<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"77.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"110.5\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">21<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Glades County Detention Center<\/b><br>\n     Moore Haven, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 468<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"182.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"215.2\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">418<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"183.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"216.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">420<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"180.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">414<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"144.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">332<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"83.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"116.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">192<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"40.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"73.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">92<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"56.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">130<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"129.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">296<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"184.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">422<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"165.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"198.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">380<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"81.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.5\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">187<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"57.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"90.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">133<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">468<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Golden State Annex<\/b><br>\n     McFarland, CA<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY20 | Last seen: FY26<\/span><br><b>ADP: 620<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"32.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"65.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">98<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"41.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"74.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">126<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"52.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"85.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">159<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"114.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"147.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">347<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"196.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">596<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">620<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Grand Forks County Correctional Facility<\/b><br>\n     Grand Forks, ND<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 20<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">22<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"171.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"204.8\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"143.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"176.2\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"47.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"80.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"47.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"80.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"38.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"71.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"28.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.6\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"85.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"51.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"84.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"5.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.7\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"77.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"110.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.8\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">20<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Grayson County Jail<\/b><br>\n     Leitchfield, KY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY11 | Last seen: FY26<\/span><br><b>ADP: 158<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"3.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.9\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"8.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"41.8\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"6.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"39.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"91.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"124.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">71<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">158<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Greene County Jail<\/b><br>\n     Springfield, MO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 270<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"107.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"140.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">143<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">270<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Hall County Department of Corrections<\/b><br>\n     Grand Island, NE<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 13<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"171.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"204.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">67<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">82<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"169.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"202.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">66<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"94.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"127.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">37<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"66.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"99.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">26<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"25.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"58.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"35.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.9\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"130.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"163.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">51<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"209.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"242.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">82<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"146.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"179.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">57<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"49.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"82.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">20<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"37.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"70.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"36.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"69.4\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"3.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"34.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"67.1\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Hancock County Public Safety Complex<\/b><br>\n     Bay St. Louis, MS<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY20 | Last seen: FY26<\/span><br><b>ADP: 27<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"7.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"40.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"7.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"40.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"28.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.7\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"49.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"82.6\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"76.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"109.7\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"183.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"216.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">24<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Hardin County Jail<\/b><br>\n     Eldora, IA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 42<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">70<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"195.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"228.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">65<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"168.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">56<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"105.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"138.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">35<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"117.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"150.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">39<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">24<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"135.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"168.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">45<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">68<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"170.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"203.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">57<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"152.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"185.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">51<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"31.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"64.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"127.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.5\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">42<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Henderson Detention<\/b><br>\n     Henderson, NV<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY11 | Last seen: FY26<\/span><br><b>ADP: 91<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"97.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"130.2\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">121<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">254<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"187.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">234<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"187.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.9\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">234<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"179.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">223<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"192.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.8\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">240<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"198.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">247<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"172.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"205.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">215<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"145.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"178.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">181<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"72.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">90<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"34.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"67.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"55.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.7\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">69<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"55.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">68<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"62.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"95.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">78<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"73.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.4\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">91<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Hillsborough County Jail<\/b><br>\n     Tampa, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 4<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Honolulu Federal Detention Center<\/b><br>\n     Honolulu, HI<br>\n     <span style=\"color:#666;\">Type: Federal Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 80<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"73.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"73.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.6\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"36.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"69.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"20.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"53.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"28.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"53.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"86.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">20<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"125.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"158.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">48<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">80<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Hopkins County Jail<\/b><br>\n     Madisonville, KY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 164<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"64.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">52<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">164<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Houston Processing Center<\/b><br>\n     Houston, TX<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 883<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"183.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"216.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">866<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"188.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"221.9\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">890<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"189.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.8\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">894<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"190.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">898<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"200.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"233.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">942<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"182.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"215.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">860<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"194.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"227.4\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">916<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">961<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"192.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">908<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"122.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"155.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">577<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"52.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"85.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">249<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"79.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"112.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">374<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"124.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.8\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">588<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"166.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.9\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">786<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"179.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">847<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"187.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.5\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">883<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">IAH Secure Adult Detention Facility (Polk)<\/b><br>\n     Livingston, TX<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 872<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"187.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">836<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"164.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"197.7\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">734<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"173.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"206.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">774<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"115.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"148.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">513<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"133.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"166.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">594<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"64.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">289<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"126.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"159.4\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">563<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"153.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"186.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">685<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">909<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"66.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"99.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">294<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"55.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.3\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">247<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"104.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"137.1\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">464<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"126.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"159.9\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">565<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"160.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"193.3\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">714<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"184.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">823<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"195.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"228.7\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">872<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Imperial Regional Detention Facility<\/b><br>\n     Calexico, CA<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY14 | Last seen: FY26<\/span><br><b>ADP: 674<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"199.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"232.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">665<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">681<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"198.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">663<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"200.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"233.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">667<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"148.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"181.6\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">496<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"110.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"143.5\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">369<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"148.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"181.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">494<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"163.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.7\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">546<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"187.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.5\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">626<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"199.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"232.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">664<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"201.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"234.9\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">674<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Irwin County Detention Center<\/b><br>\n     Ocilla, GA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY11 | Last seen: FY26<\/span><br><b>ADP: 128<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"49.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"82.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">204<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"80.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">337<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"85.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">357<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"100.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"133.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">418<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"82.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"115.8\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">345<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"131.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">546<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"166.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.3\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">693<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">850<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"151.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.4\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">631<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"30.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.8\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">128<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">JTF Camp Six<\/b><br>\n     Guantanamo Bay, Cuba<br>\n     <span style=\"color:#666;\">Type: Military Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 11<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"133.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"166.2\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Jackson Parish Correctional Center<\/b><br>\n     Jonesboro, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 1,192<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"80.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.2\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">498<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"97.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"130.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">605<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"65.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.1\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">404<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"75.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"108.1\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">466<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"93.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"126.8\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">582<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"135.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"168.5\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">841<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"170.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"203.1\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,056<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,192<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Jefferson County Jail<\/b><br>\n     Rigby, ID<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 7<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"96.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"129.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"129.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"129.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"32.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"65.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"64.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"64.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"32.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"65.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"96.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"129.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"187.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"12.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"45.9\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"164.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"197.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Joe Corley Processing Center<\/b><br>\n     Conroe, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 942<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"78.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"111.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">369<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"74.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.5\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">350<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"100.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"133.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">473<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"178.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">839<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">958<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"143.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"176.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">675<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"190.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.4\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">894<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"184.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">866<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"179.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">844<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"31.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"64.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">150<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"9.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"42.1\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"39.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"72.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">185<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"123.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"156.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">578<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"180.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.8\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">849<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"183.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"216.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">864<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"200.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"233.6\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">942<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Kandiyohi County Jail<\/b><br>\n     Willmar, MN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 112<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"65.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">46<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"78.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"111.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">55<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"90.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"123.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">63<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"73.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">52<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"124.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.6\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">88<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"153.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"186.2\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">108<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">144<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"159.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"192.3\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">112<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Kansas City Holdroom<\/b><br>\n     Kansas City, MO<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 3<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Karnes County Correctional Center<\/b><br>\n     Karnes City, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 2<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"14.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">19<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"61.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">83<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">276<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"29.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"62.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">40<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"30.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">41<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"14.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.8\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">20<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"31.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"64.8\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Karnes County Immigration Processing Center<\/b><br>\n     Karnes City, TX<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY22 | Last seen: FY26<\/span><br><b>ADP: 1,199<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"62.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"95.9\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">393<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"127.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.6\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">797<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"180.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.8\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,129<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"155.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"188.1\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">968<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,199<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Kay County Justice Facility<\/b><br>\n     Newkirk, OK<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 158<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"30.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">24<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"111.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"144.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">87<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"72.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.1\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">56<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"76.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"109.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">59<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"86.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">67<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"111.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"144.3\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">87<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"151.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">118<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">158<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Kenton County Jail<\/b><br>\n     Covington, KY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 109<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"46.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"79.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">109<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Knox County Detention Facility<\/b><br>\n     Knoxville, TN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 33<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"21.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"5.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"12.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"45.8\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"19.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"52.8\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"190.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">30<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">33<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Krome North Service Processing Center<\/b><br>\n     Miami, FL<br>\n     <span style=\"color:#666;\">Type: ICE Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 866<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"119.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.5\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">531<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"136.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">607<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"130.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"163.1\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">578<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"127.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">568<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"116.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"149.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">519<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"101.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"134.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">452<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"125.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"158.6\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">558<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"132.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"165.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">589<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"163.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">728<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"119.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">533<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"65.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.8\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">293<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"79.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"112.1\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">351<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"115.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"148.5\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">513<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"131.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">582<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">906<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"194.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"227.8\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">866<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">La Salle County Regional Detention Center<\/b><br>\n     Encinal, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY11 | Last seen: FY26<\/span><br><b>ADP: 255<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"29.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"62.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">37<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"88.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"121.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">111<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"83.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"116.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">105<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"129.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">162<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"28.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">35<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"35.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.2\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">44<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"91.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"124.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">115<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"3.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"81.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">102<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">255<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Lake County Jail<\/b><br>\n     Tavares, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 1<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"180.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Laramie County Jail<\/b><br>\n     Cheyenne, WY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 4<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Laredo Processing Center<\/b><br>\n     Laredo, TX<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 368<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"134.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"167.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">242<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"126.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"159.8\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">229<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"180.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">326<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"177.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"210.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">321<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"172.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"205.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">312<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"154.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">279<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"166.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.6\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">301<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"172.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"205.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">312<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">369<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"103.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"136.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">188<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"69.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"102.1\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">125<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"82.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"115.9\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">150<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"117.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"150.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">212<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"168.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">304<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"203.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"236.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">368<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"203.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"236.7\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">368<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Central Louisiana ICE Processing Center (CLIPC)<\/b><br>\n     Jena, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 1,172<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"135.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"168.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">831<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"161.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"194.5\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">994<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"147.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"180.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">910<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"159.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"192.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">980<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"167.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"200.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,033<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"170.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"203.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,047<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"179.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.5\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,105<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"181.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,114<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"191.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,179<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"153.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"186.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">944<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"79.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"112.5\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">489<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"86.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">532<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"131.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.2\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">808<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"181.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.4\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,116<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,182<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"190.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.5\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,172<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Laurel County Correctional Center<\/b><br>\n     London, KY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 1<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"131.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.5\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Lawrence County<\/b><br>\n     Deadwood, SD<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 10<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Leavenworth US Penitentiary<\/b><br>\n     Leavenworth, KS<br>\n     <span style=\"color:#666;\">Type: Federal Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 58<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"147.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"180.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">41<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">58<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Lexington County Jail<\/b><br>\n     Lexington, SC<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY11 | Last seen: FY26<\/span><br><b>ADP: 5<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"163.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"163.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"122.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"155.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"81.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"81.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"81.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.5\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"81.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"122.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"155.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"97.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"130.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"81.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.5\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"69.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"102.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"73.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.4\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"203.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"236.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Limestone County Detention Center<\/b><br>\n     Groesbeck, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 254<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"112.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">140<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"196.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">245<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"130.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"163.8\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">163<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"20.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"53.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"35.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.4\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">44<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"44.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"77.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">56<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">254<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Lincoln County Jail<\/b><br>\n     North Platte, NE<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 27<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"142.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"175.1\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Linn County Jail<\/b><br>\n     Cedar Rapids, IA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 39<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"48.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"81.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"74.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"48.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"81.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"26.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"21.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"16.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"49.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"16.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"49.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"32.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"65.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"58.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"26.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"10.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"43.1\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"36.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"69.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"50.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"83.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">39<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Logan County Jail<\/b><br>\n     Guthrie, OK<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 5<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"136.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Louisiana ICE Processing<\/b><br>\n     Angola, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 180<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"5.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">180<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Lubbock County Detention Center<\/b><br>\n     Lubbock, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 3<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"160.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"193.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"80.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"80.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"80.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"80.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"80.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Madison County Jail<\/b><br>\n     Canton, MS<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 9<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"109.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"142.2\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"55.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"14.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"97.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"130.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"191.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Mahoning County Jail<\/b><br>\n     Youngstown, OH<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 89<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"102.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"135.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">89<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Folkston Main IPC<\/b><br>\n     Folkston, GA<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 700<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"132.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"165.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">456<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"84.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"117.8\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">291<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"141.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"174.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">487<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"114.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"147.5\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">393<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"183.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"216.4\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">630<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"195.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"228.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">672<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">700<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Marion County Jail<\/b><br>\n     Indianapolis, IN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 55<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"15.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"48.3\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"23.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"56.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"15.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"48.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"7.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"40.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"3.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"3.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.8\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"3.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.8\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"7.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"40.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"5.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"203.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"236.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">53<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">55<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Martin County Jail<\/b><br>\n     Stuart, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 6<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Mccook Detention Center<\/b><br>\n     McCook, NE<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 77<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">77<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Mesa Verde ICE Processing Center<\/b><br>\n     Bakersfield, CA<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY15 | Last seen: FY26<\/span><br><b>ADP: 377<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"85.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">159<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"198.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">368<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">379<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"202.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"235.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">377<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"133.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"166.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">248<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"19.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"52.3\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">36<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"28.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">52<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"26.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">49<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"25.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"58.8\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">48<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"71.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"104.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">133<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"203.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"236.1\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">377<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Miami Correctional Center<\/b><br>\n     Bunker Hill, IN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 405<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">405<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Miami Federal Detention<\/b><br>\n     Miami, FL<br>\n     <span style=\"color:#666;\">Type: Federal Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 459<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"104.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"137.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">236<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">459<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Miami Staging Facility<\/b><br>\n     Miami, FL<br>\n     <span style=\"color:#666;\">Type: ICE Short-Term Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 20<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">20<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Miller County Jail<\/b><br>\n     Texarkana, AR<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 6<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"117.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"150.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"117.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"150.8\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"78.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"111.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"39.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"72.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"39.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"72.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"39.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"72.3\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"39.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"72.3\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"82.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"115.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Minicassia Detention Center<\/b><br>\n     Burley, ID<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 4<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"129.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"129.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"129.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"86.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.4\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"129.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.6\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"129.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"138.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"171.2\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"121.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"154.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"43.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"168.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.5\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Minnehaha County Jail<\/b><br>\n     Sioux Falls, SD<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 5<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"108.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Monroe County Detention-Dorm<\/b><br>\n     Monroe, MI<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY14 | Last seen: FY26<\/span><br><b>ADP: 124<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"118.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"151.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">72<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"70.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"83.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"116.6\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">51<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"106.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"139.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">65<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"108.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">66<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"77.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"110.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">47<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"20.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"53.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"46.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"79.9\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"41.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"74.9\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">26<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"61.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.4\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">38<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"176.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">108<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">124<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Montgomery ICE Processing Center<\/b><br>\n     Conroe, TX<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 1,227<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"148.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"181.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">951<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"98.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"131.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">626<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"60.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"93.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">387<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"102.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"135.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">653<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"152.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"185.8\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">976<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"183.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"216.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,170<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"190.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,217<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,227<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Moshannon Valley Processing Center<\/b><br>\n     Philipsburg, PA<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY22 | Last seen: FY26<\/span><br><b>ADP: 1,655<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"46.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"79.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">404<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"110.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"143.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">948<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"143.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"176.3\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,236<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"162.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,404<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,655<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Muscatine County Jail<\/b><br>\n     Muscatine, IA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 19<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"129.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.1\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">19<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Nassau County Correctional Center<\/b><br>\n     East Meadow, NY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 12<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"197.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"230.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Natrona County Jail<\/b><br>\n     Casper, WY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 14<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"14.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"14.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.8\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"109.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"142.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Nelson Coleman Correction<\/b><br>\n     Killona, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 3<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"80.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Nevada Southern Detention Center<\/b><br>\n     Pahrump, NV<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY16 | Last seen: FY26<\/span><br><b>ADP: 457<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"33.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"66.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">74<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"77.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"110.2\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">173<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"103.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"136.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">232<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"69.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"102.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">156<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"44.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"77.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">100<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"22.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"55.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">51<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"58.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.2\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">130<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"96.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"129.2\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">216<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"162.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">364<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">457<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">New Hanover County Jail<\/b><br>\n     Castle Hayne, NC<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY13 | Last seen: FY26<\/span><br><b>ADP: 4<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"51.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"84.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"51.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"84.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"51.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"84.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"66.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"99.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"66.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"99.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"25.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"58.7\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"41.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"74.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Niagara County Jail<\/b><br>\n     Lockport, NY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 12<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"48.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"81.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">North Central Regional Jail<\/b><br>\n     Greenwood, WV<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 2<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">North Lake Correctional Facility<\/b><br>\n     Baldwin, MI<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 1,413<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"15.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"48.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">116<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,413<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Northeast Ohio Correctional Center<\/b><br>\n     Youngstown, OH<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY17 | Last seen: FY26<\/span><br><b>ADP: 208<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"95.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">135<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">287<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"87.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"120.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">123<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"147.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"180.4\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">208<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Northern Regional Jail<\/b><br>\n     Moundsville, WV<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 28<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Northwest Regional Corrections Center<\/b><br>\n     Crookston, MN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 15<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"56.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Northwest State Correctional Center<\/b><br>\n     Swanton, VT<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY12 | Last seen: FY26<\/span><br><b>ADP: 12<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"17.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"50.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"17.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"50.9\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"64.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.6\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"79.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"112.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"166.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Oldham County Detention Center<\/b><br>\n     La Grange, KY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 128<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"95.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">59<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">128<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Orange County Jail (Florida)<\/b><br>\n     Orlando, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 71<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"3.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.7\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"2.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">165<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"3.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"26.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">22<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"87.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"120.3\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">71<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Orange County Jail (New York)<\/b><br>\n     Goshen, NY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 166<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"129.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.3\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">109<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"125.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"158.7\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">106<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"132.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"165.8\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">112<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"140.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"173.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">118<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"135.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"168.2\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">114<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"153.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"186.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">129<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">172<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"200.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"233.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">169<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"196.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">165<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"119.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">100<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"93.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"126.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">79<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"149.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"182.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">126<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"85.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.8\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">72<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"81.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"114.8\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">69<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"151.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">128<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"196.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.8\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">166<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Otay Mesa Detention Center<\/b><br>\n     San Diego, CA<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 1,487<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"86.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">667<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"86.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">671<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"85.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">665<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"84.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"117.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">653<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"85.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">664<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"82.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"115.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">635<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"107.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"140.8\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">835<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"132.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"165.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,027<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"124.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">966<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"93.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"126.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">726<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"60.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"93.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">466<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"92.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"125.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">717<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"126.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"159.7\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">982<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"161.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"194.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,248<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"179.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,390<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,487<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Otero County Processing Center<\/b><br>\n     Chaparral, NM<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 896<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"185.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">869<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"174.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"207.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">817<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"157.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"190.8\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">741<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"176.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">827<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"180.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"213.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">845<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"175.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"208.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">826<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"179.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">844<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"164.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"197.8\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">774<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">958<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"131.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">618<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"64.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">303<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"107.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"140.7\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">506<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"123.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"156.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">579<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"181.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">850<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"187.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">882<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"190.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.8\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">896<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Ozark County Sheriff's Office<\/b><br>\n     Gainesville, MO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 21<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"48.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"81.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">21<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Pennington County Jail (South Dakota)<\/b><br>\n     Rapid City, SD<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 3<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"61.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"24.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.7\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"160.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"193.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Phelps County Jail (Missouri)<\/b><br>\n     Rolla, MO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 15<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">23<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"134.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"167.5\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Phelps County Jail (Nebraska)<\/b><br>\n     Holdrege, NE<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 24<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"154.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.8\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">23<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"168.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"107.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"140.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"74.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"60.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"93.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"20.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"53.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"20.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"53.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"33.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"66.7\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"66.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"99.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"86.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.2\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"73.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"18.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"51.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"14.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"105.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"138.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"158.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"191.2\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">24<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Pickens County Detention Center<\/b><br>\n     Carrollton, AL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY20 | Last seen: FY26<\/span><br><b>ADP: 43<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"14.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"31.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"64.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"74.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.4\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"134.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"167.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"191.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"224.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">39<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Pike County Jail<\/b><br>\n     Lords Valley, PA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 241<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"145.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"178.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">172<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"149.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"182.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">176<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"147.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"180.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">174<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"146.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"179.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">173<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"135.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"168.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">160<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"96.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"129.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">114<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"143.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"176.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">169<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"157.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"190.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">186<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"167.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"200.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">198<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"100.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"133.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">119<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"29.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"62.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">35<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"53.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"86.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">63<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"84.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"117.4\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">100<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"108.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.9\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">129<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"162.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">192<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">241<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Pine Prairie ICE Processing Center<\/b><br>\n     Pine Prairie, LA<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY16 | Last seen: FY26<\/span><br><b>ADP: 903<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"108.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">479<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"162.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">717<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"196.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"229.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">868<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"115.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"148.2\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">510<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"54.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">243<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"78.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"111.9\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">349<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"80.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.9\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">358<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"112.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">496<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"178.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">788<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">903<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Pinellas County Jail<\/b><br>\n     Clearwater, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 38<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"5.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.6\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"5.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"11.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"44.2\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"5.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"5.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"5.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.6\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"27.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"60.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"6.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"39.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"8.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"41.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"14.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"23.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"56.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"90.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"123.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">38<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Plymouth County Correctional Facility<\/b><br>\n     Plymouth, MA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 506<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"110.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"143.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">274<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"120.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.5\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">299<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"119.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">297<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"88.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"121.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">220<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"49.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"82.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">123<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"24.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">61<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"34.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"67.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">86<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"41.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"74.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">103<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"119.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">296<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"89.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"122.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">221<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"35.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">88<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"43.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">109<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"36.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"69.7\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">91<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"99.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"132.3\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">246<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"181.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">449<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">506<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Polk County Jail<\/b><br>\n     Des Moines, IA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 53<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"158.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"191.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">57<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"169.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"202.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">46<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"84.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"117.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">23<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"51.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"84.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"3.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"11.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"44.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"70.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">19<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"116.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"149.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">32<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"105.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"138.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"75.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"108.5\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">20<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"51.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"84.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"92.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"125.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"99.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"132.8\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"160.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"193.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">44<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"194.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"227.2\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">53<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Pottawattamie County Jail<\/b><br>\n     Council Bluffs, IA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 31<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">38<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"143.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"176.7\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">26<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"99.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"132.5\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"38.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"71.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"66.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"99.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"33.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"66.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"66.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"99.3\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"82.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"115.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"49.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"82.7\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"47.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"80.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"75.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"108.7\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"149.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"182.2\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"150.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"183.3\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"204.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">37<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"170.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"203.8\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">31<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Prairieland Detention Center<\/b><br>\n     Alvarado, TX<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY17 | Last seen: FY26<\/span><br><b>ADP: 960<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"52.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"85.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">245<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"145.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"178.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">687<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"103.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"136.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">486<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"75.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"108.8\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">357<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"73.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">344<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"115.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"148.2\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">542<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"124.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.9\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">588<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"176.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.1\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">829<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">960<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Farmville Detention Center<\/b><br>\n     Farmville, VA<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 714<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"2.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.9\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"98.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"131.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">345<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"111.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"144.4\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">390<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"145.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"178.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">509<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"151.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">531<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"156.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"189.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">549<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"165.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"198.4\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">579<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">714<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"198.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">693<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"138.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"171.6\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">485<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"17.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"50.7\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">62<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"2.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"24.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.6\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">86<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"68.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"101.9\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">241<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"168.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"201.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">589<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">714<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Putnam County Sheriff<\/b><br>\n     Cookeville, TN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 18<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"68.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"101.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Richwood Correctional Center<\/b><br>\n     Monroe, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 1,084<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"67.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"100.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">379<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"88.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"121.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">500<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"63.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"96.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">358<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"70.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.7\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">399<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"83.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"116.1\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">469<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"137.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"170.2\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">774<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"166.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">942<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,084<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Rio Grande Detention Center<\/b><br>\n     Laredo, TX<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY14 | Last seen: FY26<\/span><br><b>ADP: 623<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"124.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"157.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">386<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"143.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"176.4\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">444<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"153.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"186.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">476<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"165.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"198.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">511<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"198.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"231.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">613<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"95.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.7\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">296<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"65.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">202<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"79.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"112.3\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">246<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"105.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"138.6\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">327<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"151.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.6\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">469<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">632<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"201.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"234.2\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">623<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Port Isabel Detention Center<\/b><br>\n     Los Fresnos, TX<br>\n     <span style=\"color:#666;\">Type: ICE Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 1,274<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"108.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.3\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">719<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"137.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"170.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">913<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"170.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"203.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,133<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"163.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,087<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"149.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"182.5\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">992<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"151.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,008<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"166.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.3\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,104<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"155.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"188.2\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,030<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"185.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,231<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"102.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"135.2\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">678<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"63.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"96.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">420<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"88.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"121.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">588<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"122.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"155.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">812<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"147.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"180.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">976<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"163.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"196.9\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,088<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,274<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">River Correctional Center<\/b><br>\n     Ferriday, LA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 586<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"111.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"144.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">320<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"100.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"133.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">290<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"75.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"108.5\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">217<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"104.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"137.1\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">299<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"105.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"138.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">301<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"171.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"204.4\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">492<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"193.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"226.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">555<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">586<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Riverside Regional Jail<\/b><br>\n     Hopewell, VA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 99<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"14.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">99<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Roanoke City Jail<\/b><br>\n     Roanoke, VA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY11 | Last seen: FY26<\/span><br><b>ADP: 1<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"127.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.1\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"127.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.1\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"127.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"127.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"127.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.1\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"165.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"198.2\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Robert A. Deyton Detention Center<\/b><br>\n     Lovejoy, GA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 12<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">74<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"48.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"81.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"35.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"8.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"41.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"7.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"40.6\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"5.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.4\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"18.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"51.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"33.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"66.9\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Rockingham County Jail<\/b><br>\n     Harrisonburg, VA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 1<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"166.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Saipan Department of Corrections (Susupe)<\/b><br>\n     Saipan, MP<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 21<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"9.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"42.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"63.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"96.9\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"45.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"78.7\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"38.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"71.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"25.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"58.4\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"50.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"83.7\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"92.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"125.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">21<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">San Diego District Staging<\/b><br>\n     San Diego, CA<br>\n     <span style=\"color:#666;\">Type: ICE Short-Term Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 11<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">San Juan Staging<\/b><br>\n     Guaynabo, PR<br>\n     <span style=\"color:#666;\">Type: ICE Short-Term Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 17<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"26.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"69.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"102.2\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"41.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"74.5\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"169.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"202.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">San Luis Regional Detention Center<\/b><br>\n     San Luis, AZ<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY13 | Last seen: FY26<\/span><br><b>ADP: 337<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"35.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.1\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">58<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"3.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"61.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.1\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">101<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"109.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"142.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">180<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"156.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"189.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">259<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"27.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"60.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">46<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"24.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.6\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">41<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"50.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"83.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">83<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"58.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.4\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">96<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"39.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"72.8\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">66<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"138.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"171.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">229<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">337<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Sarpy County Jail<\/b><br>\n     Papillion, NE<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 21<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"50.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"83.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">21<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Sauk County Sheriff<\/b><br>\n     Baraboo, WI<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 14<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"31.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"64.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Sebastian County Detention Center<\/b><br>\n     Fort Smith, AR<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 2<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"144.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"177.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"36.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"69.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"36.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"69.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"72.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"21.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"54.6\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"57.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"90.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"64.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.8\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Seneca County Jail<\/b><br>\n     Tiffin, OH<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 60<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">124<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"190.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"223.8\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">116<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"97.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"130.1\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">59<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"139.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"172.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">85<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"131.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">80<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"74.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">45<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"80.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"113.6\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">49<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"105.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"138.3\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">64<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"89.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"122.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">54<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"75.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"108.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">46<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"43.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"66.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"99.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">40<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"93.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"126.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">57<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"108.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"141.4\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">66<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"98.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"131.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">60<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"99.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"132.4\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">60<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Sherburne County Jail<\/b><br>\n     Elk River, MN<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 102<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"84.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"117.3\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">127<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"77.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"110.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">116<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"85.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">129<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"78.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"111.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">118<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"73.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">110<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"64.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"97.4\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">97<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"84.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"117.3\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">127<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"121.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"154.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">183<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">307<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"141.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"174.2\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">213<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"30.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"63.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">46<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"6.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"39.2\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"41.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"74.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">63<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"67.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"100.8\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">102<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Sioux County Jail<\/b><br>\n     Orange City, IA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 12<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">South Central Regional Jail<\/b><br>\n     Charleston, WV<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 32<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"13.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"46.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"19.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"52.7\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"32.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"65.8\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"26.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.2\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"19.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"52.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"19.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"52.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"39.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"72.4\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"39.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"72.4\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"33.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"66.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"22.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"55.3\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"18.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"51.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"26.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"59.2\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"13.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"46.8\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"84.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"117.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">32<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">South Louisiana ICE Processing Center<\/b><br>\n     Basile, LA<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 978<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"79.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"112.3\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">380<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"83.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"116.8\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">402<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"76.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"109.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">364<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"107.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"140.4\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">515<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"117.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"150.4\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">563<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"120.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"153.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">578<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"40.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"73.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">196<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"85.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"118.4\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">410<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"72.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.7\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">349<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"87.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"120.1\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">418<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"119.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.5\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">573<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"148.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"181.7\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">713<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"185.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.5\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">890<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">978<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">South Texas ICE Processing Center<\/b><br>\n     Pearsall, TX<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 1,756<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"164.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"197.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,527<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"172.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"205.6\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,607<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"184.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.9\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,722<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"189.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.9\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,769<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"184.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.9\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,722<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"166.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"199.1\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,547<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"185.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.5\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,728<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"174.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"207.9\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,629<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,788<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"115.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"148.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,076<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"88.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"121.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">822<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"119.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"152.1\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,109<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"139.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"172.4\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,298<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"170.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"203.5\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,588<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"182.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"215.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,695<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"188.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"221.6\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,756<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Southern Regional<\/b><br>\n     Beaver, WV<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 1<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Southwestern Regional Jail<\/b><br>\n     Holden, WV<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 1<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">St. Clair County Jail<\/b><br>\n     Port Huron, MI<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 47<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"25.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"58.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"125.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"158.5\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">45<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"114.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"147.3\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">41<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"78.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"111.1\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"136.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">49<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"114.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"147.3\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">41<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"192.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.4\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">69<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"178.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">64<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"193.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"226.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">70<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"118.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"151.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"65.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.5\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">24<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"34.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"67.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"133.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"166.9\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">48<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">75<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"182.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"215.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">65<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"132.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"165.2\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">47<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Ste. Genevieve County Sheriff/Jail<\/b><br>\n     Ste. Genevieve, MO<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 114<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"71.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"104.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">40<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">114<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Stewart Detention Center<\/b><br>\n     Lumpkin, GA<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 2,011<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"154.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.1\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,614<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"158.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"191.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,655<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"160.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"193.1\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,677<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"149.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"182.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,560<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"154.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.6\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,619<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"131.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"164.2\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,374<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"130.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"163.7\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,369<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"179.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.1\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,876<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"182.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"215.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,911<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"129.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,352<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"73.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">769<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"102.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"135.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,076<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"117.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"150.6\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,232<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"146.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"179.4\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,534<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"183.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"216.4\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,921<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2,011<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Strafford County Corrections<\/b><br>\n     Dover, NH<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 146<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"25.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"58.2\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"23.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"56.8\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"54.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">39<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"40.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"73.6\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"37.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"70.8\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"40.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"73.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"93.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"126.9\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">67<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"137.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"170.3\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">98<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"153.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"186.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">109<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"112.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">80<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"72.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"105.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">52<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"34.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"67.9\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">25<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"87.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"120.7\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">63<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"115.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"148.3\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">82<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"157.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"190.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">112<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">146<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Sweetwater County Jail<\/b><br>\n     Rock Springs, WY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 9<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"11.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"44.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"11.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"44.7\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"4.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"37.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"4.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"37.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"2.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"112.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">T. Don Hutto Detention Center<\/b><br>\n     Taylor, TX<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 458<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">482<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"117.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"150.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">279<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"52.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"85.3\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">124<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"112.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.7\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">266<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"162.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.7\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">385<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"176.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.3\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">417<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"181.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"214.1\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">428<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"193.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"226.9\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">458<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Northwest ICE Processing Center<\/b><br>\n     Tacoma, WA<br>\n     <span style=\"color:#666;\">Type: Private Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 1,380<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"148.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"181.2\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,105<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"156.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"189.5\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,167<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"176.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,313<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"178.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"211.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,333<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"187.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"220.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,400<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"151.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.8\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,132<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"189.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,411<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,432<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"179.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.9\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,342<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"99.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"132.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">739<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"48.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"81.7\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">363<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"49.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"82.8\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">372<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"76.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"109.4\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">570<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"96.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"129.5\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">719<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"158.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"191.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,180<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"185.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"218.1\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,380<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Tooele County Jail<\/b><br>\n     Tooele, UT<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 10<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"61.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Torrance County Detention Facility<\/b><br>\n     Estancia, NM<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 371<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"20.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"53.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">45<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"98.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"131.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">220<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"13.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"46.3\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">30<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"92.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"125.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">207<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"69.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"102.2\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">155<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"70.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.7\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">159<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"95.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"128.7\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">215<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"136.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"169.2\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">306<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">458<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"165.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"198.3\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">371<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Dilley Immigration Processing Center<\/b><br>\n     Dilley, TX<br>\n     <span style=\"color:#666;\">Type: Family Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY22 | Last seen: FY26<\/span><br><b>ADP: 867<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"129.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"162.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">739<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,099<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"28.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"61.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">162<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"151.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.4\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">867<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Tulsa County Jail (David L. Moss Justice Center)<\/b><br>\n     Tulsa, OK<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 43<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"148.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"181.7\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">121<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"189.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.3\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">154<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"199.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"232.1\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">162<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"170.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"203.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">139<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"165.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"198.9\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">135<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"149.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"182.9\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">122<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"162.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">132<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">166<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"154.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"187.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">126<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"4.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"37.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"5.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.4\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"74.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">61<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"52.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"85.5\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Turner Guilford Knight (TGK) Jail<\/b><br>\n     Miami, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 10<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Two Bridges Regional Jail<\/b><br>\n     Wiscasset, ME<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 8<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"162.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"195.3\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Uinta County Jail<\/b><br>\n     Evanston, WY<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 23<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"43.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"76.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">23<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Val Verde Correctional Facility<\/b><br>\n     Del Rio, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 3<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"12.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"45.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"14.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"56.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.0\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"56.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"89.0\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">28<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"54.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"87.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"24.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.0\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"18.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"51.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">9<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"14.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"47.0\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">102<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"6.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"39.8\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Victoria County Jail<\/b><br>\n     Victoria, TX<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 14<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"27.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"60.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Walton County Jail<\/b><br>\n     Defuniak Springs, FL<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 27<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"65.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">27<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Ward County Jail<\/b><br>\n     Minot, ND<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 2<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"139.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"172.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Washington County Detention Center<\/b><br>\n     Fayetteville, AR<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 6<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"86.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"119.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"62.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"95.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"19.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"52.6\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">0<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"102.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"135.1\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"184.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"217.6\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Washington County Jail (Purgatory Correctional Facility)<\/b><br>\n     Hurricane, UT<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 12<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"175.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"208.0\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"116.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"149.7\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"58.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.3\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"46.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"79.7\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"46.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"79.7\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">4<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"35.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.0\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"58.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.3\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"33.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"66.8\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"66.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"99.5\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"24.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"57.5\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"37.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"70.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"140.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"173.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Washoe County Jail<\/b><br>\n     Reno, NV<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 51<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"65.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.9\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"74.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"107.1\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">18<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"57.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"90.6\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"61.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"94.8\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"70.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"103.0\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">17<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"57.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"90.6\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"57.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"90.6\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"53.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"86.5\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">13<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"60.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"93.5\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">15<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"58.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"91.1\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">14<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"33.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"66.4\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"33.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"66.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"45.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"78.3\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"50.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"83.6\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">12<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"65.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"98.1\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">16<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">51<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Waukesha County Jail<\/b><br>\n     Waukesha, WI<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 3<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"151.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"184.2\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">2<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Webb County Detention Center (CCA)<\/b><br>\n     Laredo, TX<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY17 | Last seen: FY26<\/span><br><b>ADP: 443<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"19.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"52.8\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">43<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"176.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"209.6\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">384<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"35.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"68.8\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">78<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"53.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"86.9\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">117<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"67.9\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"100.9\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">148<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"84.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"117.0\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">182<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"104.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"137.3\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">227<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"179.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"212.3\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">389<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">443<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Weber County Jail<\/b><br>\n     Ogden, UT<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 6<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Western Regional Jail And Correctional Facility<\/b><br>\n     Barboursville, WV<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY26 | Last seen: FY26<\/span><br><b>ADP: 8<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"216.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"249.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">8<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Western Tennessee Detention Facility<\/b><br>\n     Mason, TN<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY10 | Last seen: FY26<\/span><br><b>ADP: 275<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><rect x=\"30\" y=\"0.0\" width=\"7.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"40.4\" y=\"5.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><rect x=\"30\" y=\"13.0\" width=\"8.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"41.2\" y=\"18.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><rect x=\"30\" y=\"26.0\" width=\"5.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"38.2\" y=\"31.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">7<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><rect x=\"30\" y=\"39.0\" width=\"3.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"36.7\" y=\"44.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">5<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><rect x=\"30\" y=\"52.0\" width=\"36.3\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"69.3\" y=\"57.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">49<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><rect x=\"30\" y=\"65.0\" width=\"4.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"37.5\" y=\"70.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">6<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><rect x=\"30\" y=\"78.0\" width=\"2.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.2\" y=\"83.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><rect x=\"30\" y=\"91.0\" width=\"71.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"104.2\" y=\"96.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">96<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"2.1\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.1\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">3<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"2.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"35.0\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">275<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Winn Correctional Center<\/b><br>\n     Winnfield, LA<br>\n     <span style=\"color:#666;\">Type: Dedicated Migrant Detention Center<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 1,546<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"55.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"88.2\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">450<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"127.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"160.0\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,035<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"73.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"106.8\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">602<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"89.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"122.0\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">725<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"142.5\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"175.5\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,161<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"175.2\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"208.2\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,428<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"192.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"225.0\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,565<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"189.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"222.7\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">1,546<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Woodbury County Jail<\/b><br>\n     Sioux City, IA<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY25 | Last seen: FY26<\/span><br><b>ADP: 63<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"96.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"129.8\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">29<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"210.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"243.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">63<\/text><\/svg><\/div><\/div>","<div style=\"min-width:280px; font-family:sans-serif; font-size:12px;\">\n     <b style=\"font-size:13px;\">Wyatt Detention Center<\/b><br>\n     Central Falls, RI<br>\n     <span style=\"color:#666;\">Type: Jail/Prison<\/span><br>\n     <span style=\"color:#666;\"><span style=\"color:#2a7;font-weight:bold;\">Open<\/span> | First seen: FY19 | Last seen: FY26<\/span><br><b>ADP: 114<\/b> (FY26)<div style=\"margin-top:6px; border-top:1px solid #ddd; padding-top:4px;\">\n       <span style=\"font-size:10px; color:#666;\">ADP by fiscal year<\/span><br><svg width=\"260\" height=\"208\" xmlns=\"http://www.w3.org/2000/svg\"><text x=\"27\" y=\"5.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY10<\/text><text x=\"27\" y=\"18.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY11<\/text><text x=\"27\" y=\"31.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY12<\/text><text x=\"27\" y=\"44.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY13<\/text><text x=\"27\" y=\"57.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY14<\/text><text x=\"27\" y=\"70.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY15<\/text><text x=\"27\" y=\"83.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY16<\/text><text x=\"27\" y=\"96.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY17<\/text><text x=\"27\" y=\"109.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY19<\/text><rect x=\"30\" y=\"104.0\" width=\"117.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"150.4\" y=\"109.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">66<\/text><text x=\"27\" y=\"122.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY20<\/text><rect x=\"30\" y=\"117.0\" width=\"122.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"155.6\" y=\"122.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">69<\/text><text x=\"27\" y=\"135.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY21<\/text><rect x=\"30\" y=\"130.0\" width=\"102.8\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"135.8\" y=\"135.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">58<\/text><text x=\"27\" y=\"148.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY22<\/text><rect x=\"30\" y=\"143.0\" width=\"112.4\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"145.4\" y=\"148.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">63<\/text><text x=\"27\" y=\"161.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY23<\/text><rect x=\"30\" y=\"156.0\" width=\"106.6\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"139.6\" y=\"161.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">60<\/text><text x=\"27\" y=\"174.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY24<\/text><rect x=\"30\" y=\"169.0\" width=\"109.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"142.0\" y=\"174.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">61<\/text><text x=\"27\" y=\"187.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY25<\/text><rect x=\"30\" y=\"182.0\" width=\"199.7\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"232.7\" y=\"187.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">112<\/text><text x=\"27\" y=\"200.5\" font-size=\"9\" font-family=\"sans-serif\" fill=\"#333\" text-anchor=\"end\" dominant-baseline=\"central\">FY26<\/text><rect x=\"30\" y=\"195.0\" width=\"204.0\" height=\"11\" fill=\"#4682B4\" rx=\"1\"/><text x=\"237.0\" y=\"200.5\" font-size=\"8\" font-family=\"sans-serif\" fill=\"#333\" dominant-baseline=\"central\">114<\/text><\/svg><\/div><\/div>"],null,["Adams County Detention Center (Mississippi) (Natchez, MS)","Alexandria Staging Facility (Alexandria, LA)","Allegany County Jail (Belmont, NY)","Allen Parish Public Safety Complex (Oberlin, LA)","Anchorage Correctional Complex (Anchorage, AK)","Baker Correctional Institution (Sanderson, FL)","Baker County Sheriff's Office (Macclenny, FL)","Baldwin County Correctional Center (Bay Minette, AL)","Berlin Federal. Correctional. Institution. (Berlin, NH)","Bluebonnet Detention Center (Anson, TX)","Boone County Jail (Burlington, KY)","Brooklyn MDC (Brooklyn, NY)","Broome County Jail (Binghamton, NY)","Broward County Jail (Fort Lauderdale, FL)","Broward Transitional Center (Pompano Beach, FL)","Buffalo (Batavia) Service Processing Center (Batavia, NY)","Burleigh County (Bismarck, ND)","Butler County Jail (Hamilton, OH)","Calhoun County Correctional Center (Battle Creek, MI)","California City Immigration Processing Center (California City, CA)","Cambria County Prison (Ebensburg, PA)","Campbell County Detention Center (Newport, KY)","Caroline Detention Facility (Bowling Green, VA)","Cascade County Jail, Montana (Great Falls, MT)","Cass County Jail (Plattsmouth, NE)","Central Arizona Florence Correctional Complex (Florence, AZ)","Chase County Jail (Cottonwood Falls, KS)","Chavez Detention Center (Roswell, NM)","Chippewa County SSM (Sault Ste. Marie, MI)","Chittenden Regional Correctional Facility (South Burlington, VT)","Christian County Jail (Hopkinsville, KY)","Cibola County Correctional Center (Milan, NM)","Cimmarron Correctional Facility (Cushing, OK)","Clark County Jail (Indiana) (Jeffersonville, IN)","Clay County Justice Center (Brazil, IN)","Clinton County Correctional Facility (McElhattan, PA)","Clinton County Jail (Frankfort, IN)","Clinton County Jail (Plattsburgh, NY)","Coastal Bend Detention Facility (Robstown, TX)","Collier County Naples Jail Center (Naples, FL)","Correctional. Center of Northwest Ohio (Stryker, OH)","Crow Wing County Jail (Brainerd, MN)","Cumberland County Jail (Portland, ME)","Dakota County Jail (Dakota City, NE)","Dallas County Jail - Lew Sterrett Justice Center (Dallas, TX)","Daviess County Detention (Martinsburg, WV)","Daviess County Detention (Owensboro, KY)","Davis County (Farmington, UT)","Denver Contract Detention Facility (Aurora, CO)","Department of Corrections Hagatna (Hagatna, GU)","Adelanto ICE Processing Center (Adelanto, CA)","Diamondback Correctional Facility (Watonga, OK)","Camp East Montana (El Paso, TX)","Dodge County Jail (Juneau, WI)","Dona Ana County Detention Center (Las Cruces, NM)","Douglas County (Superior, WI)","East Hidalgo Detention Center (La Villa, TX)","Eden Detention Center (Eden, TX)","El Paso County Detention Facility (El Paso, TX)","El Paso Service Processing Center (El Paso, TX)","El Valle Detention Facility (Raymondville, TX)","Elizabeth Detention Center (Elizabeth, NJ)","Elmore County Jail (Mountain Home, ID)","Eloy Detention Center (Eloy, AZ)","Erie County Jail (Erie, PA)","Delaney Hall Detention Facility (Newark, NJ)","Etowah County Jail (Gadsden, AL)","FCI Atlanta (Atlanta, GA)","FDC Philadelphia (Philadelphia, PA)","Fayette County Detention Center (Lexington, KY)","Finney County Jail (Garden City, KS)","Florence Service Processing Center (Florence, AZ)","Florence Staging Facility (Florence, AZ)","Florida Soft-Sided Facility (Ochopee, FL)","Floyd County Jail (Rome, GA)","Folkston Annex IPC (Folkston, GA)","Folkston ICE Processing Center (Folkston, GA)","Franklin County Jail (Chambersburg, PA)","Freeborn County Adult Detention Center (Albert Lea, MN)","Fulton County Jail Indiana (Rochester, IN)","Geauga County Jail (Chardon, OH)","Glades County Detention Center (Moore Haven, FL)","Golden State Annex (McFarland, CA)","Grand Forks County Correctional Facility (Grand Forks, ND)","Grayson County Jail (Leitchfield, KY)","Greene County Jail (Springfield, MO)","Hall County Department of Corrections (Grand Island, NE)","Hancock County Public Safety Complex (Bay St. Louis, MS)","Hardin County Jail (Eldora, IA)","Henderson Detention (Henderson, NV)","Hillsborough County Jail (Tampa, FL)","Honolulu Federal Detention Center (Honolulu, HI)","Hopkins County Jail (Madisonville, KY)","Houston Processing Center (Houston, TX)","IAH Secure Adult Detention Facility (Polk) (Livingston, TX)","Imperial Regional Detention Facility (Calexico, CA)","Irwin County Detention Center (Ocilla, GA)","JTF Camp Six (Guantanamo Bay, Cuba)","Jackson Parish Correctional Center (Jonesboro, LA)","Jefferson County Jail (Rigby, ID)","Joe Corley Processing Center (Conroe, TX)","Kandiyohi County Jail (Willmar, MN)","Kansas City Holdroom (Kansas City, MO)","Karnes County Correctional Center (Karnes City, TX)","Karnes County Immigration Processing Center (Karnes City, TX)","Kay County Justice Facility (Newkirk, OK)","Kenton County Jail (Covington, KY)","Knox County Detention Facility (Knoxville, TN)","Krome North Service Processing Center (Miami, FL)","La Salle County Regional Detention Center (Encinal, TX)","Lake County Jail (Tavares, FL)","Laramie County Jail (Cheyenne, WY)","Laredo Processing Center (Laredo, TX)","Central Louisiana ICE Processing Center (CLIPC) (Jena, LA)","Laurel County Correctional Center (London, KY)","Lawrence County (Deadwood, SD)","Leavenworth US Penitentiary (Leavenworth, KS)","Lexington County Jail (Lexington, SC)","Limestone County Detention Center (Groesbeck, TX)","Lincoln County Jail (North Platte, NE)","Linn County Jail (Cedar Rapids, IA)","Logan County Jail (Guthrie, OK)","Louisiana ICE Processing (Angola, LA)","Lubbock County Detention Center (Lubbock, TX)","Madison County Jail (Canton, MS)","Mahoning County Jail (Youngstown, OH)","Folkston Main IPC (Folkston, GA)","Marion County Jail (Indianapolis, IN)","Martin County Jail (Stuart, FL)","Mccook Detention Center (McCook, NE)","Mesa Verde ICE Processing Center (Bakersfield, CA)","Miami Correctional Center (Bunker Hill, IN)","Miami Federal Detention (Miami, FL)","Miami Staging Facility (Miami, FL)","Miller County Jail (Texarkana, AR)","Minicassia Detention Center (Burley, ID)","Minnehaha County Jail (Sioux Falls, SD)","Monroe County Detention-Dorm (Monroe, MI)","Montgomery ICE Processing Center (Conroe, TX)","Moshannon Valley Processing Center (Philipsburg, PA)","Muscatine County Jail (Muscatine, IA)","Nassau County Correctional Center (East Meadow, NY)","Natrona County Jail (Casper, WY)","Nelson Coleman Correction (Killona, LA)","Nevada Southern Detention Center (Pahrump, NV)","New Hanover County Jail (Castle Hayne, NC)","Niagara County Jail (Lockport, NY)","North Central Regional Jail (Greenwood, WV)","North Lake Correctional Facility (Baldwin, MI)","Northeast Ohio Correctional Center (Youngstown, OH)","Northern Regional Jail (Moundsville, WV)","Northwest Regional Corrections Center (Crookston, MN)","Northwest State Correctional Center (Swanton, VT)","Oldham County Detention Center (La Grange, KY)","Orange County Jail (Florida) (Orlando, FL)","Orange County Jail (New York) (Goshen, NY)","Otay Mesa Detention Center (San Diego, CA)","Otero County Processing Center (Chaparral, NM)","Ozark County Sheriff's Office (Gainesville, MO)","Pennington County Jail (South Dakota) (Rapid City, SD)","Phelps County Jail (Missouri) (Rolla, MO)","Phelps County Jail (Nebraska) (Holdrege, NE)","Pickens County Detention Center (Carrollton, AL)","Pike County Jail (Lords Valley, PA)","Pine Prairie ICE Processing Center (Pine Prairie, LA)","Pinellas County Jail (Clearwater, FL)","Plymouth County Correctional Facility (Plymouth, MA)","Polk County Jail (Des Moines, IA)","Pottawattamie County Jail (Council Bluffs, IA)","Prairieland Detention Center (Alvarado, TX)","Farmville Detention Center (Farmville, VA)","Putnam County Sheriff (Cookeville, TN)","Richwood Correctional Center (Monroe, LA)","Rio Grande Detention Center (Laredo, TX)","Port Isabel Detention Center (Los Fresnos, TX)","River Correctional Center (Ferriday, LA)","Riverside Regional Jail (Hopewell, VA)","Roanoke City Jail (Roanoke, VA)","Robert A. Deyton Detention Center (Lovejoy, GA)","Rockingham County Jail (Harrisonburg, VA)","Saipan Department of Corrections (Susupe) (Saipan, MP)","San Diego District Staging (San Diego, CA)","San Juan Staging (Guaynabo, PR)","San Luis Regional Detention Center (San Luis, AZ)","Sarpy County Jail (Papillion, NE)","Sauk County Sheriff (Baraboo, WI)","Sebastian County Detention Center (Fort Smith, AR)","Seneca County Jail (Tiffin, OH)","Sherburne County Jail (Elk River, MN)","Sioux County Jail (Orange City, IA)","South Central Regional Jail (Charleston, WV)","South Louisiana ICE Processing Center (Basile, LA)","South Texas ICE Processing Center (Pearsall, TX)","Southern Regional (Beaver, WV)","Southwestern Regional Jail (Holden, WV)","St. Clair County Jail (Port Huron, MI)","Ste. Genevieve County Sheriff/Jail (Ste. Genevieve, MO)","Stewart Detention Center (Lumpkin, GA)","Strafford County Corrections (Dover, NH)","Sweetwater County Jail (Rock Springs, WY)","T. Don Hutto Detention Center (Taylor, TX)","Northwest ICE Processing Center (Tacoma, WA)","Tooele County Jail (Tooele, UT)","Torrance County Detention Facility (Estancia, NM)","Dilley Immigration Processing Center (Dilley, TX)","Tulsa County Jail (David L. Moss Justice Center) (Tulsa, OK)","Turner Guilford Knight (TGK) Jail (Miami, FL)","Two Bridges Regional Jail (Wiscasset, ME)","Uinta County Jail (Evanston, WY)","Val Verde Correctional Facility (Del Rio, TX)","Victoria County Jail (Victoria, TX)","Walton County Jail (Defuniak Springs, FL)","Ward County Jail (Minot, ND)","Washington County Detention Center (Fayetteville, AR)","Washington County Jail (Purgatory Correctional Facility) (Hurricane, UT)","Washoe County Jail (Reno, NV)","Waukesha County Jail (Waukesha, WI)","Webb County Detention Center (CCA) (Laredo, TX)","Weber County Jail (Ogden, UT)","Western Regional Jail And Correctional Facility (Barboursville, WV)","Western Tennessee Detention Facility (Mason, TN)","Winn Correctional Center (Winnfield, LA)","Woodbury County Jail (Sioux City, IA)","Wyatt Detention Center (Central Falls, RI)"],{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addPolylines","args":[[[[{"lng":[-94.56132853088342,-94.66617151022488,-95.28215059260992,-96.19360808176326,-96.60684452412791,-97.68416163456166,-97.82935744622854,-96.99379808996164,-96.57336664133193,-95.94845234120059,-97.18735595806723,-96.9365781921526,-96.59244134330669,-96.38714052821737,-95.75114983165959,-95.41827064588482],"lat":[34.65171459762888,34.66174534613668,34.39126456947353,34.16562631127007,34.22833258586363,34.20214827114327,34.24733541442257,34.39631425800625,33.59972935470986,33.34058719230062,32.74959271142657,32.36614875506969,32.43477622043866,32.70186918798836,33.25385661861595,33.48266618497669]}]]],null,"ADP Centroid",{"interactive":true,"className":"","stroke":true,"color":"#222","weight":2,"opacity":0.5,"fill":false,"fillColor":"#222","fillOpacity":0.2,"dashArray":"4,4","smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addCircleMarkers","args":[[34.65171459762888,34.66174534613668,34.39126456947353,34.16562631127007,34.22833258586363,34.20214827114327,34.24733541442257,34.39631425800625,33.59972935470986,33.34058719230062,32.74959271142657,32.36614875506969,32.43477622043866,32.70186918798836,33.25385661861595,33.48266618497669],[-94.56132853088342,-94.66617151022488,-95.28215059260992,-96.19360808176326,-96.60684452412791,-97.68416163456166,-97.82935744622854,-96.99379808996164,-96.57336664133193,-95.94845234120059,-97.18735595806723,-96.9365781921526,-96.59244134330669,-96.38714052821737,-95.75114983165959,-95.41827064588482],5,null,"ADP Centroid",{"interactive":true,"className":"","stroke":true,"color":"#222","weight":1.5,"opacity":0.5,"fill":true,"fillColor":"#fff","fillOpacity":0.9},null,null,["<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY10 weighted centroid<\/b><br>\n     Total ADP: 23,841<br>\n     Facilities: 163<br>\n     Lat: 34.652, Lon: -94.561<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY11 weighted centroid<\/b><br>\n     Total ADP: 27,067<br>\n     Facilities: 176<br>\n     Lat: 34.662, Lon: -94.666<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY12 weighted centroid<\/b><br>\n     Total ADP: 29,175<br>\n     Facilities: 178<br>\n     Lat: 34.391, Lon: -95.282<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY13 weighted centroid<\/b><br>\n     Total ADP: 29,421<br>\n     Facilities: 180<br>\n     Lat: 34.166, Lon: -96.194<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY14 weighted centroid<\/b><br>\n     Total ADP: 30,440<br>\n     Facilities: 181<br>\n     Lat: 34.228, Lon: -96.607<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY15 weighted centroid<\/b><br>\n     Total ADP: 26,113<br>\n     Facilities: 166<br>\n     Lat: 34.202, Lon: -97.684<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY16 weighted centroid<\/b><br>\n     Total ADP: 30,903<br>\n     Facilities: 164<br>\n     Lat: 34.247, Lon: -97.829<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY17 weighted centroid<\/b><br>\n     Total ADP: 35,922<br>\n     Facilities: 173<br>\n     Lat: 34.396, Lon: -96.994<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY19 weighted centroid<\/b><br>\n     Total ADP: 49,142<br>\n     Facilities: 211<br>\n     Lat: 33.600, Lon: -96.573<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY20 weighted centroid<\/b><br>\n     Total ADP: 32,979<br>\n     Facilities: 169<br>\n     Lat: 33.341, Lon: -95.948<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY21 weighted centroid<\/b><br>\n     Total ADP: 18,292<br>\n     Facilities: 133<br>\n     Lat: 32.750, Lon: -97.187<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY22 weighted centroid<\/b><br>\n     Total ADP: 21,344<br>\n     Facilities: 128<br>\n     Lat: 32.366, Lon: -96.937<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY23 weighted centroid<\/b><br>\n     Total ADP: 28,148<br>\n     Facilities: 114<br>\n     Lat: 32.435, Lon: -96.592<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY24 weighted centroid<\/b><br>\n     Total ADP: 36,277<br>\n     Facilities: 109<br>\n     Lat: 32.702, Lon: -96.387<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY25 weighted centroid<\/b><br>\n     Total ADP: 47,549<br>\n     Facilities: 189<br>\n     Lat: 33.254, Lon: -95.751<\/div>","<div style=\"font-family:sans-serif; font-size:12px;\">\n     <b>FY26 weighted centroid<\/b><br>\n     Total ADP: 66,813<br>\n     Facilities: 225<br>\n     Lat: 33.483, Lon: -95.418<\/div>"],null,["FY10","FY11","FY12","FY13","FY14","FY15","FY16","FY17","FY19","FY20","FY21","FY22","FY23","FY24","FY25","FY26"],{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addLegend","args":[{"colors":["#4daf4a","#a65628","#f781bf","#984ea3","#ff7f00","#377eb8","#543005","#66c2a5","#e41a1c","#e6ab02","#1b9e77"],"labels":["Dedicated Migrant Detention Center","Family Detention Center","Federal Prison","ICE Migrant Detention Center","ICE Short-Term Migrant Detention Center","Jail/Prison","Juvenile Detention Center","Military Detention Center","Private Migrant Detention Center","State Migrant Detention Center","Other"],"na_color":null,"na_label":"NA","opacity":0.8,"position":"bottomright","type":"unknown","title":"Facility Type","extra":null,"layerId":null,"className":"info legend","group":null}]},{"method":"addLayersControl","args":[[],["Open","Closed","ADP Centroid"],{"collapsed":false,"autoZIndex":true,"position":"topright"}]},{"method":"addSearchFeatures","args":[["Open","Closed"],{"openPopup":true,"propertyName":"label","moveToLocation":true,"zoom":9,"container":"","minLength":1,"initial":false,"casesensitive":false,"autoType":true,"delayType":400,"tooltipLimit":-1,"tipAutoSubmit":true,"firstTipSubmit":false,"autoResize":true,"collapsed":true,"autoCollapse":false,"autoCollapseTime":1200,"textErr":"Location Not Found","textCancel":"Cancel","textPlaceholder":"Search...","position":"topleft","hideMarkerOnCollapse":true,"marker":{"animate":true,"circle":{"radius":10,"weight":3,"color":"#e03","stroke":true,"fill":false}}}]}],"limits":{"lat":[13.474307,61.2185041],"lng":[-157.9279267,145.7467259]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<section id="facility-types" class="level3">
<h3 class="anchored" data-anchor-id="facility-types">Facility types</h3>
<table class="caption-top table">
<thead>
<tr class="header">
<th>Color</th>
<th>Type</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Brown</td>
<td>Family Detention Center</td>
</tr>
<tr class="even">
<td>Green</td>
<td>Dedicated Migrant Detention Center (DIGSA)</td>
</tr>
<tr class="odd">
<td>Pink</td>
<td>Federal Prison (BOP)</td>
</tr>
<tr class="even">
<td>Blue</td>
<td>Jail (IGSA / USMS IGA)</td>
</tr>
<tr class="odd">
<td>Purple</td>
<td>ICE Migrant Detention Center (SPC)</td>
</tr>
<tr class="even">
<td>Orange</td>
<td>ICE Short-Term Migrant Detention Center (Staging)</td>
</tr>
<tr class="odd">
<td>Dark Brown</td>
<td>Juvenile Detention Center</td>
</tr>
<tr class="even">
<td>Teal (light)</td>
<td>Military Detention Center</td>
</tr>
<tr class="odd">
<td>Red</td>
<td>Private Migrant Detention Center (CDF)</td>
</tr>
<tr class="even">
<td>Gold</td>
<td>State Migrant Detention Center</td>
</tr>
<tr class="odd">
<td>Teal (dark)</td>
<td>Other</td>
</tr>
</tbody>
</table>
<p>Please note that multipe facilities not listed as “private” are subcontracted by these government entities to private prison corporations.</p>
</section>
<section id="data-sources" class="level3">
<h3 class="anchored" data-anchor-id="data-sources">Data sources</h3>
<ul>
<li><strong>FY2019–FY2026</strong>: ICE annual detention statistics spreadsheets, published by the <a href="https://www.ice.gov/detain/detention-management">ICE Detention Management Division</a>.</li>
<li><strong>FY2010–FY2017</strong>: ICE Detention Management Compliance Program (DMCP) authorized facility listings (<a href="https://www.ice.gov/doclib/foia/dfs/2015IceDetentionFacilityListing.xlsx%22">December 2015 Excel file</a> and <a href="https://www.prisonlegalnews.org/media/publications/ICE_DMCP_Facility_List_ERO_Custody_Management_Division_2017.pdf">July 2017 PDF</a>). The older file was released under the Freedom of Information Act. The 2017 file was obtained in a lawsuit against the government.</li>
<li>Data for FY2018 was not immediately available.</li>
<li><strong>Geocoding</strong>: Google Maps Geocoding API.</li>
</ul>
</section>
<section id="data-wrangling-process-and-ai-usage" class="level3">
<h3 class="anchored" data-anchor-id="data-wrangling-process-and-ai-usage">Data wrangling process and AI usage</h3>
<p>Building this multi-year map was a multi-step process that I began with a single pass of scraping the FY2026 dataset, cleaning variable names, processing facilities, and geocoding locations. I rewrote and functionalized that code to loop through the other fiscal yaers with their own individual spreadsheets. Neither the list of facilities nor the variable names were consistent across years, so keeping track of the changes in each of them was a significant part of the task. This was helped along by creating a presence matrix for both variables and facilities.</p>
<p>It was around this point that I joined Posit’s beta test for integrating an AI assistant into RStudio. The Posit Assistant is essential an integration for Claude models as agents with a Posit-specific set of skills into the RStudio IDE. My approach to using the assistant focused on iteratively improving code while maintaining documentation of the wrangling and analysis in Quarto Markdown files. The Posit skills seem particularly well-adapted to creating correspondences among different source encodings of the same entities, a process that can be very manually time-consuming and that is at the heart of stitching together the multiple datasets used here.</p>
<p>Once the number of datasheets I was using grew past two, I used the agent to assemble a canonical list of sites. The 2015 and 2017 datasheets covered multiple years and also introduced the DHS’s own unique identifiers (though these are not always in 1-to-1 correspondence with facilities). The 390 facilities shown here are the result of merging the data by facility.</p>
<p>My initial purpose for this data wrangling was to write a comprehensive update for the Wikipedia page, <a href="https://en.wikipedia.org/wiki/List_of_immigrant_detention_sites_in_the_United_States">List of Immigration Detention Sites in the United States</a>. To effectively contribute there, one has to keep track of which sites have Wikipedia links and under what titles those links appear. This is a further name-matching effort</p>
<p>I was also using this process as a chance to test drive the use of <code>{targets}</code> and <code>renv</code> as tools in a new R project. I plan to make the code as a whole shareable in the future.</p>


</section>

 ]]></description>
  <guid>https://carwilb.github.io/posts/ice-detention-map/</guid>
  <pubDate>Tue, 31 Mar 2026 05:00:00 GMT</pubDate>
  <media:content url="https://carwilb.github.io/posts/ice-detention-map/facilities_map_screenshot.png" medium="image" type="image/png" height="85" width="144"/>
</item>
<item>
  <title>Global Language Diversity on Wikipedia</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/posts/wiki-language-diversity.html</link>
  <description><![CDATA[ 





<section id="languages-and-wikipedia-articles" class="level1 page-columns page-full">
<h1>Languages and Wikipedia Articles</h1>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/posts/data:image/png;base64,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" class="img-fluid figure-img"></p>
<figcaption>The largest Wikipedia editions by number of articles</figcaption>
</figure>
</div>
<div class="column-page-inset-right">
<div class="cell">
<div class="cell-output-display">
<table class="table table-hover table-condensed caption-top table-sm table-striped small">
<colgroup>
<col style="width: 25%">
<col style="width: 25%">
<col style="width: 25%">
<col style="width: 25%">
</colgroup>
<thead>
<tr class="header">
<th data-quarto-table-cell-role="th" style="text-align: left; font-weight: bold; color: black !important; background-color: white !important;">Language</th>
<th data-quarto-table-cell-role="th" style="text-align: left; font-weight: bold; color: black !important; background-color: white !important;">Language Family (Branch)</th>
<th data-quarto-table-cell-role="th" style="text-align: right; font-weight: bold; color: black !important; background-color: white !important;">Total Speakers<br>
(Native + L2)</th>
<th data-quarto-table-cell-role="th" style="text-align: right; font-weight: bold; color: black !important; background-color: white !important;">Wikipedia Articles</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left; width: 50%;">1. English<br>
<em>English</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Germanic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(5, 112, 176, 255) !important;">1.5B</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 215, 0, 255) !important;">7,147,439</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">2. Mandarin Chinese<br>
普通话</td>
<td style="text-align: left; width: 30%;">Sino-Tibetan (Sinitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(28, 117, 179, 255) !important;">1.1B</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,526,696</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">3. Hindi<br>
मानक हिन्दी</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(51, 126, 184, 255) !important;">608.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">168,091</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">4. Spanish<br>
<em>español</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Romance)</td>
<td style="text-align: right; width: 10%; background-color: rgba(54, 127, 184, 255) !important;">559.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">2,099,169</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">5. Standard Arabic<br>
العربية</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(68, 135, 189, 255) !important;">332.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">6. French<br>
<em>français</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Romance)</td>
<td style="text-align: right; width: 10%; background-color: rgba(70, 136, 189, 255) !important;">311.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">2,743,303</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">7. Bengali<br>
বাংলা</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(73, 138, 190, 255) !important;">278.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">184,493</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">8. Portuguese<br>
<em>Português</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Romance)</td>
<td style="text-align: right; width: 10%; background-color: rgba(74, 138, 191, 255) !important;">263.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,166,182</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">9. Russian<br>
русский язык‎</td>
<td style="text-align: left; width: 30%;">Indo-European (Slavic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(75, 139, 191, 255) !important;">255.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">2,089,532</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">10. Urdu<br>
اُردُو</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(77, 140, 192, 255) !important;">237.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">240,482</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">11. Indonesian<br>
<em>Bahasa Indonesia</em></td>
<td style="text-align: left; width: 30%;">Austronesian (Malayo-Polynesian)</td>
<td style="text-align: right; width: 10%; background-color: rgba(81, 143, 193, 255) !important;">199.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">765,481</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">12. Standard German<br>
<em>Deutsch</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Germanic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(90, 149, 197, 255) !important;">133.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">3,102,766</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">13. Japanese<br>
日本語‎</td>
<td style="text-align: left; width: 30%;">Japonic</td>
<td style="text-align: right; width: 10%; background-color: rgba(92, 150, 197, 255) !important;">123.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,492,869</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">14. Nigerian Pidgin<br>
<em>Naijá</em></td>
<td style="text-align: left; width: 30%;">English-Based Creole</td>
<td style="text-align: right; width: 10%; background-color: rgba(92, 151, 197, 255) !important;">120.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">1,541</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">15. Egyptian Arabic<br>
مصري</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(96, 153, 199, 255) !important;">103.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,630,829</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">16. Marathi<br>
मराठी</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(96, 154, 199, 255) !important;">99.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">101,453</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">17. Telugu<br>
తెలుగు</td>
<td style="text-align: left; width: 30%;">Dravidian</td>
<td style="text-align: right; width: 10%; background-color: rgba(97, 154, 199, 255) !important;">95.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">121,046</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">18. Turkish<br>
<em>Türkçe</em></td>
<td style="text-align: left; width: 30%;">Turkic</td>
<td style="text-align: right; width: 10%; background-color: rgba(99, 155, 200, 255) !important;">90.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">670,498</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">19. Hausa<br>
<em>Hausa</em></td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Chadic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(99, 156, 200, 255) !important;">88.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">92,049</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">20. Tamil<br>
தமிழ்</td>
<td style="text-align: left; width: 30%;">Dravidian</td>
<td style="text-align: right; width: 10%; background-color: rgba(99, 156, 200, 255) !important;">86.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">181,380</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">21. Yue Chinese<br>
粵語</td>
<td style="text-align: left; width: 30%;">Sino-Tibetan (Sinitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(99, 156, 200, 255) !important;">86.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">149,413</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">22. Swahili<br>
<em>Kiswahili</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(99, 156, 200, 255) !important;">86.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">107,718</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">23. Vietnamese<br>
Tiếng Việt</td>
<td style="text-align: left; width: 30%;">Austroasiatic</td>
<td style="text-align: right; width: 10%; background-color: rgba(99, 156, 200, 255) !important;">86.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,299,008</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">24. Wu Chinese<br>
江南话</td>
<td style="text-align: left; width: 30%;">Sino-Tibetan (Sinitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(100, 157, 201, 255) !important;">83.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">47,962</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">25. Tagalog<br>
<em>Tagalog</em></td>
<td style="text-align: left; width: 30%;">Austronesian (Malayo-Polynesian)</td>
<td style="text-align: right; width: 10%; background-color: rgba(100, 157, 201, 255) !important;">83.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">48,763</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">26. Western Punjabi<br>
پنجابی</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(100, 157, 201, 255) !important;">82.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">75,212</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">27. Korean<br>
한국말</td>
<td style="text-align: left; width: 30%;">Koreanic</td>
<td style="text-align: right; width: 10%; background-color: rgba(101, 157, 201, 255) !important;">81.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">739,919</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">28. Iranian Persian<br>
فارسی</td>
<td style="text-align: left; width: 30%;">Indo-European (Iranic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(101, 158, 201, 255) !important;">78.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,069,623</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">29. Javanese<br>
<em>Jawa</em></td>
<td style="text-align: left; width: 30%;">Austronesian (Malayo-Polynesian)</td>
<td style="text-align: right; width: 10%; background-color: rgba(104, 160, 202, 255) !important;">68.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">75,076</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">30. Italian<br>
<em>Italiano</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Romance)</td>
<td style="text-align: right; width: 10%; background-color: rgba(105, 160, 202, 255) !important;">66.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,959,658</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">31. Gujarati<br>
ગુજરાત</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(106, 161, 203, 255) !important;">62.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">30,821</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">32. Thai<br>
ภาษาไทย</td>
<td style="text-align: left; width: 30%;">Tai-Kadai</td>
<td style="text-align: right; width: 10%; background-color: rgba(107, 162, 203, 255) !important;">61.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">180,341</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">33. Amharic<br>
ኣማርኛ</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(107, 162, 203, 255) !important;">59.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">15,588</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">34. Kannada<br>
ಕನ್ನಡ</td>
<td style="text-align: left; width: 30%;">Dravidian</td>
<td style="text-align: right; width: 10%; background-color: rgba(108, 162, 203, 255) !important;">58.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">34,811</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">35. Levantine Arabic<br>
شامي</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(109, 164, 204, 255) !important;">53.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">36. Bhojpuri<br>
भोजपुरी</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(110, 164, 204, 255) !important;">52.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">37. Min Nan Chinese<br>
闽南语</td>
<td style="text-align: left; width: 30%;">Sino-Tibetan (Sinitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(111, 165, 205, 255) !important;">50.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">433,956</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">38. Sudanese Arabic<br>
سوداني</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(111, 165, 205, 255) !important;">48.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">39. Jinyu Chinese<br>
晋语</td>
<td style="text-align: left; width: 30%;">Sino-Tibetan (Sinitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(112, 166, 205, 255) !important;">48.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">40. Yoruba<br>
<em>Èdè Yorùbá</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Yoruboid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(112, 166, 205, 255) !important;">47.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">36,665</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">41. Hakka Chinese<br>
客家話‎</td>
<td style="text-align: left; width: 30%;">Sino-Tibetan (Sinitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(113, 167, 206, 255) !important;">43.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">10,396</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">42. Burmese<br>
မြန်မာစကား</td>
<td style="text-align: left; width: 30%;">Sino-Tibetan (Burmo-Qiangic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(114, 167, 206, 255) !important;">43.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">110,237</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">43. Polish<br>
język polski‎</td>
<td style="text-align: left; width: 30%;">Indo-European (Slavic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(114, 168, 206, 255) !important;">41.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,687,118</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">44. Algerian Arabic<br>
العامية</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(115, 168, 206, 255) !important;">41.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">45. Lingala<br>
<em>Lingala</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(115, 168, 207, 255) !important;">40.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">4,919</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">46. Odia<br>
ଓଡ଼ିଆ</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(115, 169, 207, 255) !important;">39.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">20,577</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">47. Moroccan Arabic<br>
الدارجة</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(116, 169, 207, 255) !important;">39.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">11,217</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">48. Ukrainian<br>
українська мова‎</td>
<td style="text-align: left; width: 30%;">Indo-European (Slavic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(116, 169, 207, 255) !important;">38.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,411,103</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">49. Xiang Chinese<br>
湘语</td>
<td style="text-align: left; width: 30%;">Sino-Tibetan (Sinitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(117, 169, 207, 255) !important;">38.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">50. Malayalam<br>
മലയാളം</td>
<td style="text-align: left; width: 30%;">Dravidian</td>
<td style="text-align: right; width: 10%; background-color: rgba(117, 170, 207, 255) !important;">37.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">87,787</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">51. Eastern Punjabi<br>
ਪੰਜਾਬੀ ਭਾਸ਼ਾ‎</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(118, 170, 208, 255) !important;">37.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">59,478</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">52. Sindhi<br>
سنڌي</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(123, 173, 209, 255) !important;">32.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">20,857</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">53. Sunda<br>
<em>Basa Sunda</em></td>
<td style="text-align: left; width: 30%;">Austronesian (Malayo-Polynesian)</td>
<td style="text-align: right; width: 10%; background-color: rgba(124, 173, 209, 255) !important;">32.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">62,358</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">54. Nepali<br>
नेपाली</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(124, 173, 210, 255) !important;">32.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">29,448</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">55. Dari<br>
دری</td>
<td style="text-align: left; width: 30%;">Indo-European (Iranic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(125, 174, 210, 255) !important;">31.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,069,623</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">56. Igbo<br>
<em>Asụsụ Igbo</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Igboid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(125, 174, 210, 255) !important;">30.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">44,777</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">57. Northern Uzbek<br>
ўзбек тили</td>
<td style="text-align: left; width: 30%;">Turkic</td>
<td style="text-align: right; width: 10%; background-color: rgba(128, 175, 211, 255) !important;">29.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">333,716</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">58. Zulu<br>
<em>isiZulu</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 177, 211, 255) !important;">27.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">12,086</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">59. Saraiki<br>
سرائیکی</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(133, 178, 212, 255) !important;">25.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">24,459</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">60. Dutch<br>
<em>Nederlands</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Germanic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(134, 179, 213, 255) !important;">25.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">2,213,648</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">61. Romanian<br>
<em>Limba română</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Romance)</td>
<td style="text-align: right; width: 10%; background-color: rgba(134, 179, 213, 255) !important;">25.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">541,311</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">62. Sa'idi Arabic<br>
صعيدى</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(134, 179, 213, 255) !important;">25.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">63. West Central Oromo<br>
<em>Afaan Oromoo</em></td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Cushitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(134, 179, 213, 255) !important;">24.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">1,966</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">64. Northern Pashto<br>
پښتو</td>
<td style="text-align: left; width: 30%;">Indo-European (Iranic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(135, 179, 213, 255) !important;">24.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">21,172</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">65. Somali<br>
<em>Af-Soomaali</em></td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Cushitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(136, 180, 213, 255) !important;">23.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">10,428</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">66. Wolof<br>
<em>Wolof làkk</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (North-Central Atlantic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(138, 181, 214, 255) !important;">22.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">1,747</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">67. Gan Chinese<br>
江西話</td>
<td style="text-align: left; width: 30%;">Sino-Tibetan (Sinitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(138, 181, 214, 255) !important;">22.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">6,816</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">68. Maithili<br>
मैथिली</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(139, 182, 214, 255) !important;">22.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">14,250</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">69. Magahi<br>
मगही</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(141, 183, 215, 255) !important;">21.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">70. Xhosa<br>
<em>isiXhosa</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(145, 185, 216, 255) !important;">19.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">2,325</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">71. Malay<br>
<em>Bahasa Melayu</em></td>
<td style="text-align: left; width: 30%;">Austronesian (Malayo-Polynesian)</td>
<td style="text-align: right; width: 10%; background-color: rgba(145, 185, 216, 255) !important;">19.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">437,023</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">72. Najdi Arabic<br>
نجدي</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(146, 186, 217, 255) !important;">18.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">73. Southern Pashto<br>
پښتو</td>
<td style="text-align: left; width: 30%;">Indo-European (Iranic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(146, 186, 217, 255) !important;">18.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">21,172</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">74. Afrikaans<br>
<em>Afrikaans</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Germanic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(147, 186, 217, 255) !important;">18.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">128,245</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">75. Sinhala<br>
සිංහල</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(147, 187, 217, 255) !important;">17.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">25,049</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">76. Khmer<br>
ខ្មែរ‎</td>
<td style="text-align: left; width: 30%;">Austroasiatic</td>
<td style="text-align: right; width: 10%; background-color: rgba(148, 187, 217, 255) !important;">17.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">11,955</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">77. Mesopotamian Arabic<br>
اللهجة العراقية</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(148, 187, 217, 255) !important;">17.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">78. Nigerian Fulfulde<br>
<em>Fulfulde</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (North-Central Atlantic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(150, 188, 218, 255) !important;">16.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">15,307</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">79. Kazakh<br>
казақ тілі</td>
<td style="text-align: left; width: 30%;">Turkic</td>
<td style="text-align: right; width: 10%; background-color: rgba(150, 188, 218, 255) !important;">16.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">242,624</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">80. Northern Kurdish<br>
<em>Kurmancî</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Iranic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(151, 188, 218, 255) !important;">16.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">91,074</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">81. Chhattisgarhi<br>
छत्तीसगढ़ी</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(151, 189, 218, 255) !important;">16.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">82. Cebuano<br>
<em>Binisaya</em></td>
<td style="text-align: left; width: 30%;">Austronesian (Malayo-Polynesian)</td>
<td style="text-align: right; width: 10%; background-color: rgba(152, 189, 219, 255) !important;">16.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 215, 0, 255) !important;">6,115,591</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">83. Assamese<br>
অসমীয়া</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(153, 190, 219, 255) !important;">15.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">22,237</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">84. Northeastern Thai<br>
อีสาน‎</td>
<td style="text-align: left; width: 30%;">Tai-Kadai</td>
<td style="text-align: right; width: 10%; background-color: rgba(154, 191, 219, 255) !important;">15.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">180,341</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">85. Kinyarwanda<br>
<em>Ikinyarwanda</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(155, 191, 220, 255) !important;">14.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">9,324</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">86. Bavarian<br>
<em>Boarisch</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Germanic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(155, 191, 220, 255) !important;">14.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">27,210</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">87. Chichewa<br>
<em>Chicheŵa</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(156, 192, 220, 255) !important;">14.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">1,101</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">88. Bamanankan<br>
<em>Bamanankan</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Mande)</td>
<td style="text-align: right; width: 10%; background-color: rgba(156, 192, 220, 255) !important;">14.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">864</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">89. Setswana<br>
<em>Setswana</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(158, 193, 221, 255) !important;">13.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">3,899</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">90. Northern Sotho<br>
<em>Sesotho sa Leboa</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(158, 193, 221, 255) !important;">13.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">8,909</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">91. Southern Sotho<br>
<em>Sesotho</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(158, 193, 221, 255) !important;">13.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">92. Swedish<br>
<em>Svenska</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Germanic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(159, 194, 221, 255) !important;">13.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">2,621,816</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">93. Haitian Creole<br>
<em>Kreyòl Ayisyen</em></td>
<td style="text-align: left; width: 30%;">French-Based Creole</td>
<td style="text-align: right; width: 10%; background-color: rgba(159, 194, 221, 255) !important;">13.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">71,734</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">94. Greek<br>
Νέα Ελληνικά</td>
<td style="text-align: left; width: 30%;">Indo-European (Hellenic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(159, 194, 221, 255) !important;">13.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">266,222</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">95. Rundi<br>
<em>Ikirundi</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(159, 194, 221, 255) !important;">13.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">703</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">96. Chittagonian<br>
চাঁটগাঁইয়া বুলি</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(160, 194, 221, 255) !important;">13.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">97. Jula<br>
<em>Julakan</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Mande)</td>
<td style="text-align: right; width: 10%; background-color: rgba(160, 194, 222, 255) !important;">12.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">98. Deccan<br>
دکھنی</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(160, 194, 222, 255) !important;">12.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">99. Bajjika<br>
बज्जिका</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(161, 194, 222, 255) !important;">12.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">100. Sanaani Arabic<br>
يمني</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(161, 195, 222, 255) !important;">12.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">101. Hungarian<br>
<em>Magyar</em></td>
<td style="text-align: left; width: 30%;">Uralic</td>
<td style="text-align: right; width: 10%; background-color: rgba(162, 195, 222, 255) !important;">12.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">566,864</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">102. Kituba<br>
<em>Kikongo ya Leta</em></td>
<td style="text-align: left; width: 30%;">Kongo-Based Creole</td>
<td style="text-align: right; width: 10%; background-color: rgba(162, 195, 222, 255) !important;">12.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">103. Czech<br>
<em>Čeština</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Slavic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(162, 195, 222, 255) !important;">12.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">587,645</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">104. Ta'izzi-Adeni Arabic<br>
لهجة تعزية عدنية</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(162, 195, 222, 255) !important;">12.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">105. Sadri<br>
सादरी</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(163, 196, 222, 255) !important;">12.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">106. Tunisian Arabic<br>
تونسي</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(163, 196, 222, 255) !important;">12.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">107. Cameroon Pidgin<br>
<em>Pidgin</em></td>
<td style="text-align: left; width: 30%;">English-Based Creole</td>
<td style="text-align: right; width: 10%; background-color: rgba(163, 196, 222, 255) !important;">12.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">108. Moore<br>
<em>Moore</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (North Volta-Congo)</td>
<td style="text-align: right; width: 10%; background-color: rgba(163, 196, 222, 255) !important;">11.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">1,314</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">109. South Azerbaijani<br>
آذربایجانجا</td>
<td style="text-align: left; width: 30%;">Turkic</td>
<td style="text-align: right; width: 10%; background-color: rgba(164, 196, 223, 255) !important;">11.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">244,599</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">110. Min Bei Chinese<br>
閩北語</td>
<td style="text-align: left; width: 30%;">Sino-Tibetan (Sinitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(164, 196, 223, 255) !important;">11.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">111. Sylheti<br>
ꠍꠤꠟꠐꠤ</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(164, 197, 223, 255) !important;">11.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">1,235</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">112. Ganda<br>
<em>Luganda</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(166, 198, 223, 255) !important;">11.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">4,531</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">113. Congo Swahili<br>
<em>Kiswahili</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(166, 198, 223, 255) !important;">11.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">114. Eastern Oromo<br>
<em>Afaan Oromoo</em></td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Cushitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(166, 198, 223, 255) !important;">11.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">1,966</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">115. Min Dong Chinese<br>
闽东话</td>
<td style="text-align: left; width: 30%;">Sino-Tibetan (Sinitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(167, 198, 224, 255) !important;">10.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">16,707</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">116. Gulf Arabic<br>
خليجي</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(167, 198, 224, 255) !important;">10.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">117. Shona<br>
<em>ChiShona</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(167, 198, 224, 255) !important;">10.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">11,517</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">118. Hijazi Arabic<br>
حجازي</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(167, 198, 224, 255) !important;">10.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">119. Ibibio<br>
<em>Ibibio</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Delta-Cross)</td>
<td style="text-align: right; width: 10%; background-color: rgba(167, 198, 224, 255) !important;">10.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">120. Rangpuri<br>
রংপুরী</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(167, 198, 224, 255) !important;">10.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">121. Uyghur<br>
ئۇيغۇر تىلى</td>
<td style="text-align: left; width: 30%;">Turkic</td>
<td style="text-align: right; width: 10%; background-color: rgba(168, 199, 224, 255) !important;">10.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">9,699</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">122. North Mesopotamian Arabic<br>
مصلاوي</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(168, 199, 224, 255) !important;">10.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">123. North Azerbaijani<br>
<em>Azərbaycan dili</em></td>
<td style="text-align: left; width: 30%;">Turkic</td>
<td style="text-align: right; width: 10%; background-color: rgba(169, 199, 224, 255) !important;">10.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">212,338</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">124. Serbian<br>
српски</td>
<td style="text-align: left; width: 30%;">Indo-European (Slavic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(169, 200, 225, 255) !important;">10.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">716,972</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">125. Tsonga<br>
<em>Xitsonga</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(170, 200, 225, 255) !important;">10.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">1,084</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">126. Tajik<br>
тоҷикӣ</td>
<td style="text-align: left; width: 30%;">Indo-European (Iranic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(170, 200, 225, 255) !important;">10.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">116,838</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">127. Akan<br>
<em>Akan</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Kwa Volta-Congo)</td>
<td style="text-align: right; width: 10%; background-color: rgba(170, 200, 225, 255) !important;">9.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">128. Tigrigna<br>
ትግርኛ</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(170, 200, 225, 255) !important;">9.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">351</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">129. Haryanvi<br>
हरियाणवी</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(171, 201, 225, 255) !important;">9.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">130. Borana-Arsi-Guji Oromo<br>
<em>Afaan Oromoo</em></td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Cushitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(171, 201, 225, 255) !important;">9.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">1,966</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">131. Hebrew<br>
עברית</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(172, 201, 226, 255) !important;">9.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">391,816</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">132. Catalan<br>
<em>Català</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Romance)</td>
<td style="text-align: right; width: 10%; background-color: rgba(173, 202, 226, 255) !important;">9.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">789,847</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">133. Yerwa Kanuri<br>
<em>Yerwa Kanuri</em></td>
<td style="text-align: left; width: 30%;">Nilo-Saharan (Saharan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(173, 202, 226, 255) !important;">9.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">134. Gikuyu<br>
<em>Gĩgĩkũyũ</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(177, 205, 227, 255) !important;">8.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">2,188</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">135. Sukuma<br>
<em>Kisukuma</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(178, 205, 228, 255) !important;">8.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">136. Koongo<br>
<em>Kikongo</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(178, 205, 228, 255) !important;">8.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">1,940</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">137. Bulgarian<br>
български език‎</td>
<td style="text-align: left; width: 30%;">Indo-European (Slavic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(179, 206, 228, 255) !important;">7.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">308,320</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">138. Kabyle<br>
ⵜⴰⵇⴱⴰⵢⵍⵉⵜ</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Berber)</td>
<td style="text-align: right; width: 10%; background-color: rgba(179, 206, 228, 255) !important;">7.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">7,049</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">139. Marwari<br>
मारवाड़ी</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(179, 206, 228, 255) !important;">7.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">140. Umbundu<br>
<em>Umbundu</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(179, 206, 228, 255) !important;">7.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">141. Madura<br>
<em>Basa Mathura</em></td>
<td style="text-align: left; width: 30%;">Austronesian (Malayo-Polynesian)</td>
<td style="text-align: right; width: 10%; background-color: rgba(179, 206, 228, 255) !important;">7.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">5,192</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">142. Krio<br>
<em>Krio</em></td>
<td style="text-align: left; width: 30%;">English-Based Creole</td>
<td style="text-align: right; width: 10%; background-color: rgba(179, 206, 228, 255) !important;">7.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">143. Santhali<br>
<em>Har Rar</em></td>
<td style="text-align: left; width: 30%;">Austroasiatic</td>
<td style="text-align: right; width: 10%; background-color: rgba(180, 206, 228, 255) !important;">7.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">14,574</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">144. Merina Malagasy<br>
<em>Malagasy ôfisialy</em></td>
<td style="text-align: left; width: 30%;">Austronesian (Malayo-Polynesian)</td>
<td style="text-align: right; width: 10%; background-color: rgba(181, 207, 229, 255) !important;">7.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">102,252</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">145. Slovak<br>
<em>Slovenčina</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Slavic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(181, 207, 229, 255) !important;">7.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">258,674</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">146. Kashmiri<br>
کٲشُر</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(183, 208, 229, 255) !important;">7.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">9,298</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">147. Luba-Kasai<br>
<em>Ciluba</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(183, 208, 229, 255) !important;">7.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">148. Varhadi-Nagpuri<br>
वरहदी-नागपुरी</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(183, 208, 229, 255) !important;">7.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">149. Indian Sign Language<br>
भारतीय सांकेतिक भाषा</td>
<td style="text-align: left; width: 30%;">Indo-Pakistani-Nepalese Sign</td>
<td style="text-align: right; width: 10%; background-color: rgba(184, 209, 230, 255) !important;">6.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">150. Paraguayan Guaraní<br>
<em>Avañe'ẽ</em></td>
<td style="text-align: left; width: 30%;">Tupian</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 210, 230, 255) !important;">6.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">6,018</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">151. Ilocano<br>
<em>Ilokano</em></td>
<td style="text-align: left; width: 30%;">Austronesian (Malayo-Polynesian)</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 210, 230, 255) !important;">6.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">15,449</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">152. Swiss German<br>
<em>Schwiizerdütsch</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Germanic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 210, 230, 255) !important;">6.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">153. Croatian<br>
<em>Hrvatski</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Slavic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(187, 210, 231, 255) !important;">6.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">229,573</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">154. Central Pashto<br>
پښتو</td>
<td style="text-align: left; width: 30%;">Indo-European (Iranic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(187, 210, 231, 255) !important;">6.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">21,172</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">155. Pulaar<br>
<em>Pulaar</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (North-Central Atlantic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(187, 211, 231, 255) !important;">6.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">15,307</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">156. Hiligaynon<br>
<em>Ilonggo</em></td>
<td style="text-align: left; width: 30%;">Austronesian (Malayo-Polynesian)</td>
<td style="text-align: right; width: 10%; background-color: rgba(187, 211, 231, 255) !important;">6.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">157. Turkmen<br>
<em>Türkmençe</em></td>
<td style="text-align: left; width: 30%;">Turkic</td>
<td style="text-align: right; width: 10%; background-color: rgba(188, 212, 231, 255) !important;">6.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">7,065</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">158. Zarma<br>
<em>Zarma sanni</em></td>
<td style="text-align: left; width: 30%;">Nilo-Saharan (Songhay)</td>
<td style="text-align: right; width: 10%; background-color: rgba(188, 212, 231, 255) !important;">6.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">159. Northern Thai<br>
คำเมือง</td>
<td style="text-align: left; width: 30%;">Tai-Kadai</td>
<td style="text-align: right; width: 10%; background-color: rgba(189, 212, 231, 255) !important;">6.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">180,341</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">160. Kanauji<br>
देहाती</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(189, 212, 231, 255) !important;">6.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">161. Tachelhit<br>
ⵜⴰⵛⵍⵃⵉⵢⵜ</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Berber)</td>
<td style="text-align: right; width: 10%; background-color: rgba(190, 213, 232, 255) !important;">5.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">10,886</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">162. Danish<br>
<em>Dansk</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Germanic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(190, 213, 232, 255) !important;">5.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">313,197</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">163. Adamawa Fulfulde<br>
<em>Fulfulde</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (North-Central Atlantic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(191, 213, 232, 255) !important;">5.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">15,307</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">164. Napoletano<br>
<em>Napulitano</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Romance)</td>
<td style="text-align: right; width: 10%; background-color: rgba(191, 213, 232, 255) !important;">5.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">14,953</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">165. Bundeli<br>
बुन्देली</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(192, 214, 232, 255) !important;">5.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">166. Finnish<br>
<em>Suomi</em></td>
<td style="text-align: left; width: 30%;">Uralic</td>
<td style="text-align: right; width: 10%; background-color: rgba(192, 214, 232, 255) !important;">5.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">614,330</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">167. Libyan Arabic<br>
ليبي</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(192, 214, 232, 255) !important;">5.6 M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">168. Éwé<br>
<em>Èʋegbe</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Kwa Volta-Congo)</td>
<td style="text-align: right; width: 10%; background-color: rgba(192, 214, 233, 255) !important;">5.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">1,272</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">169. Malvi<br>
मालवी</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 215, 233, 255) !important;">5.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">170. Huizhou Chinese<br>
徽州話</td>
<td style="text-align: left; width: 30%;">Sino-Tibetan (Sinitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 215, 233, 255) !important;">5.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">171. Norwegian<br>
<em>Norsk</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Germanic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 215, 233, 255) !important;">5.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">679,197</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">171. Norwegian<br>
<em>Norsk</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Germanic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 215, 233, 255) !important;">5.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">177,443</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">172. Kyrgyz<br>
кыргыз тили</td>
<td style="text-align: left; width: 30%;">Turkic</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 215, 233, 255) !important;">5.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">76,170</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">173. Central Kurdish<br>
زمانی سۆرانی‎</td>
<td style="text-align: left; width: 30%;">Indo-European (Iranic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(194, 215, 233, 255) !important;">5.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">80,088</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">174. Baoulé<br>
<em>Wawle</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Kwa Volta-Congo)</td>
<td style="text-align: right; width: 10%; background-color: rgba(194, 215, 233, 255) !important;">5.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">175. Kamba<br>
<em>Kĩkamba</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(194, 215, 233, 255) !important;">5.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">176. Dholuo<br>
<em>Dholuo</em></td>
<td style="text-align: left; width: 30%;">Nilo-Saharan (Satellites)</td>
<td style="text-align: right; width: 10%; background-color: rgba(194, 215, 233, 255) !important;">5.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">177. Northern Hindko<br>
ہندکو</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(194, 215, 233, 255) !important;">5.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">178. Sango<br>
<em>Sängö</em></td>
<td style="text-align: left; width: 30%;">Ngbandi-Based Creole</td>
<td style="text-align: right; width: 10%; background-color: rgba(194, 215, 233, 255) !important;">5.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">350</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">179. Hassaniyya<br>
حسانية</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(194, 215, 233, 255) !important;">5.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">180. Hadrami Arabic<br>
حضرمي</td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Semitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(195, 216, 234, 255) !important;">5.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(193, 211, 131, 255) !important;">1,302,955</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">181. Lambadi<br>
బంజార</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(195, 216, 234, 255) !important;">5.1M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">182. Sidamo<br>
<em>Sidaamu Afoo</em></td>
<td style="text-align: left; width: 30%;">Afro-Asiatic (Cushitic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(196, 216, 234, 255) !important;">5.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">183. Ghanaian Pidgin English<br>
<em>Pidgin</em></td>
<td style="text-align: left; width: 30%;">English-Based Creole</td>
<td style="text-align: right; width: 10%; background-color: rgba(196, 216, 234, 255) !important;">5.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">4,649</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">184. Betawi<br>
<em>Betawi</em></td>
<td style="text-align: left; width: 30%;">Malay-Based Creole</td>
<td style="text-align: right; width: 10%; background-color: rgba(196, 216, 234, 255) !important;">5.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">3,190</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">185. Liberian Pidgin English<br>
<em>Koloqua</em></td>
<td style="text-align: left; width: 30%;">English-Based Creole</td>
<td style="text-align: right; width: 10%; background-color: rgba(196, 216, 234, 255) !important;">5.0M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">186. Gheg Albanian<br>
<em>Gegnisht</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Albanic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(197, 217, 234, 255) !important;">4.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">105,078</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">187. Minangkabau<br>
<em>Minangkabau</em></td>
<td style="text-align: left; width: 30%;">Austronesian (Malayo-Polynesian)</td>
<td style="text-align: right; width: 10%; background-color: rgba(197, 217, 234, 255) !important;">4.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">229,107</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">188. Pular<br>
<em>Pular</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (North-Central Atlantic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(197, 217, 234, 255) !important;">4.9M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">15,307</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">189. Tatar<br>
татар теле</td>
<td style="text-align: left; width: 30%;">Turkic</td>
<td style="text-align: right; width: 10%; background-color: rgba(197, 217, 234, 255) !important;">4.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">609,888</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">190. Awadhi<br>
अवधी</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(197, 217, 234, 255) !important;">4.8M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">2,616</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">191. Swati<br>
<em>siSwati</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(198, 218, 235, 255) !important;">4.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">1,135</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">192. Sicillian<br>
<em>Sicilianu</em></td>
<td style="text-align: left; width: 30%;">Indo-European (Romance)</td>
<td style="text-align: right; width: 10%; background-color: rgba(198, 218, 235, 255) !important;">4.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">26,287</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">193. Shan<br>
လိၵ်ႈတႆး‎</td>
<td style="text-align: left; width: 30%;">Tai-Kadai</td>
<td style="text-align: right; width: 10%; background-color: rgba(198, 218, 235, 255) !important;">4.7M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">14,624</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">194. Southern Uzbek<br>
ﯣزبېک</td>
<td style="text-align: left; width: 30%;">Turkic</td>
<td style="text-align: right; width: 10%; background-color: rgba(199, 218, 235, 255) !important;">4.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">333,716</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">195. Tiv<br>
<em>Tiv</em></td>
<td style="text-align: left; width: 30%;">Niger-Congo (Bantoid)</td>
<td style="text-align: right; width: 10%; background-color: rgba(199, 218, 235, 255) !important;">4.6M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">196. Southern Thai<br>
ภาษาไทยถิ่นใต้</td>
<td style="text-align: left; width: 30%;">Tai-Kadai</td>
<td style="text-align: right; width: 10%; background-color: rgba(200, 219, 235, 255) !important;">4.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(130, 201, 165, 255) !important;">180,341</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">197. Lao<br>
ພາສາລາວ‎</td>
<td style="text-align: left; width: 30%;">Tai-Kadai</td>
<td style="text-align: right; width: 10%; background-color: rgba(200, 219, 235, 255) !important;">4.5M</td>
<td style="text-align: right; width: 10%; background-color: rgba(230, 247, 240, 255) !important;">5,437</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">198. Bugis<br>
<em>Basa Ugi</em></td>
<td style="text-align: left; width: 30%;">Austronesian (Malayo-Polynesian)</td>
<td style="text-align: right; width: 10%; background-color: rgba(201, 219, 236, 255) !important;">4.4M</td>
<td style="text-align: right; width: 10%; background-color: rgba(186, 228, 215, 255) !important;">15,955</td>
</tr>
<tr class="even">
<td style="text-align: left; width: 50%;">199. Southern Kurdish<br>
کوردیی باشووری</td>
<td style="text-align: left; width: 30%;">Indo-European (Iranic)</td>
<td style="text-align: right; width: 10%; background-color: rgba(201, 220, 236, 255) !important;">4.3M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
<tr class="odd">
<td style="text-align: left; width: 50%;">200. Mewari<br>
मेवाड़ी</td>
<td style="text-align: left; width: 30%;">Indo-European (Indo-Aryan)</td>
<td style="text-align: right; width: 10%; background-color: rgba(202, 220, 236, 255) !important;">4.2M</td>
<td style="text-align: right; width: 10%; background-color: rgba(255, 255, 255, 255) !important;">0</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>


</section>

 ]]></description>
  <guid>https://carwilb.github.io/posts/wiki-language-diversity.html</guid>
  <pubDate>Sun, 01 Feb 2026 06:00:00 GMT</pubDate>
  <media:content url="https://carwilb.github.io/images/wikipedia/List_of_Wikipedia_articles_by_language_-_March_2024.svg.png" medium="image" type="image/png" height="83" width="144"/>
</item>
<item>
  <title>Breaking “Margaret Mead” out of a Wikipedia Rut</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/posts/wiki-rewriting.html</link>
  <description><![CDATA[ 





<p><em>I rode alongside my students’ assignment to rewrite a Wikipedia article this semester and learned a ton about Margaret Mead. And also about what kind of material can stay on Wikipedia for many years without being updated or corrected. Here’s what I think Wikipedia editors and those who teach with Wikipedia can learn from my experience.</em></p>

<div class="no-row-height column-margin column-container"><div class="">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><a href="../images/anthro/mead-bateson-1938.jpg"><img src="https://carwilb.github.io/images/anthro/mead-bateson-1938.jpg" class="img-fluid figure-img"></a></p>
<figcaption>Margaret Mead and Gregory Bateson typing up fieldnotes in 1938</figcaption>
</figure>
</div>
</div></div><p>Wikipedia can be one of the most dynamic places on the Internet, and its basic principles of verifiability, neutrality, and the use of high-quality reliable sources have made it competitive with professionally published references on many topics. The Wikipedia editing community subjects thousands of new contributions each day to scrutiny for their quality. But the overall corpus of the encyclopedia, whose article counts recently crossed the 7 million mark, is much larger than its active editor base. No top-to-bottom review of its content has ever been attempted. And some kinds of flawed articles can easily remain in that state for not just days or weeks but for years.</p>
<p>This was definitely the case for the <a href="https://en.wikipedia.org/wiki/Margaret_Mead">Wikipedia article on Margaret Mead</a>, arguably the most famous non-fictional anthropologist. The article receives <a href="https://pageviews.wmcloud.org/?project=en.wikipedia.org&amp;platform=all-access&amp;agent=user&amp;redirects=0&amp;start=2025-09-22&amp;end=2025-12-21&amp;pages=Margaret_Mead">over 500 visits per day</a>–200,000 per year–and has been edited over 2,400 times by 1,193 editors. In short, the magic of the crowd<sup>1</sup> should have had this article covered.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;Or <a href="https://en.wikipedia.org/wiki/Linus's_law">Linus’ Law</a>: “given enough eyeballs, all bugs are shallow.”</p></div></div><p>But hundreds of editors have passed by some deep flaws for over a decade: Mead’s bisexuality is well documented in published sources, but the article tip-toed around her romantic relationships with women. Mead had a half-century-long career but nearly a thousand words of the less-than-4,000-word article was devoted to controversy over her first book, Coming of Age in Samoa. And the section on Sex and Temperament featured a long quote purportedly from her book, but actually from a future professor’s lecture notes (he contributed them as text during the early days of Wikipedia and they were eventually mis-cited).</p>
<p>I must have visited the article a dozen times before this year, each time feeling it was deeply unsatisfying: hung up on criticism and offering a narrow view. But the criticism was well-cited and was the fruit of some other editors’ hard work. And balancing out a biography takes a lot of work. It wasn’t a very short article in obvious need of expansion. But if I had taken a long hard look at it, I would have seen plenty of ways to improve it.</p>

<div class="no-row-height column-margin column-container"><div class="">
<p>(Side point: This is one reason why the Evaluate an Article assignment that Wiki Education offers can be so helpful. It offers many starting points for improving and article. Though, if I recall correctly, these evaluations are not usually shared on the Talk pages of evaluated articles.)</p>
</div></div><p>I suspect that many editors, like me, have noticed medium-sized flaws to an article like this one. But we can’t easily tag the problem and don’t have the time to do the kind of deep dive to fix them. Wikipedia could benefit a lot from some way to regularly review high-traffic, medium-quality articles. And from better tools to pull up original source quotations for verification.</p>
<section id="verifying-wikipedia-in-2025" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="verifying-wikipedia-in-2025">Verifying Wikipedia in 2025</h2>
<p>When I took my first critical look at the text, I saw a lot of very detailed, but weakly sourced text, sometimes with out any sources and sometimes with a single parenthetical citation. These references to articles and books published decades ago were once difficult for Wikipedians to verify,but not anymore.</p>

<div class="no-row-height column-margin column-container"><div class="">
<p><a href="../images/wikipedia/freeman-1983-internet-archive.png"><img src="https://carwilb.github.io/images/wikipedia/freeman-1983-internet-archive.png" class="img-fluid" alt="A diagram showing the five main contributors to the Sex and Temperament section of Margaret Mead."></a></p>
</div></div><p>Much more of the academic workflow has become digital since Wikipedia started. With the Internet Archive and my university library access, I could read almost all of the sources online and match up citations with sources side-by-side. Sometimes I did this to fill in where exactly the author said what is claimed on Wikipedia.</p>
<p>The good news is that these tools make verifying poorly Wikipedia text much easier. One can find each of the criticisms from Derek Freeman described in this paragraph in his book criticizing Mead’s work. And then cite them individually, producing a verifiable paragraph (for reasons of length and balance, I put this level of detail in the <a href="https://en.wikipedia.org/w/index.php?title=Coming_of_Age_in_Samoa&amp;oldid=1307773691#Freeman's_1983_book"><em>Coming of Age in Samoa</em></a> article.)</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-1-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-1" aria-controls="tabset-1-1" aria-selected="true" aria-current="page">Before</a></li><li class="nav-item"><a class="nav-link" id="tabset-1-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-2" aria-controls="tabset-1-2" aria-selected="false">After</a></li></ul>
<div class="tab-content">
<div id="tabset-1-1" class="tab-pane active" aria-labelledby="tabset-1-1-tab">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/wikipedia/wikipedia-freeman-1983-oldcitations.png" class="img-fluid figure-img" alt="Criticism by Derek Freeman section with two footnotes. Text reads, After her death, Mead's Samoan research was criticized by the anthropologist Derek Freeman, who published a book arguing against many of Mead's conclusions in Coming of Age in Samoa. Freeman argued that Mead had misunderstood Samoan culture when she argued that Samoan culture did not place many restrictions on youths' sexual explorations. Freeman argued instead that Samoan culture prized female chastity and virginity and that Mead had been misled by her female Samoan informants. Freeman found that the Samoan islanders whom Mead had depicted in such utopian terms were intensely competitive and had murder and rape rates higher than those in the United States. Furthermore, the men were intensely sexually jealous, which contrasted sharply with Mead's depiction of quote-free love-unquote among the Samoans."></p>
<figcaption>"Margaret Mead" Before</figcaption>
</figure>
</div>
</div>
<div id="tabset-1-2" class="tab-pane" aria-labelledby="tabset-1-2-tab">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/wikipedia/wikipedia-freeman-1983-newcitations.png" class="img-fluid figure-img" alt="Freeman's 1983 book section with five footnotes, all to specific pages and a new quote. Text reads, Freeman argued that Mead had misunderstood Samoan culture when she argued that Samoan culture did not place many restrictions on youths' sexual explorations. Freeman argued instead that Samoan culture prized female chastity and virginity and that Mead had been misled by her female Samoan informants. Freeman found that the Samoan islanders whom Mead had depicted in such utopian terms were intensely competitive and had murder and rape rates higher than those in the United States. Furthermore, the men were intensely sexually jealous, which contrasted sharply with Mead's depiction of -quote-free love-unquote among the Samoans. Freeman stated that the idea that premarital sex was an expected practice in Samoa was quote-so preposterously at variance with the realities of Samoan life that a special explanation is called for … all the indications are that the young Margaret Mead was, as a kind of joke, deliberately misled by her adolescent informants.-unquote-"></p>
<figcaption>"Coming of Age in Samoa" After</figcaption>
</figure>
</div>
</div>
</div>
</div>
<p>While most of this work was just attaching clear sourcing to good text, it’s also a chance to improve the article, and sometimes (as I did here) to find the dramatic quote that brings the whole argument into focus. I plan to incorporate this kind of hard verification into a new assignment for my courses that edit Wikipedia, getting students familiar with checking up on and improving sources.</p>
<p>And sometimes, more often than I expected, the works cited on Wikipedia failed to verify the facts claimed. For example, there’s this text on Wikipedia:</p>
<blockquote class="blockquote">
<p>Deborah Gewertz (1981) studied the Chambri (called Tchambuli by Mead) in 1974-1975, and found no evidence of such gender roles. Gewertz states that as far back in history as there is evidence (1850’s) Chambri men dominated over the women, controlled their produce and made all important political decisions.</p>
</blockquote>
<p>Gewertz said Chambri women weren’t dominant in the 1970s, but she certainly didn’t reject Mead’s ethnography on this issue, writing instead (in Gewertz 1981): “I believe that the relative ‘dominance’ of Chambri women during 1933-or perhaps more accurately, the reduction of symmetrical competition between Chambri men-reflects a temporary shift in the balance.” Elsewhere she wrote, “We argue in Errington and Gewertz, 1987a, that … the Chambri never developed a male-oriented military organization comparable to that of the Iatmul; relations between Chambri men and women were, therefore, much more egalitarian than between Iatmul men and women.”</p>
<p>Similarly, Wikipedia claimed:</p>
<blockquote class="blockquote">
<p>Mead’s Sex and Temperament in Three Primitive Societies became influential within the <a href="https://en.wikipedia.org/wiki/Feminist_movement">feminist movement</a> since it claimed that females are dominant in the Tchambuli (now spelled <a href="https://en.wikipedia.org/wiki/Chambri_people">Chambri</a>) Lake region of the Sepik basin of <a href="https://en.wikipedia.org/wiki/Papua_New_Guinea">Papua New Guinea</a> (in the western Pacific) without causing any special problems.</p>
</blockquote>
<p>This was the first sentence introducing Mead’s book. While not the worst summary of one of Mead’s particular claims, it totally misunderstands the relevance of the book to feminism. It wasn’t the reported female dominance among the Tchambuli that led to Sex and Temperament’s role in the women’s movement, but rather the book’s explanation of the <a href="https://en.wikipedia.org/wiki/Sex%E2%80%93gender_distinction">sex-gender distinction</a>. But it’s hard to counter a statement like that one without some detailed knowledge of both Mead and her social impact. This is something we fortunately have for Mead in high-quality sources like Nancy Lutkehaus’s <em>Margaret Mead: The Making of an American Icon</em>.</p>
<p>Deep verification of the article uncovered multiple problems. Text attributed to Mead wasn’t hers, facts cited to Gewertz and to Mead weren’t in those texts. And the summaries of Friedan and Bamberger confused facts or didn’t convey their full meaning. Perhaps just as important, finding a narrow fact in context sometimes revealed that isolating the fact was a bad idea.</p>
</section>
<section id="how-did-we-get-here" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="how-did-we-get-here">How did we get here?</h2>
<p>Here’s a list of some plain-text segments from the Margaret Mead article (<a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=1316523564">in October 2025,</a> before I started tinkering with it). Some are problematic in themselves, others index sections that I was interested in changing or balancing out. By <a href="https://github.com/Ironholds/WikipediR/issues/33">implementing Wikiblame in R</a>, I could draw up this table of who exactly added this text in the first place.</p>
<div style="font-size: 0.85em;">
<table class="table-striped table-sm small caption-top table">
<caption>Sources of text in Margaret Mead</caption>
<thead>
<tr class="header">
<th style="text-align: left;">original_sentence</th>
<th style="text-align: left;">date_added</th>
<th style="text-align: left;">added_by</th>
<th style="text-align: left;">revision</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">it claimed that females are dominant in the Tchambuli</td>
<td style="text-align: left;">2004-09-14</td>
<td style="text-align: left;">24.225.235.247</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=6085559">6085559</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">both men and women were peaceful in temperament</td>
<td style="text-align: left;">2005-04-27</td>
<td style="text-align: left;">Arnold Perey</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=12900063">12900063</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">spent their time decorating themselves while the women</td>
<td style="text-align: left;">2005-04-27</td>
<td style="text-align: left;">Arnold Perey</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=12900063">12900063</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">a close personal and professional collaboration</td>
<td style="text-align: left;">2008-02-08</td>
<td style="text-align: left;">Haddison</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=189971634">189971634</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">the relationship between Benedict and Mead was partly sexual</td>
<td style="text-align: left;">2010-01-20</td>
<td style="text-align: left;">Hurmata</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=338907179">338907179</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">on the basis that it contributes to infantilizing women</td>
<td style="text-align: left;">2012-10-25</td>
<td style="text-align: left;">88.114.154.216</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=519709225">519709225</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">as far back in history as there is evidence (1850s)</td>
<td style="text-align: left;">2014-04-01</td>
<td style="text-align: left;">Ewulp</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=602226519">602226519</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">reports detailing the attitudes towards sex</td>
<td style="text-align: left;">2015-01-05</td>
<td style="text-align: left;">Rationalobserver</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=641101012">641101012</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">after Mead’s divorce from Cressman</td>
<td style="text-align: left;">2018-07-03</td>
<td style="text-align: left;">Anneek</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=848682893">848682893</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Mundugumor women hazed each other less than men hazed</td>
<td style="text-align: left;">2019-11-12</td>
<td style="text-align: left;">Sdio7</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=925883715">925883715</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">a close friend of her instructor</td>
<td style="text-align: left;">2020-04-26</td>
<td style="text-align: left;">LearnMore</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=953303248">953303248</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">became influential within the</td>
<td style="text-align: left;">2022-07-29</td>
<td style="text-align: left;">WikiPedant</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=1101070289">1101070289</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Mead identified two types of sex relations: love affairs and adultery</td>
<td style="text-align: left;">2023-03-31</td>
<td style="text-align: left;">AnthroCurious</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=1147544351">1147544351</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">the book tackled the question of nature versus nurture</td>
<td style="text-align: left;">2023-03-31</td>
<td style="text-align: left;">AnthroCurious</td>
<td style="text-align: left;"><a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=1147546180">1147546180</a></td>
</tr>
</tbody>
</table>
</div>
<p>By discovering when the first three sentences were put onto Wikipedia, I unearthed an early moment in the encyclopedia page when it functioned as basically an online debate over Margaret Mead’s legacy.</p>
<p>First an anonymous user (known only by their IP address) made <a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;diff=6085559&amp;oldid=5865682">this addition</a> in September 2004:</p>
<blockquote class="blockquote">
<p>Another extremely influential book by Mead was “Sex and Temperament in Three Primitive Societies.” This became a major cornerstone of the women’s liberation movement, since it claimed that females are dominant in the Tchambuli tribes of the South Sea islands, without causing any special problems. However, looking up Tchambuli (sometimes spelled Chambri or Chimbu) in the Encyclopedia Britannica and other such modern references, the reader finds that later anthropological studies do not confirm this, and that males are dominant in Melanesia, except for the belief that some female witches have special taboo powers. (See also Gender Relations in Melanesian Culture, in the Encyc. Britannica.) Also, Mead claimed that the Arapesh people were pacifists, but later studies did not confirm this.</p>
</blockquote>
<p>Then Arnold Perey clapped back in a <a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;diff=6085559&amp;oldid=5865682">two-part</a> <a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;diff=13007684&amp;oldid=12898632">contribution</a> in April 2005:</p>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-1-contents" aria-controls="callout-1" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Note</span>Click to read the full contribution
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-1" class="callout-1-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>However, it should also be pointed out that Mead was looking at cultures in transition in the 1930s. The Tchambuli men seem bewildered in Sex and Temperament for they no longer have traditionsl warfare–stopped by the Australiam administration. The Tchambuli later may well have been different–and later studies should be related to Mead’s earlier studies rather than “replacing” them.</p>
<p>All generalizations about Melanesia need not apply to every culture in New Guinea, for New Guinea is a large island with isolated populations. For example networks of political influence among females may be more powerful than at first appears, particularly to a male anthropologist. The formal male-dominated institutions typical of some high-population density areas were not, for example, present in the same way in Oksapmin, West Sepik Province, a more sparsely populated area. Cultural patterns there, were different from say, Mr.&nbsp;Hagen. They were closer to those described by Mead.</p>
<p>Informants describe Arapesh as definitely fighting with others. However, a close study of her volumes on the Arapesh show that Mead did describe how the Arapesh had both peace and war, as other cultures do, but she did not sufficiently not relate the two dispositions: (1) the disposition to see others as enemies and (2) to see them as friends. Meanwhile, her observations about the sharing of garden plots amongst the Arapesh, the egaliterian emphasis in child-rearing, and her documentation of predominantly peaceful relations among relatives hold up. These descriptions are very different from the “big-man” displays of dominance that were documented in more stratified New Guinea cultures–e.g.&nbsp;by Andrew Strathern. They are indeed, as she wrote, a cultural pattern</p>
<p>When Margaret Mead described her own researches to her students at Columbia University, she put succinctly what her objectives and her conclusions were. A first hand account by an anthropologist who studied with Mead in the 60s and 70s provides this information:–</p>
<ol type="1">
<li>Mead tells of Sex and Temperament in Three Primitive Societies. “She explained that nobody knew the degree to which temperament is biologically determined by sex. So she hoped to see whether there were cultural or social factors that affected temperament. Were men inevitably aggressive? Were women inevitably”homebodies”? It turned out that the three cultures she lived with in New Guinea were almost a perfect laboratory–for each had the variables that we associate with masculine and feminine in an arrangement different from ours. She said this surprised her, and wasn’t what she was trying to find. It was just there.</li>
</ol>
<ul>
<li>“Among the Arapesh, both men and women were peaceful in temperament and neither men nor women made war.</li>
<li>“Among the Mundugumor, the opposite was true: both men and women were warlike in temperament.</li>
<li>“And the Tchambuli were different from both. The men ‘primped’ and spent their time decorating themselves while the women worked and were the practical ones–the opposite of how it seemed in early 20th century America.” [<a href="http://www.livejournal.com/users/aperey/">Perey.</a> Reproduced by permission of the author.]</li>
</ul>
<ol start="2" type="1">
<li>Mead tells of Growing Up in New Guinea. “Margaret Mead told us how she came to the research problem on which she based her Growing Up in New Guinea. She reasoned as follows: If primitive adults think in an <a href="https://en.wikipedia.org/wiki/Animistic">animistic</a> way, as Piaget says our children do, how do primitive children think?</li>
</ol>
<p>“In her research on Manus island of New Guinea, she discovered that ‘primitive’ children think in a very practical way and begin to think in terms of spirits etc. as they get older.</p>
<p>“Note: Animistic thinking gives feelings or personality to inanimate objects. For example, a child can say”Bad sidewalk!” if she falls and hurts herself on it–seeing the sidewalk as mean for causing her pain. The term animism comes from the Latin for soul, “anima.” And tribal cultures often do have animistic concepts: Pueblos see the clouds as cloud people, who can be pleased or displeased by what man does–and give rain or drought.” [<a href="http://www.livejournal.com/users/aperey/970.html">Perey</a>. Reproduced by permission of the author.]</p>
</div>
</div>
</div>
<p>Neither contribution would meet Wikipedia’s ultimate standards, some of which were still under development when these sections were added to the encyclopedia. The anonymous IP contribution is argumentative (contra Wikipedia’s <a href="https://en.wikipedia.org/wiki/Wikipedia:Neutral_point_of_view">Neutral Point of View policy</a>) and it begins with a flat-out falsehood: the women’s movement had not in fact taken a New Guinea matriarchy as its cornerstone. Arnold Perey’s response is also argumentative, but it embeds a long attempt at neutral description, initially properly cited to his Livejournal blog, Anthropological Anecdotes, which is impressively <a href="https://aperey.livejournal.com/">still online</a>. He wrote the posts in question on the same day he contributed to Wikipedia.</p>
<p>Perey’s lecture notes from Mead-<em>turned</em>-blog post-<em>turned</em>-Wikipedia contributions weren’t a bad summary. In fact, their opening paragraph reads pretty close to what Mead herself says in her <a href="https://archive.org/details/in.ernet.dli.2015.191072/page/n5/mode/2up">1950 preface</a>. But they end up standing in the way of readers finding out what Mead actually said herself. A current Wikipedia contributor would be strongly cautioned not to use such a blog post (though blogs by <a href="https://en.wikipedia.org/wiki/Wikipedia:Verifiability#Self-published_sources">published subject matter experts are not strictly against policy</a>). Current Wikipedia practice would <a href="https://en.wikipedia.org/wiki/Wikipedia:Conflict_of_interest#Citing_yourself">strongly caution Peney against self-citation</a> and encourage him to use <a href="https://en.wikipedia.org/wiki/Wikipedia:Reliable_sources">higher-quality reliable sources</a> instead.</p>
<p>But by and large, these two positions stayed up through twenty years of edits and were still the core of Wikipedia’s coverage of Mead’s <em>Sex and Temperament</em> in 2025. (<em>See the colored sequence of these edits here.</em>) Instead of a description of Mead’s book, the section became a gradually widening argument between critics and defenders of Mead, exploring issues like the prevalence of male dominance in Melanesia. When editors wanted to shift this debate, they typically added more text rather than going back to verify what was already there for problems.</p>

<div class="no-row-height column-margin column-container"><div class="">
<p><a href="../images/wikipedia/wikipedia-sex-temperament-editors.png"><img src="https://carwilb.github.io/images/wikipedia/wikipedia-sex-temperament-editors.png" class="img-fluid" alt="A diagram showing the five main contributors to the Sex and Temperament section of Margaret Mead."></a></p>
</div></div><p>Why? Perhaps because this kind of back and forth is the familiar practice of online debates. Perhaps because deleting material feels more likely to spawn conflicts and eit wars. Perhaps because Wikipedians assumed good faith by prior writers and so didn’t fact check what was already there.</p>
</section>
<section id="an-error-on-wikipedia-becomes-global" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="an-error-on-wikipedia-becomes-global">An Error on Wikipedia Becomes Global</h2>
<p>One consequence, unique to Wikipedia, is that Perey’s blog quote gradually got transformed into an uncited quote, and then finally into a misquote from <em>Sex and Temperament</em> itself. This is a mis-quote that has now gone round the world through translations of the English Wikipedia article, as in this segment from Japanese Wikipedia.</p>
<div class="column-page-right">
<p><img src="https://carwilb.github.io/images/wikipedia/Japanese-Wikipedia-Quotes-Mead.png" class="img-fluid" alt="A screenshot of DeepL translating a section of the Japanese Wikipedia article on Margaret Mead, showing a misattributed quote written by Peney."></p>
</div>
<p>Perey’s text also appears, properly cited, in Spanish and Portuguese Wikipedia. Pieces of his description of Mead’s argument have been scattered across the Internet.</p>
</section>
<section id="now-what" class="level2">
<h2 class="anchored" data-anchor-id="now-what">Now What?</h2>
<p><em>What can we learn from this?</em> I think we, <strong>as editors expanding articles</strong>, need to try to go beyond participating in online debates about the topics of the article. It’s all to easy to get sucked in to attacking or defending a scholar or text, and leave the basic work of describing or summarizing it undone. It’s also a conflict-averse move to leave existing POV text as it is, rather than double-checking its sources or attempting to integrate it with new material. This is how Wikipedia articles can get longer without getting smarter.</p>
<p>Good encyclopedic articles address the question of <em>what the study said</em> first, before getting to the matter of <em>how good</em> the study was. This means drawing more on introductions, prefaces, biographies, and secondary materials to describe fieldwork, methods, questions, and time period. You can see my effort to rewrite the <em>Sex and Temperament</em> section from the start, and new sections on Manus, Bali, the Omaha, and overall ethnographic methods in the <a href="https://en.wikipedia.org/w/index.php?title=Margaret_Mead&amp;oldid=1331237513">current version of the article</a>.</p>
<p>I think it’s fair to say that most Wikipedians use the mere presence of citations as a marker of accurate reliance on sources. This experience suggests this confidence is unwarranted and <strong>we need to think more carefully about verification</strong>. Even with easy access to original sources, verification is time consuming and may be invisible to the reader or other editors. Other than good/featured article review and formal requests for peer review, there’s not a clear mechanism on Wikipedia for soliciting this kind of hard verification. And once someone has vetted a section for accurate sourcing, there’s no way to signal this to other editors.</p>
<p>Finally, I think this experience suggests that <strong>instructors assigning Wikipedia editing</strong> need to teach more about verification more. Assignments that focus on verifying and improving existing text, rather than just adding new text, could help a lot. That inculdes assignments were students check each citation in a section, or a deeper verification where they look into how later scholarship views a scientist, study, or topic. And teaching students to use tools like the Internet Archive and library databases to find original sources is essential.</p>


</section>


 ]]></description>
  <guid>https://carwilb.github.io/posts/wiki-rewriting.html</guid>
  <pubDate>Mon, 12 Jan 2026 06:00:00 GMT</pubDate>
</item>
<item>
  <title>Wikipedia Redirect Generator</title>
  <link>https://carwilb.github.io/posts/redirect-generator.html</link>
  <description><![CDATA[ 





<section id="using-quarto-and-r-to-generate-text-for-wikipedia" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="using-quarto-and-r-to-generate-text-for-wikipedia">Using Quarto and R to generate text for Wikipedia</h2>
<p>This page is an experiment with using Quarto and R to generate text for Wikipedia. The goal is to create a reproducible workflow that can help in generating content for Wikipedia articles, such as redirects, summaries, or infoboxes. The basic design is human-in-the-loop editing and the first experiment here is the simplest possible configuration, just linking two names together. It’s a proof of concept to enable much more complex content addition, supervised at each step by human verification.</p>
<section id="example-generating-redirects" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="example-generating-redirects">Example: Generating Redirects</h3>
<p><a href="https://en.wikipedia.org/wiki/Wikipedia:Redirect">Redirects</a> allow multiple names to link to the same encyclopedic content on Wikipedia.</p>
<p>We create two functions to create redirects on Wikipedia:</p>
<ul>
<li><p><code>create_redirect(from_title, to_title)</code>: Generates a link to create a redirect from <code>from_title</code> to <code>to_title</code> if the <code>from_title</code> page does not already exist.</p></li>
<li><p><code>create_multiple_redirects_to_one(redirects_from, redirect_to)</code>: Uses <code>create_redirect</code> to generate multiple redirects from a list of titles to a single target title.</p></li>
</ul>
<div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb1-1">create_redirect <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">function</span>(from_title, to_title) {</span>
<span id="cb1-2">  </span>
<span id="cb1-3">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># 1. Manually define the Wikipedia redirect syntax with Hex Encoding</span></span>
<span id="cb1-4">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># # = %23 | [ = %5B | ] = %5D | Space = %20</span></span>
<span id="cb1-5">  prefix  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"%23REDIRECT%20%5B%5B"</span></span>
<span id="cb1-6">  suffix  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"%5D%5D"</span></span>
<span id="cb1-7">  </span>
<span id="cb1-8">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># 2. Encode the destination title for use inside the URL</span></span>
<span id="cb1-9">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># We use URLencode with reserved = TRUE to catch spaces and special chars</span></span>
<span id="cb1-10">  encoded_destination <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> utils<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">URLencode</span>(to_title, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">reserved =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>)</span>
<span id="cb1-11">  </span>
<span id="cb1-12">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># 3. Assemble the preload text and the edit summary</span></span>
<span id="cb1-13">  preload_content <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(prefix, encoded_destination, suffix)</span>
<span id="cb1-14">  edit_summary    <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Redirecting%20to%20%5B%5B"</span>, encoded_destination, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"%5D%5D"</span>)</span>
<span id="cb1-15">  </span>
<span id="cb1-16">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># 4. Check if the page exists using your existing logic</span></span>
<span id="cb1-17">  wikipedia_pages <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">page_info</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"en"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"wikipedia"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">page =</span> from_title)<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>query<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>pages</span>
<span id="cb1-18">  </span>
<span id="cb1-19">  <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> (<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">names</span>(wikipedia_pages) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"-1"</span>) {</span>
<span id="cb1-20">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Construct the raw URL targeting index.php</span></span>
<span id="cb1-21">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># We use from_title for the 'title' param so we are creating the new page</span></span>
<span id="cb1-22">    base_url <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"https://en.wikipedia.org/w/index.php"</span></span>
<span id="cb1-23">    auto_fill_url <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(</span>
<span id="cb1-24">      base_url, </span>
<span id="cb1-25">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"?title="</span>, utils<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">URLencode</span>(from_title, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">reserved =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>),</span>
<span id="cb1-26">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&amp;action=edit"</span>,</span>
<span id="cb1-27">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&amp;preloadtext="</span>, preload_content,</span>
<span id="cb1-28">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&amp;summary="</span>, edit_summary</span>
<span id="cb1-29">    )</span>
<span id="cb1-30"></span>
<span id="cb1-31">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># 5. Return as a raw HTML link to protect the %23 from Quarto's renderer</span></span>
<span id="cb1-32">    link_html <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(</span>
<span id="cb1-33">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'&lt;a href="'</span>, auto_fill_url, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'" target="_blank" '</span>,</span>
<span id="cb1-34">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'style="color: #0056b3; text-decoration: underline; font-weight: bold;"&gt;'</span>,</span>
<span id="cb1-35">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'🚀 Create redirect: '</span>, from_title, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">' → '</span>, to_title, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'&lt;/a&gt; '</span>,</span>
<span id="cb1-36">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'&lt;br&gt;Add this text:'</span></span>
<span id="cb1-37">    )</span>
<span id="cb1-38">    </span>
<span id="cb1-39">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># We also keep the copy-paste box as a fallback</span></span>
<span id="cb1-40">    redirect_text_plain <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"#REDIRECT [["</span>, to_title, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"]]"</span>)</span>
<span id="cb1-41">    copy_box <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(</span>
<span id="cb1-42">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'&lt;div style="display: flex; align-items: center; width: 80%; border: 1px solid #dee2e6; border-radius: 4px; padding: 5px; background-color: #f8f9fa; margin: 10px 0;"&gt;'</span>,</span>
<span id="cb1-43">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'&lt;code style="flex-grow: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;"&gt;'</span>, redirect_text_plain, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'&lt;/code&gt;'</span>,</span>
<span id="cb1-44">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'&lt;button onclick="navigator.clipboard.writeText(</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\'</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'</span>, redirect_text_plain, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\'</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">); this.innerText=</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\'</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">✅</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\'</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">; setTimeout(()=&gt;this.innerText=</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\'</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">📋</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\'</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">, 1000)" '</span>,</span>
<span id="cb1-45">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'style="border:none; background:none; cursor:pointer; padding-left: 10px;"&gt;📋&lt;/button&gt;'</span>,</span>
<span id="cb1-46">      <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'&lt;/div&gt;'</span></span>
<span id="cb1-47">    )</span>
<span id="cb1-48"></span>
<span id="cb1-49">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">return</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(link_html, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"&lt;br&gt;"</span>, copy_box))</span>
<span id="cb1-50">    </span>
<span id="cb1-51">  } <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">else</span> {</span>
<span id="cb1-52">    wikipedia_url <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> wikipedia_pages[[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>]]<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>fullurl</span>
<span id="cb1-53">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">return</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste0</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Page ["</span>, from_title, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"]("</span>, wikipedia_url, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">") already exists."</span>))</span>
<span id="cb1-54">  }</span>
<span id="cb1-55">}</span>
<span id="cb1-56"></span>
<span id="cb1-57">create_multiple_redirects_to_one <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">function</span>(redirects_from, redirect_to) {</span>
<span id="cb1-58">  <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> (<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">length</span>(redirect_to) <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">!=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>) {</span>
<span id="cb1-59">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">stop</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"This function needs one redirect destination."</span>)</span>
<span id="cb1-60">  }</span>
<span id="cb1-61">  <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> (assertthat<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">is.string</span>(redirects_from)) {</span>
<span id="cb1-62">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">return</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">create_redirect</span>(redirects_from, redirect_to))</span>
<span id="cb1-63">  } <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">else</span> {</span>
<span id="cb1-64">    redirects_md <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sapply</span>(redirects_from, <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">function</span>(from) {</span>
<span id="cb1-65">      <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">create_redirect</span>(from, redirect_to)})</span>
<span id="cb1-66">  }</span>
<span id="cb1-67">  </span>
<span id="cb1-68">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">return</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">glue</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"## Redirects to '{redirect_to}'</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\n\n</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>), </span>
<span id="cb1-69">               <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">paste</span>(redirects_md, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">collapse =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\n\n</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">---</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\n\n</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>)))</span>
<span id="cb1-70">}</span></code></pre></div></div>
</details>
</div>
<p>Here are three sample uses of the <code>create_multiple_redirects_to_one</code> function. The last two are practical uses, coming from the corresponding pages: Hickory Ground and Occaneechi people. The latter ultimately comes from the name lists (or synonymy) generated by James Mooney as shown in the margin.</p>

<div class="no-row-height column-margin column-container"><div class="">
<p><img src="https://carwilb.github.io/images/anthro/Mooney-Occaneechi-Synonymy.png" class="img-fluid"></p>
</div></div><div class="cell">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb2-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">create_multiple_redirects_to_one</span>(</span>
<span id="cb2-2">  <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Alpha"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Beta"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Gamma"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Delta"</span>),</span>
<span id="cb2-3">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Greek Letters"</span>)</span>
<span id="cb2-4"></span>
<span id="cb2-5"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># A Native American settlement known by multiple names</span></span>
<span id="cb2-6"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">create_multiple_redirects_to_one</span>( <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Otciapofa"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Odshiapofa"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Ocheopofau"</span>,</span>
<span id="cb2-7">                                    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Ocheubofau"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Oce Vpofa"</span>), <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Hickory Ground"</span>)</span>
<span id="cb2-8"></span>
<span id="cb2-9"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># A Native American people referenced by different names in the historical record</span></span>
<span id="cb2-10"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">create_multiple_redirects_to_one</span>( <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Achonechy"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Aconechos"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Akenatzy"</span>,</span>
<span id="cb2-11">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Hockinechy"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Occaneches"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Occaanechy"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Occhonechee"</span>,</span>
<span id="cb2-12">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Occonacheans"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Occoneechee"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Ockanechees"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Ockanigee"</span>,</span>
<span id="cb2-13">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Okenechee"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Acconeechy"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Occaneeches"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Ochineeches"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Ockinagee"</span>),</span>
<span id="cb2-14">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Occaneechi"</span>)</span></code></pre></div></div>
</details>
</div>
</section>
</section>
<section id="redirects-to-greek-letters" class="level2">
<h2 class="anchored" data-anchor-id="redirects-to-greek-letters">Redirects to ‘Greek Letters’</h2>
<p>Page <a href="https://en.wikipedia.org/wiki/Alpha">Alpha</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Beta">Beta</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Gamma">Gamma</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Delta">Delta</a> already exists.</p>
</section>
<section id="redirects-to-hickory-ground" class="level2">
<h2 class="anchored" data-anchor-id="redirects-to-hickory-ground">Redirects to ‘Hickory Ground’</h2>
<p>Page <a href="https://en.wikipedia.org/wiki/Otciapofa">Otciapofa</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Odshiapofa">Odshiapofa</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Ocheopofau">Ocheopofau</a> already exists.</p>
<hr>
<a href="https://en.wikipedia.org/w/index.php?title=Ocheubofau&amp;action=edit&amp;preloadtext=%23REDIRECT%20%5B%5BHickory%20Ground%5D%5D&amp;summary=Redirecting%20to%20%5B%5BHickory%20Ground%5D%5D" target="_blank" style="color: #0056b3; text-decoration: underline; font-weight: bold;">🚀 Create redirect: Ocheubofau → Hickory Ground</a> <br>Add this text:<br>
<div style="display: flex; align-items: center; width: 80%; border: 1px solid #dee2e6; border-radius: 4px; padding: 5px; background-color: #f8f9fa; margin: 10px 0;">
<code style="flex-grow: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;">#REDIRECT [[Hickory Ground]]</code><button onclick="navigator.clipboard.writeText('#REDIRECT [[Hickory Ground]]'); this.innerText='✅'; setTimeout(()=>this.innerText='📋', 1000)" style="border:none; background:none; cursor:pointer; padding-left: 10px;">📋</button>
</div>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Oce_Vpofa">Oce Vpofa</a> already exists.</p>
</section>
<section id="redirects-to-occaneechi" class="level2">
<h2 class="anchored" data-anchor-id="redirects-to-occaneechi">Redirects to ‘Occaneechi’</h2>
<p>Page <a href="https://en.wikipedia.org/wiki/Achonechy">Achonechy</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Aconechos">Aconechos</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Akenatzy">Akenatzy</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Hockinechy">Hockinechy</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Occaneches">Occaneches</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Occaanechy">Occaanechy</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Occhonechee">Occhonechee</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Occonacheans">Occonacheans</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Occoneechee">Occoneechee</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Ockanechees">Ockanechees</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Ockanigee">Ockanigee</a> already exists.</p>
<hr>
<a href="https://en.wikipedia.org/w/index.php?title=Okenechee&amp;action=edit&amp;preloadtext=%23REDIRECT%20%5B%5BOccaneechi%5D%5D&amp;summary=Redirecting%20to%20%5B%5BOccaneechi%5D%5D" target="_blank" style="color: #0056b3; text-decoration: underline; font-weight: bold;">🚀 Create redirect: Okenechee → Occaneechi</a> <br>Add this text:<br>
<div style="display: flex; align-items: center; width: 80%; border: 1px solid #dee2e6; border-radius: 4px; padding: 5px; background-color: #f8f9fa; margin: 10px 0;">
<code style="flex-grow: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;">#REDIRECT [[Occaneechi]]</code><button onclick="navigator.clipboard.writeText('#REDIRECT [[Occaneechi]]'); this.innerText='✅'; setTimeout(()=>this.innerText='📋', 1000)" style="border:none; background:none; cursor:pointer; padding-left: 10px;">📋</button>
</div>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Acconeechy">Acconeechy</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Occaneeches">Occaneeches</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Ochineeches">Ochineeches</a> already exists.</p>
<hr>
<p>Page <a href="https://en.wikipedia.org/wiki/Ockinagee">Ockinagee</a> already exists.</p>


</section>

 ]]></description>
  <guid>https://carwilb.github.io/posts/redirect-generator.html</guid>
  <pubDate>Fri, 02 Jan 2026 06:00:00 GMT</pubDate>
</item>
<item>
  <title>The Wikimedia Foundation, Wikipedia, and Artificial Intelligence</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/posts/ai-wikimedia.html</link>
  <description><![CDATA[ 





<section id="what-is-wikimedia-foundation-doing-about-ai" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="what-is-wikimedia-foundation-doing-about-ai">What is Wikimedia Foundation doing about AI?</h2>
<p>At the Wikimedia Foundation there’s a lot of interest in deploying AI systems. However, there’s also been a strategic decision to put AI powers in the service of supporting editors and readers, rather than as a new generator of content. This decision has an idealistic and a practical side to it. On principle, the Foundation is positioning Wikipedia as an <a href="https://wikimediafoundation.org/news/2023/07/12/wikipedias-value-in-the-age-of-generative-ai/">island of human-generated stability</a> in an information landscape that seems to be increasingly threatened with misinformation, and loss of social agreement and confidence. Wikipedia’s <a href="https://lbbonline.com/news/wikipedia-says-knowledge-is-human-in-latest-campaign">distinctive brand, in this view, is its human side</a>.</p>

<div class="no-row-height column-margin column-container"><div class="">
<p><a href="../images/wikimedia-human-first.png"><img src="https://carwilb.github.io/images/wikimedia-human-first.png" class="img-fluid"></a></p>
</div></div><p>In terms of practicality, the low ratio of Wikipedians to Wikipedia articles puts limits on the capacity of editors to manage (which is to say, patrol, fact check, and exercise quality control over) a new influx of automatically generated articles. Accordingyly, in their publicly announced AI strategy, the WMF has decided to put its development energy behind tools that either steer (presumably new) editors towards producing competent articles or enable existing editors to scale up their work managing, rather than creating new content. The priorities are:</p>
<ul>
<li>Prioritize AI assisted workflows in support of moderators and patrollers.</li>
<li>Create more time for editing, human judgment, discussion, and consensus building.</li>
<li>Create more time for editors to share local perspectives or context on a topic.</li>
<li>Engage new generations of editors with guided mentorship, workflows and assistance.</li>
</ul>
<p>The strategy is expressed in this <a href="https://meta.wikimedia.org/wiki/Wikimedia_Foundation_Artificial_Intelligence_and_Machine_Learning_Human_Rights_Impact_Assessment">mid-2024 Impact Assessement</a>, in their 2025 <a href="https://meta.wikimedia.org/wiki/Strategy/Multigenerational/Artificial_intelligence_for_editors">AI strategy</a> and <a href="https://wikimediafoundation.org/news/2025/04/30/our-new-ai-strategy-puts-wikipedias-humans-first/">announcement</a>, and the <a href="https://research.wikimedia.org/human-centered-ai.html">Human-Centered AI research team description</a>. Examples of tools for enhancing the reader experience includes <a href="https://www.youtube.com/watch?v=03AmHqulRGc&amp;t=10s">AI-assisted alt text for image accessibility</a>.</p>
</section>
<section id="where-is-the-wikipedia-community-on-ai" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="where-is-the-wikipedia-community-on-ai">Where is the Wikipedia community on AI?</h2>
<p>Heather Ford formally researched Wikipedia community concerns about generative AI and <a href="https://www.youtube.com/watch?v=lCCKf0yVK5E&amp;t=195s">gave this talk</a> presenting <a href="https://wikiworkshop.org/2025/paper/wikiworkshop_2025_paper_54.pdf">this paper</a> in late 2025. Here’s her summary of community concerns:</p>
<blockquote class="blockquote">
<p>Does the potential use of generative Al threaten knowledge integrity on Wikipedia? If so, how?</p>
</blockquote>
<blockquote class="blockquote">
<ul>
<li>Reliability, trustworthiness, accuracy: proliferation of Al-generated misinformation, hallucinations and biased content because of the difficulty in fact-checking and verifying Al outputs.</li>
<li>Equality: uneven distribution of risk because genAl tools are not available for all languages and because low editor numbers in smaller versions could tip the balance away from human control over curation, especially among non-English speakers.</li>
<li>Exploitation: the commercial exploitation of open content and editor labour by genAl companies. - Sustainability: the long-term sustainability of Wikipedia with the potential for people to turn increase in Al for their information needs.</li>
<li>Verifiability: when the link between a claim and its source is broken, readers are no longer able the veracity of a claim or participate in the process of knowledge curation leading information pollution on Wikipedia and the degradation of the broader information environment, or even model collapse.</li>
</ul>
</blockquote>
<p>In the in-person Wikimedia community, I think that opinions continue to vary widely, with both a heavy interest in experimentation and a desire to protect the encyclopedia. (I’m basing this on WikiConference North America.) WMF continues to demo or profile its AI-powered improvement experiments, such as “semantic search” that would allow visitors to ask questions in the Wikipedia search bar. And a lightning talk promoted a “release the bots” perspective that describes generative tools as powerful tools.</p>
<p>On English Wikipedia, discussion of LLM edits had deadlocked a couple of years ago: This <a href="https://en.wikipedia.org/wiki/Wikipedia:Large_language_models">proposed policy</a> was never approved, but kept as an essay. Still, the community seems to be gradually moving towards a consensus of specific limitations on adding unfiltered LLM content to the encyclopedia. These online discussions end up being lengthy and multi-sided, with one axis of contention pitting “defend the rules, whether AI or not” versus “limit (or even ban) mass LLM content.” This is complicated by the cross-cutting issue of smaller use cases for AI, where AI-inclusionists tend to use the prospect of forbidding AI grammar checks as a straw man, while AI exclusionists struggle to find a minimum set of off-limits use cases that can reach consensus. A series of hard limits in particular areas has, however, reached consensus: WP:LLM forbids the creation of new article with generative AI; new articles with clear AI artifacts may be speedily deleted; WP:AITALK limits the use of LLMs in formal talk page debates and allows for new topics to be closed if they weren’t opened by a human willing to articulate their ideas for themselves (but reopened once an initial user does so). A very long RFC is underway on a somewhat stronger LLM edit guideline, which seems likely to be modified once more before it’s approved.</p>

<div class="no-row-height column-margin column-container"><div class="">
<p><strong>WP:NEWLLM</strong> Large language models (LLMs) can be useful tools, but they are not good at creating entirely new Wikipedia articles. Large language models should not be used to generate new Wikipedia articles from scratch.</p>
<p><strong>WP:AITALK</strong> LLM-generated comments: Comments, nominations, and opening statements that are obviously generated (not merely refined) by a large language model or similar AI technology may be struck or collapsed with <code>{Collapse AI top}</code>. In formal discussions, this may result in the speedy closure of irrelevant or disruptive discussions</p>
<p><strong>Speedy Deletion Criterion</strong> <strong>G15. LLM-generated pages without human review</strong> [Delete without discussion] any [new] page that exhibits one or more of the following signs that … would have been removed by any <em>reasonable human review</em>: Communication intended for the user … Implausible non-existent references … Nonsensical citations.</p>
</div></div><p><a href="https://en.wikipedia.org/wiki/Wikipedia:WikiProject_AI_Cleanup"><strong>WikiProject AI Clean-Up</strong></a> and the essay at <strong>WP:LLM</strong> have become a central repositories for <a href="https://en.wikipedia.org/wiki/Wikipedia:Large_language_models#Demonstrations">demonstrations</a> of valuable LLM-assisted editing, the <a href="https://en.wikipedia.org/wiki/Wikipedia:Large_language_models#Policy_discussions">policy discussions on Wikipedia</a>. One impressive recent demonstration <a href="https://en.wikipedia.org/wiki/Wikipedia:Wikipedia_Signpost/2025-12-01/Opinion">appeared on Wikipedia Signpost</a>: user <a href="https://en.wikipedia.org/wiki/User:HaeB">Tilman Bayer</a> prompted GPT-5 Thinking to find errors in every daily featured article and it suggested 56 errors over a month, 38 of which Bayer confirmed.</p>
</section>
<section id="one-more-interesting-perspective" class="level2">
<h2 class="anchored" data-anchor-id="one-more-interesting-perspective">One more interesting perspective</h2>
<p>Northwestern researcher and now Microsoft AI researcher Brent Hecht has a talk on how the AI ecosystem is dependent on Wikipedia and other content producers, and now risks cannibalizing its knowledge source. <a href="https://youtu.be/y_EUwdb9qyk?si=x9nBHRtlzEHdOVpW">Wiki Workshop 2024 talk</a> | <a href="https://brenthecht.com/wikiworkshop2024/WikiWorkshopKeynote2024.pdf">slides</a> He ends up arguing that it is crucial for Wikipedia/Wikimedia to exercise its power to withhold content and use it to negotiate the future of AI provider–content creator relations.</p>


</section>

 ]]></description>
  <guid>https://carwilb.github.io/posts/ai-wikimedia.html</guid>
  <pubDate>Fri, 02 Jan 2026 06:00:00 GMT</pubDate>
</item>
<item>
  <title>What you should know about Artificial Intelligence</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/posts/ai-links.html</link>
  <description><![CDATA[ 





<section id="introductions-to-generative-ai" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="introductions-to-generative-ai">Introductions to Generative AI</h2>
<ul>
<li><strong>A jargon-free explanation of how AI large language models work</strong> (<a href="https://arstechnica.com/science/2023/07/a-jargon-free-explanation-of-how-ai-large-language-models-work/">ArsTechnica article</a>): a particularly eloquent primer on the underlying technology.</li>
<li><strong><em>Possible Minds: Twenty-Five Ways of Looking at AI</em></strong>:<span class="citation" data-cites="brockmanPossibleMindsTwentyfive2019"><sup>1</sup></span> If you want to know both the existential risk perspective and the here’s why human four-year-olds maintain intuitive knowledge ungrasped by AI, and especially how people who are doing this work see it, this is a thoughtful book filled with long-term (but not “long-termist”) perspectives.</li>
<li><strong><em>Artificial Intelligence: A Guide for Thinking Humans:</em></strong><span class="citation" data-cites="mitchellArtificialIntelligenceGuide2019"><sup>2</sup></span> Despite being published in 2019, this book by Melanie Mtichell (more on her below) is so technically smart and rigorous that it anticipates many of the limitations, quandaries, and debates that surround generative AI.</li>
<li><strong><em>Machines of Loving Grace</em></strong>:<span class="citation" data-cites="markoffMachinesLovingGrace2015"><sup>3</sup></span> John Markoff’s deep history of modern computer design and engineering traces how designers of human–computer interactions have been pulled either towards Artificial Intelligence (duplicating human intelligence in software systmes) or Intelligence Augmentation (building tools that extend human capacities).</li>
<li><strong>ChatGPT Is Not Intelligent</strong> (<a href="https://podcasts.apple.com/us/podcast/chatgpt-is-not-intelligent-w-emily-m-bender/id1507621076?i=1000608745281">podcast episode</a>) w/ Emily M. Bender.</li>
<li>Big picture argument (<a href="https://www.nytimes.com/2023/01/06/opinion/ezra-klein-podcast-gary-marcus.html">podcast episode</a>) from Gary Marcus that <strong>the current big-data approach won’t produce Artificial General Intelligence</strong>, but could contribute to it.</li>
<li>On <strong>how (even buggy and hallucinatory) LLM output can help you with programming</strong>, if you’re a programmer: https://simonwillison.net/2023/Apr/8/llms-break-the-internet/</li>
<li><strong>AI and the Illusion of Intelligence</strong> (<a href="https://www.coursera.org/learn/ai-and-the-illusion-of-intelligence">Coursera course</a>): a short, smart online course that takes you from Turing’s article inventing his famous test through the development of LLMs, with a thoughtful argument about intelligence augmentation through technology.</li>
</ul>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;John Brockman and ProQuest, <em>Possible minds: twenty-five ways of looking at AI</em> (Penguin Press, 2019).</p></div><div id="fn2"><p><sup>2</sup>&nbsp;Melanie Mitchell, <em>Artificial intelligence: a guide for thinking humans</em>, First edition. (Farrar, Straus; Giroux, 2019).</p></div><div id="fn3"><p><sup>3</sup>&nbsp;John Markoff, <em>Machines of loving grace: The quest for common ground between humans and robots</em>, First edition (ECCO, 2015), <a href="http://books.google.com/books?vid=isbn9780062266682">http://books.google.com/books?vid=isbn9780062266682</a>.</p></div></div><div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/artificial-intelligence-machine-2.jpg" class="img-fluid figure-img"></p>
<figcaption>Artificial intelligence machine synthesized by Adobe Firefly</figcaption>
</figure>
</div>
</section>
<section id="ai-news-sources" class="level2">
<h2 class="anchored" data-anchor-id="ai-news-sources">AI news sources</h2>
<ul>
<li><strong>Changelog</strong> and its <a href="https://practicalai.fm/">sub-podcast</a> <strong>Practical AI</strong> — Developers talking about technology. Example episodes: especially clear <a href="https://practicalai.fm/302">take on Deep Seek</a>; interview with <a href="https://practicalai.fm/293">National Institute of Standards and Technology staffer regulating AI</a>.</li>
<li><strong>TED AI Show</strong> podcast — Definitely credulous about AI’s potential, but lots of in-person interviews with AI players, giving insight on how companies are envisioning their plans. Examples: This <a href="https://open.spotify.com/episode/4GBoicwLLewdblKMxjR5yK?si=WAwGDEhKS7iUMjO4Pd9A9w">episode</a> taught me more about Google than I knew before.</li>
<li><strong>Tech Won’t Save Us</strong> <a href="https://techwontsave.us/">podcast</a> — Combines pessimism on the tech hype cycle with political critique of the direction of Big Tech.</li>
<li>Also for an often technical discussion, there is <strong>Machine Learning Street Talk</strong> <a href="https://open.spotify.com/show/02e6PZeIOdpmBGT9THuzwR?si=f3c82c3cc39b42e4">podcast</a> — Recent more accessible episodes include <a href="https://creators.spotify.com/pod/show/machinelearningstreettalk/episodes/GSMSymbolic-paper---Iman-Mirzadeh-Apple-e30dhvp">an interview with the Apple researcher</a> who “<a href="https://arstechnica.com/ai/2024/10/llms-cant-perform-genuine-logical-reasoning-apple-researchers-suggest/">exposed deep cracks in LLMs’ “reasoning” capabilities</a>” and <a href="https://creators.spotify.com/pod/show/machinelearningstreettalk/episodes/ARC-Prize-v2-Launch--Francois-Chollet-and-Mike-Knoop-e30k12p">a profile of the ARC v2 challenge</a> on human-like reasoning capabilities. You can see the challenge itself in <a href="https://www.nytimes.com/interactive/2025/03/26/business/ai-smarter-human-intelligence-puzzle.html">this <em>NYT</em> interactive</a>.</li>
</ul>
</section>
<section id="persistent-critical-voices" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="persistent-critical-voices">Persistent critical voices:</h2>
<ul>
<li><strong>Emily Bender</strong> (<a href="https://en.wikipedia.org/wiki/Emily_M._Bender">Wikipedia</a> | <a href="https://scholar.google.com/citations?user=9r_f1w4AAAAJ&amp;hl=en&amp;oi=ao">Google Scholar</a>), a linguist who entered the Generative AI discussion as an expert on large-language models. Co-author of “<a href="https://dl.acm.org/doi/10.1145/3442188.3445922">On the Dangers of Stochastic Parrots: Can Language Models Be Too Big? 🦜</a>” research paper with Timnit Gebru. Bender’s take is that hype is driving the AI discussion, and that there are substantive ethical problems with current models. More than other researchers, Bender inclines towards detailed collaborative critiques on questions like: <a href="https://bdtechtalks.com/2021/12/06/ai-benchmarks-limitations/">Can AI’s that pass human benchmark tests be said to have capacities they test for?</a> <a href="https://dl.acm.org/doi/full/10.1145/3649468">What are the dangers of using AI for search?</a> Bender has a new book out in 2025, <em>The AI Con</em>,<span class="citation" data-cites="benderAIConHow2025"><sup>4</sup></span> making a practical case that LLMs are being oversold and an ethical case they aren’t building the future we want.</li>
<li><strong>Gary Marcus</strong> (<a href="https://en.wikipedia.org/wiki/Gary_Marcus">Wikipedia</a> <a href="https://garymarcus.substack.com/">Substack blog</a>) — researcher and proponent of a structured approach to building artificial intelligence, but who thinks that hallucinations and failure to understand edge cases are invariable traits of neural network architectures. Marcus has emerged as a sharp critic of the current generative AI wave as unlikely to every generate sophisticated intelligence and a potential diversion of hundreds of billions of dollars and societal distrust in an unproductive direction. Marcus published his views in <em>Taming Silicon Valley</em> (2024)<strong>.</strong><span class="citation" data-cites="marcusTamingSiliconValley2024"><sup>5</sup></span></li>
<li><strong>Ed Zitron</strong> — Technology critic and writer. Focused on declining tech user experience and <a href="https://www.wheresyoured.at/subprimeai/">risks of a financial bubble</a> around generative AI. His general take is that generative AI has yet to show a vital use case and could dramatically underperform market expectations.</li>
<li><strong>Jaron Lanier</strong>, whose <em>You Are Not a Gadget</em> and <em>Who Owns the Future?</em> raise important questions about power and economy of technology, while accepting that technology will solve whatever problems it creates. <em>Who Owns the Future</em> also provides a smart typology of perspectives on technology.</li>
<li><strong>Cory Doctorow</strong>, futurist sci-fi writer with a hard economic critique of Big Tech in <em>Chokepoint Capitalism</em>.</li>
<li><strong>Shoshana Zuboff</strong>. It’s worth taking a moment and imagine AI chatbots and on-the-horizon agents, not as potentially intelligent machines, but rather as data collectors to the corporations that she thoroughly laid out in <em>The Age of Surveillance Capitalism</em>.</li>
</ul>
<div class="no-row-height column-margin column-container"><div id="fn4"><p><sup>4</sup>&nbsp;Emily M. Bender and Alex Hanna, <em>The AI Con: How to Fight Big Tech<span>’</span>s Hype and Create the Future We Want <span></span> Exposing Surveillance Capitalism and Artificial Intelligence Myths in Information Technology Today</em> (Harper, 2025).</p></div><div id="fn5"><p><sup>5</sup>&nbsp;Gary F. Marcus, <em>Taming Silicon Valley: How We Can Ensure That AI Works for Us</em> (The MIT Press, 2024).</p></div></div></section>
<section id="outspoken-ai-scientists" class="level2">
<h2 class="anchored" data-anchor-id="outspoken-ai-scientists">Outspoken AI scientists:</h2>
<ul>
<li><strong>Fei-Fei Li</strong>, Director of Stanford’s <a href="https://hai.stanford.edu/">Human-Centered AI Institute</a>, a crossover from AI science to humanities who invented the term “foundation models.”</li>
<li><strong>Geoffrey Hinton</strong>, researcher into neural-network-based machine learning. His experience with creating vision models whose internal workings are inscrutable have convinced him that knowing how AI works isn’t essential to believing that it works. For good insight on this view, and contrasts with Li, listen to <a href="https://podcasts.apple.com/us/podcast/geoffrey-hinton-in-conversation-with-fei-fei-li/id1524902736?i=1000672242078">Geoffrey Hinton in conversation with Fei-Fei Li</a></li>
</ul>
<p>A notable moment in the the Hinton–Li conversation comes at 1h18, where they are asked whether “we are at the point where we can say [LLMs/foundational models] have understanding and intelligence?” Hinton’s answer is at 1h30. Li responds at 1h35.</p>
<p>Also, the core of Hinton’s perspective may be this definition of education: “So the way we exchange knowledge, roughly speaking, this is something of a simplification, but I produce a sentence and you figure out what you have to change in your brain, so you might have said that, that is if you trust me.” “What I want to claim is that these millions of features and billions of interactions between features <em>are</em> understanding. … If you ask, how do we understand, this is the best model of how we understand.” (<a href="https://www.youtube.com/watch?v=N1TEjTeQeg0&amp;t=39s">“Will digital intelligence replace biological intelligence?” Romanes Lecture</a> at 14m28s )</p>
<ul>
<li><strong>Melanie Mitchell</strong> (<a href="https://en.wikipedia.org/wiki/Melanie_Mitchell">Wikipedia</a> | <a href="https://aiguide.substack.com/">Substack blog</a>) — A very hands-on research expert on AI development and benchmarking who asks hard questions. She’s the author of</li>
</ul>
<p><strong>Melanie Mitchell</strong>’s recent research has been examining the cognitive processes in LLM-based AI systems, including through experiments. In a recent talk, <a href="https://www.youtube.com/watch?v=yKbeCvOKvMc&amp;t=1749s">“Evaluating Cognitive Capacities in AI Systems”</a> at the 2025 Natural Philosophy Symposium at Johns Hopkins, she lays out this work. Mitchell argues that increasing performance by AI systems seems grounded in multiplying numbers of heuristic associations rather than the “abstract reasoning” named by the labs creating current foundation models. She and collaborators have developed experiments to confirm this, in part by demonstrating that AI model performance declines when letters are swapped out from a simple sequence task (an experiment much like the well-publicized Apple paper on distractor information interfering with reasoning). She also offers one of the clearest explanations of the ARC abstract reasoning tests and talks about how her lab has been creating simpler versions of these tests to probe just how LLMs handle abstractions, when they can.</p>
<p>On the B-side, if you will, of Mitchell’s lecture video come comments from <strong>Alison Gopnik</strong>. Her focus is reframing AI not as a self-conscious (or eventually self-conscious) reasoning technology, but rather as a novel form of social aggregation, best thought of as a successor to the library or the market, or even to the state and regulation. She argues that it’s pointless to ask who is smarter: a scientist or a library. Indeed, this is a kind of “category error” that misses the more important point: what can one, or many scientists do with a library that they couldn’t do without one? When thought of as a social aggregator that lends power to new actions, we end up a lot closer to the notion of “Intelligence Augmentation,” a converse goal to Artificial Intelligence that’s explored in <em>Possible Minds</em> and in <em>Machines of Loving Grace</em>.)</p>
<p>(For what it’s worth, I find the social aggregation metaphor to be a much clearer description of what the text tha pours out from AI chatbot firehose than the intelligent agent metaphor. It explains how fully formed units of code that appeared elsewhere sometimes show up, and how interpolated summary segments also show up. As Melanie Mitchell writes elsewhere, and I’m paraphrasing here, “like Soylent Green, AI is people.”)</p>
</section>
<section id="visions-of-ai-entrepreneurs-and-business-leaders" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="visions-of-ai-entrepreneurs-and-business-leaders">Visions of AI entrepreneurs and business leaders</h2>
<ul>
<li><p><strong>Mustafa Suleyman</strong>, CEO of Microsoft AI, <a href="https://www.youtube.com/watch?v=KKNCiRWd_j0">His talk, “What Is an AI Anyway?,” characterizes AI as “a new digital species”</a></p></li>
<li><p><strong>Dario Amodei</strong>, CEO of Anthropic. February <a href="https://www.nytimes.com/2025/02/28/podcasts/hardfork-anthropic-dario-amodei.html">interview on Hard Fork</a>. November <a href="https://www.nytimes.com/2025/12/07/business/dealbook/dario-amodei-dealbook.html">appearance on NYT DealBook</a> (<a href="https://www.youtube.com/watch?v=FEj7wAjwQIk">video</a>). In essence, Amodei who has <a href="https://www.darioamodei.com/essay/machines-of-loving-grace">prophesied the near-term arrival of AGI</a> continues to believe that scaling up LLMs is the way to get there.</p></li>
<li><p><strong>Sam Altman</strong>, CEO of OpenAI: Instead of listening to Sam Altman, let me suggest reading one of the two up-close books on Altman and OpenAI’s rise published this year: Karen Hao’s <em>Empire of AI</em><span class="citation" data-cites="haoEmpireAIDreams2025"><sup>6</sup></span> which describes the AI industry as not just about its product, but about the acquisition of creative labor (through training data) and coordination of human labor and energy (through its overseas workforce and data centers) in ways that echo colonial enterprises. Keach Hagey’s <em>The Optimist: Sam Altman, OpenAI, and the Race to Invent the Future</em><span class="citation" data-cites="hagey2025"><sup>7</sup></span> is more, well, optimistic. As a <a href="https://www.nytimes.com/2025/05/19/books/review/empire-of-ai-karen-hao-the-optimist-keach-hagey.html">comparative review</a> put it, Hagey “stands Altman as the secular prophet preaching human progress and boundless optimism.”</p>
<p>This interview quote from Karen Hao on Altman is informative, suggesting that his ability to shift narratives makes him something of an unreliable narrator on even his own views:</p>
<blockquote class="blockquote">
<p>“He’s a once-in-a-generation fundraising talent. That is his particular skill. And he’s also a once-in-a-generation storytelling talent, which is effectively why he’s so good at fundraising. He is able to paint these extremely persuasive visions of the future. He was already prominent within Silicon Valley, and Silicon Valley very much runs on stories and telling stories about the future. And one of the things that I sort of concluded through the reporting of my book is that when he says something to someone, what he’s saying is more tightly correlated with what he thinks they need to hear than what he actually believes or the ground truth of the thing. He’s able to say the things that really provoke people to kind of rally towards a general, broad, sweeping mission that he paints.<span class="citation" data-cites="inskeepJournalistKarenHao2025"><sup>8</sup></span></p>
</blockquote></li>
</ul>
<div class="no-row-height column-margin column-container"><div id="fn6"><p><sup>6</sup>&nbsp;Karen Hao, <em>Empire of AI: Dreams and Nightmares in Sam Altman’s OpenAI</em> (Penguin Press, 2025).</p></div><div id="fn7"><p><sup>7</sup>&nbsp;Keach Hagey, <em>The optimist: Sam Altman, OpenAI, and the race to invent the future</em>, First edition (W.W. Norton &amp; Company, 2025).</p></div><div id="fn8"><p><sup>8</sup>&nbsp;Steve Inskeep, <span>“Journalist Karen Hao Discusses Her Book ’Empire of AI’,”</span> <em>NPR</em>, May 20, 2025, <a href="https://www.npr.org/2025/05/20/nx-s1-5334670/journalist-karen-hao-discusses-her-book-empire-of-ai">https://www.npr.org/2025/05/20/nx-s1-5334670/journalist-karen-hao-discusses-her-book-empire-of-ai</a>.</p></div><div id="fn9"><p><sup>9</sup>&nbsp;Timnit Gebru and Émile P. Torres, <span>“The TESCREAL Bundle: Eugenics and the Promise of Utopia Through Artificial General Intelligence,”</span> <em>First Monday</em>, ahead of print, April 14, 2024, <a href="https://doi.org/10.5210/fm.v29i4.13636">https://doi.org/10.5210/fm.v29i4.13636</a>.</p></div></div><p>A suprising, one could also say disturbing, share of AI visions are wrapped up in some peculiar ideas about the future that Timnit Gebru and Émile P. Torres have christened the <strong>TESCREAL bundle</strong>.<span class="citation" data-cites="gebruTESCREALBundleEugenics2024"><sup>9</sup></span> (Gebru is a Google engineer fired for her critical views. Torres is a philosopher who was once a transhumanist.)</p>
<p>The bundle consists of: “<a href="https://en.wikipedia.org/wiki/Transhumanism" title="Transhumanism">Transhumanism</a>, <a href="https://en.wikipedia.org/wiki/Extropianism" title="Extropianism">Extropianism</a>, <a href="https://en.wikipedia.org/wiki/Singularitarianism" title="Singularitarianism">Singularitarianism</a>, (modern) Cosmism, <a href="https://en.wikipedia.org/wiki/Rationalist_community" title="Rationalist community">Rationalists</a> (the internet community), <a href="https://en.wikipedia.org/wiki/Effective_Altruism" title="Effective Altruism">Effective Altruism</a>, and <a href="https://en.wikipedia.org/wiki/Longtermism" title="Longtermism">Longtermism</a>” (as summarized and linked in Wikipedia). In essence, all of these ideologies envision a future “beyond humanity” itself, though with different variations. Many argue that cultivating a distant sci-fi future into existence is a supreme ethical goal, outweighing say the ecological survival of planet Earth or the near-term wellbeing of most humans.</p>
<p>If you want a readable summary of these ideas and their influence, <em>More Everything Forever</em><span class="citation" data-cites="beckerMoreEverythingForever2025"><sup>10</sup></span> is your guided tour. Torres and comedian Kate Willett’s podcast <em>Dystopia Now</em> (<a href="https://podcasts.apple.com/us/podcast/dystopia-now/id1794217765">Apple</a> | <a href="https://open.spotify.com/show/1buHPmi0O4OHKI4vp1Kmpn">Spotify</a>) is a regular look at this world.</p>
<div class="no-row-height column-margin column-container"><div id="fn10"><p><sup>10</sup>&nbsp;Adam Becker, <em>More Everything Forever: AI Overlords, Space Empires, and Silicon Valley’s Crusade to Control the Fate of Humanity</em> (Basic Books, 2025).</p></div></div></section>
<section id="limitations-of-implementing-ai-in-workplace-settings" class="level2">
<h2 class="anchored" data-anchor-id="limitations-of-implementing-ai-in-workplace-settings">Limitations of implementing AI in workplace settings</h2>
<p>Upwork <a href="https://www.upwork.com/research/ai-enhanced-work-models">research</a> “surveying 2,500 global C-suite executives, full-time employees, and freelancers in the U.S., UK, Australia, and Canada”:</p>
<blockquote class="blockquote">
<p>The majority of AI use appears to be emerging bottoms up, with workers leading the charge. Now, leaders are eager to channel this enthusiasm. Among the increased demands executives have placed on workers in the past year, requesting they use AI tools to increase their output tops the list (37%). Already 39% of companies require employees to use AI tools, with an additional 46% encouraging employees to use the tools without mandating that they do so.</p>
</blockquote>
<blockquote class="blockquote">
<p>However, this new technology has not yet fully delivered on this productivity promise: Nearly half (47%) of employees using AI say they have no idea how to achieve the productivity gains their employers expect, and <strong>77% say these tools have actually decreased their productivity</strong> and added to their workload.</p>
</blockquote>
<blockquote class="blockquote">
<p>For example, survey respondents reported that they’re spending more time reviewing or moderating AI-generated content (39%), invest more time learning to use these tools (23%), and are now being asked to do more work (21%).</p>
</blockquote>
<p><a href="https://x.com/mayowaoshin/status/1833557628401627245?s=61"><strong>Technology author Mayo Olshin</strong></a>: “If however, you simply”trust” the Al outputs due to lack of knowledge, skill, or willingness to review results, the long term damage will outweigh the initial productivity gains you got so “hyped” about.” A <a href="https://mastodon.online/@david_chisnall@infosec.exchange/113690087176624006">similar experience from <strong>David Chisnall</strong> on CoPilot</a>: “It has cost me more time than it has saved.”</p>
</section>
<section id="recent-books" class="level2">
<h2 class="anchored" data-anchor-id="recent-books">Recent books</h2>
<p>Many of the perspectives described above have been articulated into <strong>new books</strong> published in the past year or so including:</p>
<ul>
<li>Becker, Adam. <em>More Everything Forever: AI Overlords, Space Empires, and Silicon Valley’s Crusade to Control the Fate of Humanity</em>. Basic Books, 2025.</li>
<li>Bender, Emily M., and Alex Hanna. <em>The AI Con: How to Fight Big Tech’s Hype and Create the Future We Want – Exposing Surveillance Capitalism and Artificial Intelligence Myths in Information Technology Today</em>. Harper, 2025.</li>
<li>Hao, Karen. <em>Empire of AI: Dreams and Nightmares in Sam Altman’s OpenAI</em>. Penguin Press, 2025.</li>
<li>Marcus, Gary F. <em>Taming Silicon Valley: How We Can Ensure That AI Works for Us</em>. The MIT Press, 2024.</li>
</ul>


</section>


 ]]></description>
  <guid>https://carwilb.github.io/posts/ai-links.html</guid>
  <pubDate>Fri, 26 Dec 2025 06:00:00 GMT</pubDate>
</item>
<item>
  <title>The Palestine Archipelago</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/posts/palestine-archipelago.html</link>
  <description><![CDATA[ 





<section id="the-fragmentary-reality-of-palestinian-territory" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="the-fragmentary-reality-of-palestinian-territory">The fragmentary reality of Palestinian territory</h2>
<p>This year marks the 30th anniversary of the designation of Area C (<a href="https://en.wikipedia.org/wiki/Area_C">Wikipedia</a>), the 62% of the occupied West Bank that Israel kept exclusive control over under the Oslo Accords. That thirty year span is longer than the 28 years of Israeli military occupation of the West Bank that preceded it, longer than the 22 years of Jordanian rule before that, and longer than the 28 years of British Mandate administration before that. Promised as a transitional stage, in which the land would be “gradually transferred to Palestinian jurisdiction,” Israeli rule over Area C is as close to permanent as any form of rule in modern Palestine.</p>
<p>In 2009, French cartographer Julien Bousac created a striking visualization of the fragmentation imposed by Area C and the continuing occupation of Palestinian territory. That map imagined Israeli controlled areas parts of a sea, inaccessible to Palestinians and posing fundamental challenges both to movement within their country and to any independent future.</p>
<p>I share it here as a starting point for envisioning Palestinian reality before the 2023 Gaza war.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><a href="../images/palestine/Archipel_Etat_de_Palestine_Julien_Bousac.jpg"><img src="https://carwilb.github.io/images/palestine/Archipel_Etat_de_Palestine_Julien_Bousac.jpg" class="img-fluid figure-img"></a></p>
<figcaption>The Archipelago-State of Palestine, map art by Julien Bousac</figcaption>
</figure>
</div>



<div class="no-row-height column-margin column-container"><div class="">
<table class="caption-top table">
<colgroup>
<col style="width: 55%">
<col style="width: 44%">
</colgroup>
<thead>
<tr class="header">
<th style="text-align: center;">Symbol</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: center;"><img src="https://carwilb.github.io/images/swatch-green.svg" class="img-fluid"></td>
<td style="text-align: left;">Partially autonomous Palestinian zone</td>
</tr>
<tr class="even">
<td style="text-align: center;"><img src="https://carwilb.github.io/images/swatch-yellow.svg" class="img-fluid"></td>
<td style="text-align: left;">Autonomous Palestinian zone</td>
</tr>
<tr class="odd">
<td style="text-align: center;"><img src="https://carwilb.github.io/images/swatch-orange.svg" class="img-fluid"></td>
<td style="text-align: left;">Urban area</td>
</tr>
<tr class="even">
<td style="text-align: center;"><img src="https://carwilb.github.io/images/swatch-settlement.svg" class="img-fluid"></td>
<td style="text-align: left;">Israeli settlement</td>
</tr>
<tr class="odd">
<td style="text-align: center;"><strong>Ramallah</strong></td>
<td style="text-align: left;">Capital</td>
</tr>
<tr class="even">
<td style="text-align: center;"><strong>Jéricho</strong></td>
<td style="text-align: left;">District capital</td>
</tr>
<tr class="odd">
<td style="text-align: center;">Jayyus</td>
<td style="text-align: left;">Secondary town</td>
</tr>
<tr class="even">
<td style="text-align: center;"><img src="https://carwilb.github.io/images/line-road.svg" class="img-fluid"></td>
<td style="text-align: left;">Main road</td>
</tr>
<tr class="odd">
<td style="text-align: center;"><img src="https://carwilb.github.io/images/line-maritime.svg" class="img-fluid"></td>
<td style="text-align: left;">Maritime link / Ferry route</td>
</tr>
<tr class="even">
<td style="text-align: center;"><img src="https://carwilb.github.io/images/icon-palmtree-ciker-08.jpg" height="18"></td>
<td style="text-align: left;">Protected coast</td>
</tr>
<tr class="odd">
<td style="text-align: center;">⛺</td>
<td style="text-align: left;">Camping</td>
</tr>
<tr class="even">
<td style="text-align: center;">🏛️</td>
<td style="text-align: left;">Historical site</td>
</tr>
<tr class="odd">
<td style="text-align: center;">🏊</td>
<td style="text-align: left;">Beach</td>
</tr>
<tr class="even">
<td style="text-align: center;">🏄</td>
<td style="text-align: left;">Nautical base / Water sports</td>
</tr>
<tr class="odd">
<td style="text-align: center;">⚓</td>
<td style="text-align: left;">Marina</td>
</tr>
<tr class="even">
<td style="text-align: center;"><img src="https://carwilb.github.io/images/icon-battleship.jpg" height="18"></td>
<td style="text-align: left;">Zone under surveillance</td>
</tr>
</tbody>
</table>
</div></div></section>

 ]]></description>
  <guid>https://carwilb.github.io/posts/palestine-archipelago.html</guid>
  <pubDate>Tue, 09 Dec 2025 06:00:00 GMT</pubDate>
</item>
<item>
  <title>Anthropological grounds for a “revolution in kinship”</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/teaching/history-anthro-w14.html</link>
  <description><![CDATA[ 





<p>For our final week together, we will be reading <strong>Gayle Rubin’s article “The Traffic in Women,”</strong> which offers a sophisticated analysis of the interconnection between social taboos, gender identity development, and compulsory heterosexuality, knitting these forces together into a composite “sex/gender system.” Drawing on but greatly extending prior Marxist work on kinship, Rubin proposes that this system functions prior to and alongside the economic sphere investigated by Marx and Engels. Like the economy, the sex/gender system can take multiple shapes over time, with collective action capable of overthrowing one system and instituting another. Rubin suggests (with some ambivalence) the term “patriarchy” to refer to the current dominant mode of the sex/gender system and urges that “Feminism must call for a revolution in kinship” (199).</p>
<p>In Rubin’s telling, gendered behavior, personalities, and marriage behaviors are all integrally related. The social drama of lineages exchanging women, suggested in Mauss’s <em>The Gift</em> and elaborated in Lévi-Strauss’ <em>Elementary Structures of Kinship</em>,<span class="citation" data-cites="lévi-strauss1969">,<sup>1</sup></span> is at the heart of this story and the (de)formation of personalities into gendered expression is in in service of the exchange. Through gendered socialization, as explored by Mead (though “Traffic” doesn’t mention her directly), de Beauvoir, and (sometimes in faltering way) Freudian psychoanalytic perspectives on gender, women are transformed into give-able social objects.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;Claude Lévi-Strauss, <em>The Elementary Structures of Kinship</em>, Rev. ed. (Beacon Press, 1969).</p></div></div><blockquote class="blockquote">
<p>The division of labor by sex can therefore be seen as a “taboo”: a taboo against the sameness of men and women, a taboo dividing the sexes into two mutually exclusive categories, a taboo which exacerbates the biological differences between the sexes and thereby <em>creates</em> gender. The division of labor can also be seen as a taboo against sexual arrangements other than those containing at least one man and one woman, thereby enjoining heterosexual marriage.</p>
</blockquote>
<p>Following Freud’s theory of infantile sexuality as polymorphous, perverse, and un-differentiated by sex, Rubin narrates the imposition of sex-based personalities as a traumatic imposition (a “straightjacket,” she writes) on both genders. The transformation of this system she envisages would</p>
<blockquote class="blockquote">
<p>provide[] us with the opportunity to seize control of the means of sexuality, reproduction, and socialization, and to make conscious decisions to liberate human sexual life from the archic relationsh1pws which deform it. Ultimately, a thorough- going feminist revolution would liberate more than women. It would liberate forms of sexual expression, and it would liberate human personality from the straightjacket of gender.</p>
</blockquote>
<p>There are solid Wikipedia articles on <a href="https://en.wikipedia.org/wiki/Gayle_Rubin">Gayle Rubin</a> herself and on <a href="https://en.wikipedia.org/wiki/The_Traffic_in_Women:_Notes_on_the_Political_Economy_of_Sex">“The Traffic in Women.”</a> Finally, Rubin offers an especially rich reflection on her writing in a 1994 interview with Judith Butler.<span class="citation" data-cites="rubin1994"><sup>2</sup></span></p>
<div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;Gayle Rubin and Judith Butler, <span>“Interview: Sexual Traffic,”</span> <em>Differences: A Journal of Feminist Cultural Studies</em> 6, nos. 2-3 (1994): 62–99.</p></div></div><section id="theoretical-influences" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="theoretical-influences">Theoretical Influences</h2>

<div class="no-row-height column-margin column-container"><div class="">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/anthro/rubin-traffic-kinship-diagram.jpg" class="img-fluid figure-img"></p>
<figcaption>A kinship diagram of theoretical influences on Gayle Rubin’s “The Traffic in Women”</figcaption>
</figure>
</div>
</div></div><p>Rubin draws on a truly remarkable number of theoretical referents, making “The Traffic in Women” into something of a theoretical crossroads. On the one hand, we have been tracing our way along many of these pathways, making us especially well-informed readers of this piece. On the other hand, there will be other threads that are unfamiliar. Don’t worry about just trusting Rubin’s account of these sources.</p>
<p>Nevertheless, if you want to follow some of these pathways yourself, here are some resources.</p>
<section id="the-oedipus-complex" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="the-oedipus-complex">The Oedipus Complex</h3>

<div class="no-row-height column-margin column-container"><div class="">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/anthro/Oedipus-Title-Card.png" class="img-fluid figure-img"></p>
<figcaption>“The Oedipus Complex” by Freud Museum London: The key thing to remember is it’s complex; it’s not an Oedipus simplex</figcaption>
</figure>
</div>
</div></div><p>A just-enough <a href="https://youtu.be/G7zZPrY8tGs?si=eDgTITJKAaVIpL-V">video introduction to the Oedipus Complex</a> from the Freud Museum London. The core takeaways are these: 1. While the existence of an Oedipal drama within every household may seem far-fetched, it is primarily a language for talking about permitted and forbidden attachment to parental figures; 2. Freudian theory posits that learning the social limits on one’s sexuality happens simultaneously with learning one’s gender identity; and 3. learning proper identity is a complex process that runs differently in each individual.</p>
<p>A more complete walk-through of Freud’s theory of psychosexual development is in <a href="freud-introductory-lectures-on-psychoanalysis-21.pdf">Lecture XXI</a> of <em>Introductory Lectures on Psychoanalysis</em>.<span class="citation" data-cites="freudIntroductoryLecturesPsychoanalysis1977"><sup>3</sup></span> Here is how #3 above is framed there:</p>
<div class="no-row-height column-margin column-container"><div id="fn3"><p><sup>3</sup>&nbsp;Sigmund Freud, <em>Introductory lectures on psychoanalysis</em> (Norton, 1977).</p></div></div><div class="page-columns page-full"><blockquote class="blockquote">
<p>From this time onwards, the human individual has to devote himself to the great task of detaching himself from his parents, and not until that task is achieved can he cease to be a child and become a member of the social community. … These tasks are set to everyone; and it is remarkable how seldom they are dealt with in an ideal manner - that is, in one which is correct both psychologically and socially.<span class="citation" data-cites="freudIntroductoryLecturesPsychoanalysis1977"><sup>4</sup></span></p>
</blockquote><div class="no-row-height column-margin column-container"><div id="fn4"><p><sup>4</sup>&nbsp;Freud, <em>Introductory lectures on psychoanalysis</em>, 380–81.</p></div></div></div>
</section>
<section id="freud-lévi-strauss-and-lacan-on-the-incest-prohibition-and-the-law" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="freud-lévi-strauss-and-lacan-on-the-incest-prohibition-and-the-law">Freud, Lévi-Strauss, and Lacan on the Incest Prohibition and the Law</h3>
<p>In <em>Totem and Taboo</em>,<span class="citation" data-cites="sigmundfreudTotemTaboo"><sup>5</sup></span> Freud describes the incest taboo as a historical event that helped to define civilization itself. In this book we find Freud engaging in armchair anthroplogy, and a version in which “savagery”, childhood, and neuroses all serve as analogues for one another. The individual Oedipal drama has a collective counterpart: the desire of the primal male horde to murder the tribal leader who monopolized women in the hypothetical community. The prohibition this murder is accomplished through instituting both law and religion. Here is <a href="https://parallaxisview.wordpress.com/2018/03/14/freud-on-religion-in-the-beginning-was-the-murder/">a brief narration of that drama</a>.</p>
<div class="no-row-height column-margin column-container"><div id="fn5"><p><sup>5</sup>&nbsp;Sigmund Freud, <em>Totem and <span>Taboo</span></em> (Moffat, Yard, 1918), <a href="http://archive.org/details/freud-1918-totem-and-taboo">http://archive.org/details/freud-1918-totem-and-taboo</a>.</p></div></div><p>Lévi-Strauss takes up this Freudian story in <em>Elementary Structures</em>, but is emphatic that it is ahistorical. Instead the incest taboo itself becomes the necessary equivalent of any (and not just “civilized”) society. Lévi-Strauss’ enngament with Freud comes in Chapter XXIX.</p>
<p>Meanwhile Lacan expands on the theme of the Law having its origin in the moment of Oedipal prohibition, or equivalently in the moment of encountering sex-linked expectations on one’s behavior: “The primordial Law is therefore that which in regulating marriage ties superimposes the kingdom of culture on that of a nature abandoned to the law of mating.”<span class="citation" data-cites="lacanFunctionFieldSpeech2001"><sup>6</sup></span> Much of what is often attributed to Lacan is present in the original writings by Freud and Daniel Hourigan does the deep dive on these themes.<span class="citation" data-cites="hourigan2024"><sup>7</sup></span></p>
<div class="no-row-height column-margin column-container"><div id="fn6"><p><sup>6</sup>&nbsp;Jacques Lacan, Alan Sheridan, and Malcolm Bowie, <em>The Function and Field of Speech and Language in Psychoanalysis</em> (Routledge, 2001), 73.</p></div><div id="fn7"><p><sup>7</sup>&nbsp;Daniel Hourigan, <span>“Law on the Other Side of Oedipus: Freud and Lacan on Law and Self-Formation,”</span> <em>Law, Culture and the Humanities</em>, April 24, 2024, 17438721241234195, <a href="https://doi.org/10.1177/17438721241234195">https://doi.org/10.1177/17438721241234195</a>.</p></div></div></section>
<section id="structures-of-kinship" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="structures-of-kinship">Structures of Kinship</h3>
<p><em>This section is repeated from Week 12.</em></p>

<div class="no-row-height column-margin column-container"><div class="margin-aside">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/anthro/levi-strauss-elementary-structures-fig3.png" class="img-fluid figure-img"></p>
<figcaption>“Although less important than those associated with funerals, the astonishing complexity of the matrimonial exchanges illustrated in Fig. 3 deserves to engage our attention.”</figcaption>
</figure>
</div>
</div><div id="fn8"><p><sup>8</sup>&nbsp;Lévi-Strauss, <em>The Elementary Structures of Kinship</em>.</p></div></div><p>In <em>Elementary Structures of Kinship</em>,<span class="citation" data-cites="lévi-strauss1969"><sup>8</sup></span> Claude Lévi-Strauss proposes a structuralist explanation for the circulation of spouses mentioned in Mauss’s <em>The Gift</em>. The core insight of the book is to unite the near-universal taboo on incest (in some form) with the complex kinship structures that anthropologists had been mapping since at least Lewis Henry Morgan. (Like Douglas, he rejects the functionalist explanation that incest taboos prevent interbreeding.)</p>
<p>Lévi-Strauss argues that by separating marriageable from un-marriageable individuals, kinship systems generate the necessary boundaries for lineages that are the collective social actors which exchange spouses—glossed in his account, as in Mauss’s brief phrase, exclusively as women.</p>
<p>Gayle Rubin will build upon <em>Elementary Structures of Kinship</em> in her pivotal essay “The Traffic in Women,”<span class="citation" data-cites="rubin1975"><sup>9</sup></span> which theorizes kinship and gender systems as integrated whole, subject to historical change, and as systems of power.</p>
<div class="no-row-height column-margin column-container"><div id="fn9"><p><sup>9</sup>&nbsp;Gayle Rubin, <em>The Traffic in Women: Towards a Political Economy of Sex</em>, ed. Rayna Reiterc (Monthly Review Press, 1975).</p></div></div><blockquote class="blockquote">
<p>And if men have been sexual subjects—exchangers—and women sexual semi-objects—gifts—for much of human history, then a great many customs, clichés, and personality traits seem to make a great deal of sense (among others, the curious custom by which a father gives away a bride).</p>
</blockquote>
<p>This essay proves foundational to Gender Studies. Both Rubin and Judith Butler will bring vast inquiries into gender, the body, and sexuality into dialogue with Lévi-Strauss’ account.</p>


</section>
</section>


 ]]></description>
  <guid>https://carwilb.github.io/teaching/history-anthro-w14.html</guid>
  <pubDate>Mon, 24 Nov 2025 06:00:00 GMT</pubDate>
</item>
<item>
  <title>Gifts, Boundaries, and Taboos</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/teaching/history-anthro-w12.html</link>
  <description><![CDATA[ 





<section id="the-gift" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="the-gift">The Gift</h3>
<p>Marcel Mauss wrote <em>Essai sur le don</em> (<em>Essay on the Gift</em>) as the main work of <em>L’Année Sociologique</em> of 1923/24. This brief, comparative work is his best known contribution to anthropology and one of the most widely cited anthropological works. As editor of the journal, co-author of multiple works, and as chair of Sociology at the College de France, was key to the growth of social anthropology in France. (And is even credited by Claude Lévi-Strauss with importing the term social anthropology into France.<span class="citation" data-cites="levi-strauss1966"><sup>1</sup></span>)</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;Claude Levi-Strauss, <span>“The Scope of Anthropology,”</span> <em>Current Anthropology</em> 7, no. 2 (1966): 112–23, <a href="http://www.jstor.org/stable/2740021">http://www.jstor.org/stable/2740021</a>.</p></div></div><p>Mauss’s essay reoriented the anthropological study of the circulation of goods, intangible offerings, services, and honors in multiple ways. It widened the scope of “stuff” considered possible to exchange, sets up social collectivities (and also deities) rather than individuals as the participants in these exchanges, recognizes that that which is exchanged is charged with spiritual power, explains that this system morally demands reciprocity, and argues that such reciprocity is the foundation of social relations.</p>
<div class="page-columns page-full"><blockquote class="blockquote">
<p>All these institutions reveal the same kind of social and! psychological pattern. Food, women, children, possessions, charms, land, labour, services, religious offices, rank—every- thing is stuff to be given away and repaid. In perpetual interchange of what we may call spiritual matter, comprising men and things, these elements pass and repass between clans ^and individuals, ranks, sexes and generations.<span class="citation" data-cites="maussGiftFormsFunctions1954"><sup>2</sup></span></p>
</blockquote><div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;Marcel Mauss, <em>The Gift; Forms and Functions of Exchange in Archaic Societies.</em>, trans. Ian Cunnison and E. E. Evans-Pritchard (Free Press, 1954), 11–12.</p></div></div></div>
<p>The essay appears within a journal (<em>L’Année Sociologique</em>) that Mauss was resurrecting following World War I and the death of both his uncle and mentor Émile Durkheim and many of his scholarly peers. The entire issue is included in the 2016 translation by Jane Guyer, published by the anthropological collective Hau, which in turn owes its name to the Polynesian concept as explored in the essay.</p>
<p>Specifically Māori culture occupies a turning point in the essay, one partly grounded on misinterpretation between anthropologist Elsdon Best and Māori informant and scholarl Tamati Ranapati. Georgina Stewart has critically examined the relationship and the multiple points of cultural communication, miscommunication, and supposition that culminate in “the hau of the gift” as conceptualized by Mauss.</p>
<blockquote class="blockquote">
<p>Ranapiri was inventing Māori academic writing as he wrote: writing about and in language that hitherto had existed only in oral registers. Other than Ranapiri, only one other scholar of Māori ethnicity, namely Biggs, appears in the history of debate about the hau of the gift.</p>
</blockquote>
<div class="page-columns page-full"><blockquote class="blockquote">
<p>Mauss failed to account for the personified Māori cosmos, and ended up invalidly personifying ‘hau’ instead, in his delineation of ‘hau taonga’ as the ‘hau of the gift’—the ‘spirit’ of the object given. In this way, Mauss distorted the Māori concept of hau to serve his preconceived search for universal social truth, and a general theory of exchange.<span class="citation" data-cites="stewartHauofResearchMauss2017"><sup>3</sup></span></p>
</blockquote><div class="no-row-height column-margin column-container"><div id="fn3"><p><sup>3</sup>&nbsp;Georgina Stewart, <span>“The <span>‘</span>Hau<span>’</span>of Research: Mauss Meets Kaupapa m<span>ā</span>ori,”</span> <em>Journal of World Philosophies</em> 2, no. 1 (2017), <a href="https://scholarworks.iu.edu/iupjournals/index.php/jwp/article/view/917">https://scholarworks.iu.edu/iupjournals/index.php/jwp/article/view/917</a>.</p></div></div></div>
<p>Amber Nicholson likewise explores the Māori concept of hau in depth using numerous Māori sources.<span class="citation" data-cites="nicholson2019"><sup>4</sup></span> In my view, this rich exposition breaks with some anthropological elaborations on the term (which Nicholson maps out in a dramatic side-by-side table with Māori ideas), but still resonates with the concepts of spiritual force, reciprocity, and enmeshment in larger entities emphasized by Mauss.</p>
<div class="no-row-height column-margin column-container"><div id="fn4"><p><sup>4</sup>&nbsp;Amber Nicholson, <span>“Hau: Giving Voices to the Ancestors,”</span> <em>The Journal of the Polynesian Society</em> 128, no. 2 (2019): 137–62, <a href="https://www.jstor.org/stable/26857338">https://www.jstor.org/stable/26857338</a>.</p></div></div><p>There have been three English translations of The Gift:</p>
<ul>
<li><p>A 1954 translation by Ian Cunnison, introduced by E. E. Evans-Pritchard.<span class="citation" data-cites="maussGiftFormsFunctions1954"><sup>5</sup></span></p></li>
<li><p>A 1990 translation by W. D. Halls, introduced by Mary Douglas.<span class="citation" data-cites="mauss2002"><sup>6</sup></span></p></li>
<li><p>A 2016 translation by Jane I. Guyer, introduced by Guyer and Bill Maurer.<span class="citation" data-cites="mauss2016"><sup>7</sup></span></p></li>
</ul>
<div class="no-row-height column-margin column-container"><div id="fn5"><p><sup>5</sup>&nbsp;Mauss, <em>The Gift; Forms and Functions of Exchange in Archaic Societies.</em></p></div><div id="fn6"><p><sup>6</sup>&nbsp;Marcel Mauss, <em>The gift: the form and reason for exchange in archaic societies</em>, Routledge classics (Routledge, 2002).</p></div><div id="fn7"><p><sup>7</sup>&nbsp;Marcel Mauss, <em>The gift: Expanded edition</em>, Expanded edition. (HAU Books, 2016).</p></div></div><p>The Gift is written in the tradition of an open-ended essay, and draws many threads across a remarkable sweep of time and geography. This comment from Claude Lévi-Strauss emphasizes the creative and connective, rather than scientific and deductive aspect of such writing:</p>
<div class="page-columns page-full"><blockquote class="blockquote">
<p>Without a doubt, the proof will remain largely illusory: we will never know if the other, with whom we cannot, after all, identify, makes from the elements of his social existence a synthesis exactly superposable on that which we have worked out. But it is not necessary to go so far; all that is needed-and for this, inner feeling is sufficient-is that the synthesis, how- ever approximate, arises from human experience. We must be sure of this, since we study men; and as we are ourselves men, we have that possibility. The way in which Mauss (1950:285) poses and resolves the problem in the <em>Essay on the Gift</em> brings to view, in the intersection of two subjectivities, the nearest order of truth to which the sciences of man can aspire when they confront the wholeness of their object.<span class="citation" data-cites="levi-strauss1966"><sup>8</sup></span></p>
</blockquote><div class="no-row-height column-margin column-container"><div id="fn8"><p><sup>8</sup>&nbsp;Levi-Strauss, <span>“The Scope of Anthropology,”</span> 114.</p></div></div></div>
<p>With that said, The Gift attacks and perhaps overthrows many prior certainties in anthropological studies of the economy, not least of which is the refutation of the existence of a “free gift,” as highlighted in Mary Douglas’s introduction. Think about which ones you find.</p>
</section>
<section id="on-boundaries-purity-and-danger" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="on-boundaries-purity-and-danger">On Boundaries: <em>Purity and Danger</em></h3>
<p>Mary Douglas’s <em>Purity and Danger: An Analysis of Concepts of Pollution and Taboo</em><span class="citation" data-cites="douglas1966"><sup>9</sup></span> stands as a historical landmark in the anthropology of religion.</p>
<div class="no-row-height column-margin column-container"><div id="fn9"><p><sup>9</sup>&nbsp;Mary Douglas, <em>Purity and Danger: An analysis of concept of pollution and taboo</em>, 1st ed. (Routledge, 1966), <a href="https://doi.org/10.4324/9780203361832">https://doi.org/10.4324/9780203361832</a>.</p></div></div><div class="page-columns page-full"><p>A signature phrase in it is “matter out of place,” Douglas’ definition of the otherwise form-shifting concept of dirt. She sets up categorization and boundary drawing as a core element of religion. Given this, one need not think of the Kosher laws in Leviticus as primitive hygenic codes, nor of magical incantations as ways of causing miracles.  Rather, she argues, both express ritual concern with maintaining social order.</p><div class="no-row-height column-margin column-container"><span class="margin-aside">Douglas revises her specific interpretations of Kosher practices in her 2002 introduction.<span class="citation" data-cites="douglas2003"><sup>10</sup></span></span></div><div class="no-row-height column-margin column-container"><div id="fn10"><p><sup>10</sup>&nbsp;Mary Douglas, <em>Purity and Danger: An Analysis of Concept of Pollution and Taboo</em> (Routledge, 2003), <a href="http://www.dawsonera.com/depp/reader/protected/external/AbstractView/S9780203361832">http://www.dawsonera.com/depp/reader/protected/external/AbstractView/S9780203361832</a>.</p></div></div></div>
<blockquote class="blockquote">
<p>It is only by exaggerating the difference between within and without,<br> above and below,<br> male and female,<br> with and against,<br> that a semblance of order is created.</p>
</blockquote>
<p>Her chapter on magic and religion confronts and challenges the line of anthropological scholarship on “primitive religion” going back to James Frazer’s <em>The Golden Bough</em>.</p>
</section>
<section id="structures-of-kinship" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="structures-of-kinship">Structures of Kinship</h3>

<div class="no-row-height column-margin column-container"><div class="margin-aside">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/anthro/levi-strauss-elementary-structures-fig3.png" class="img-fluid figure-img"></p>
<figcaption>“Although less important than those associated with funerals, the astonishing complexity of the matrimonial exchanges illustrated in Fig. 3 deserves to engage our attention.”</figcaption>
</figure>
</div>
</div><div id="fn11"><p><sup>11</sup>&nbsp;Claude Lévi-Strauss, <em>The Elementary Structures of Kinship</em>, Rev. ed. (Beacon Press, 1969).</p></div></div><p>In <em>Elementary Structures of Kinship</em>,<span class="citation" data-cites="lévi-strauss1969"><sup>11</sup></span> Claude Lévi-Strauss proposes a structuralist explanation for the circulation of spouses mentioned in Mauss’s <em>The Gift</em>. The core insight of the book is to unite the near-universal taboo on incest (in some form) with the complex kinship structures that anthropologists had been mapping since at least Lewis Henry Morgan. (Like Douglas, he rejects the functionalist explanation that incest taboos prevent interbreeding.)</p>
<p>Lévi-Strauss argues that by separating marriageable from un-marriageable individuals, kinship systems generate the necessary boundaries for lineages that are the collective social actors which exchange spouses—glossed in his account, as in Mauss’s brief phrase, exclusively as women.</p>
<p>Gayle Rubin will build upon <em>Elementary Structures of Kinship</em> in her pivotal essay “The Traffic in Women,”<span class="citation" data-cites="rubin1975"><sup>12</sup></span> which theorizes kinship and gender systems as integrated whole, subject to historical change, and as systems of power.</p>
<div class="no-row-height column-margin column-container"><div id="fn12"><p><sup>12</sup>&nbsp;Gayle Rubin, <em>The Traffic in Women: Towards a Political Economy of Sex</em>, ed. Rayna Reiterc (Monthly Review Press, 1975).</p></div></div><blockquote class="blockquote">
<p>And if men have been sexual subjects—exchangers—and women sexual semi-objects—gifts—for much of human history, then a great many customs, clichés, and personality traits seem to make a great deal of sense (among others, the curious custom by which a father gives away a bride).</p>
</blockquote>
<p>This essay proves foundational to Gender Studies. Both Rubin and Judith Butler will bring vast inquiries into gender, the body, and sexuality into dialogue with Lévi-Strauss’ account.</p>


</section>


 ]]></description>
  <guid>https://carwilb.github.io/teaching/history-anthro-w12.html</guid>
  <pubDate>Tue, 04 Nov 2025 06:00:00 GMT</pubDate>
</item>
<item>
  <title>Landmarks in conceptualizing the ethnographic field by Malinowski and Gluckman</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/teaching/history-anthro-w10.html</link>
  <description><![CDATA[ 





<p>The two ethnographic works we’re reading this week are Bronislaw Malinowski’s <em>Argonauts of the Western Pacific</em> (1922) and Max Gluckman’s article “Analysis of a Social Situation in Modern Zululand” (widely known as “The Bridge,” 1940). The two works make foundational methodological claims for how to do ethnography, but their foci are sharply different. Malinowski’s Argonauts would become a canonical text for fieldwork through participant observation, while Gluckman’s article is a landmark in the development of power-aware situational analysis.</p>
<section id="malinowskis-argonauts-of-the-western-pacific" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="malinowskis-argonauts-of-the-western-pacific">Malinowski’s <em>Argonauts of the Western Pacific</em></h3>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/anthro/Malinowski-Argonauts-Plate1-p45.jpg" class="img-fluid figure-img"></p>
<figcaption>A photo (Plate I) from Malinowski’s <em>Argonauts of the Western Pacific</em> (1922), showing the native village as well as Malinowski’s tent</figcaption>
</figure>
</div>
<p>Bronisław Malinowski (<a href="https://en.wikipedia.org/wiki/Bronis%C5%82aw_Malinowski"><i class="fa-brands fa-wikipedia-w" aria-label="wikipedia-w"></i></a>), a native of Krakow, received his doctorate there, only turning his attention to anthropology at that time, inspired by James Frazer’s <em>The Golden Bough</em>. He worked at the London School of Ecoonomics from 1910 and late in his life at Yale University.</p>
<p>It’s difficult to underestimate either the influence of Malinowski on the traditions of anthropological fieldwork or the broad impact of his students on mid-century social anthropology, which parallels that of Boas’ students in the United States. Among his students were E. E. Evans-Pritchard, Raymond Firth, Meyer Fortes, and Edmund Leach, each noted for their contributions to mid-century anthropological theory. Jomo Kenyatta studied social anthropology with Malinowski and crafted his essays on his Kikuyu people into the book <em>Facing Mount Kenya</em> (1938),<span class="citation" data-cites="kenyatta1953"><sup>1</sup></span> which also stands as an indictment of British colonial misunderstandings of Kenyan society. Kenyatta returned to his native land in 1947, led the Kenyan African Union, and became the first president of Kenya until his death in 1978.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;Jomo Kenyatta, <em>Facing Mount Kenya: the tribal life of the Gikuyu</em> (Secker; Warburg, 1953), <a href="https://archive.org/details/facingmountkenya0000jomo_k4y6/page/n9/mode/2up">https://archive.org/details/facingmountkenya0000jomo_k4y6/page/n9/mode/2up</a>.</p></div><div id="fn2"><p><sup>2</sup>&nbsp;Vine. Deloria, <em>Custer Died for Your Sins: An Indian Manifesto</em> (Macmillan Company, 1969), 78–100.</p></div></div><p>It’s remarkable how Malinowski’s argument for theoretically informed fieldwork in <em>Argonauts</em> is mirrored by Vine Deloria’s polemic<span class="citation" data-cites="deloria1969"><sup>2</sup></span> against anthropologists in Native American communities who are concerned with theoretical questions rather than the practical problems of their research subjects.</p>
<p>In <em>Argonauts</em>, Malinowski also outlines a three-part vision for anthropological writing and data collection: (1) systematic data on a tribe’s organization and cultural forms; (2) elegant writing on “the imponderabilia of actual life” and behavior as recorded in ethnographic diaries; and (3) a corpus of native-language statements, myths, magical formula, and narratives. These lines of evidence converge in Malinowski’s widely cited statement of purpose for ethnography:</p>
<blockquote class="blockquote">
<p>These three lines of approach lead to the final goal, of which an Ethnographer should never lose sight. This goal is, briefly, to grasp the native’s point of view, his relation to life, to realise his vision of his world. We have to study man, and we must study what concerns him most intimately, that is, the hold which life has on him. In each culture, the values are slightly different; people aspire after substance of their happiness—is, in my opinion, to miss the greatest reward different aims, follow different impulses, yearn after a different form of happiness. In each culture, we find different institutions in which man pursues his life-interest, different customs by which he satisfies his aspirations, different codes of law and morality which reward his virtues or punish his defections. To study the institutions, customs, and codes or to study the behaviour and mentality without the subjective desire of feeling by what these people live, of realising the which we can hope to obtain from the study of man.</p>
</blockquote>
</section>
<section id="gluckmans-analysis-of-a-social-situation-in-modern-zululand" class="level3 page-columns page-full">
<h3 class="anchored" data-anchor-id="gluckmans-analysis-of-a-social-situation-in-modern-zululand">Gluckman’s “Analysis of a Social Situation in Modern Zululand”</h3>
<p><img src="https://carwilb.github.io/images/anthro/Gluckman-Bridge-Plate3.png" class="img-fluid"></p>
<p>Max Gluckman (<a href="https://en.wikipedia.org/wiki/Max_Gluckman"><i class="fa-brands fa-wikipedia-w" aria-label="wikipedia-w"></i></a>) was born in Johannesburg, South Africa in 1911. Gluckman studied anthropology at the University of the Witwatersrand in Johannesburg under Winifred Hoernlé and I. Schapera. He would later describe this training as part of the “sociological stream” of anthropology, which he traced upstream to those scholar’s teacher, Alfred “A.R.” Radcliffe-Brown, and through him to Emile Durkheim.<span class="citation" data-cites="gluckman1963"><sup>3</sup></span> His doctoral work in anthropology at Oxford brought him into direct contact with Radcliffe-Brown as well as E. E. Evans-Pritchard and solidified his attachment to social anthropology as his intellectual home.</p>
<div class="no-row-height column-margin column-container"><div id="fn3"><p><sup>3</sup>&nbsp;Max Gluckman, <em>Order and Rebellion in Tribal Societies</em> (Cohen &amp; West, 1963), 2.</p></div><div id="fn4"><p><sup>4</sup>&nbsp;Gluckman Max, <em>The Kingdom of the Zulu of South Africa</em>, 1st ed. (Routledge, 1987), 2555, <a href="https://doi.org/10.4324/9781315683461-2">https://doi.org/10.4324/9781315683461-2</a>.</p></div></div><p>Gluckman traces his own intellectual biography in detail in an introductory essay to <em>Order and Rebellion in Tribal Africa</em>. After completing his doctorate, Gluckman returned to South Africa to conduct fieldwork among the Zulu people of Natal. His article written in the field, “The Kingdom of the Zulu in South Africa” considers 120 years of Zulu history from the nation’s founding by Shaka Zulu in 1818-24. The focus is within the Zulu Nation, but is on turbulent processes of political change through rebellions that nonetheless maintain the nation and its monarchy. Gluckman considers the Zulu people’s relationships to the British colonial power as part of this history.<span class="citation" data-cites="maxKingdomZuluSouth1987"><sup>4</sup></span></p>
<p>However, his article “Analysis of a Social Situation in Modern Zululand” (1940),<span class="citation" data-cites="gluckman1958"><sup>5</sup></span> commonly referred to as “The Bridge,” casts the largest shadow on broader anthropology, precisely because it re-conceptualizes the colonial society in South Africa as a single biracial society and because it introduced an approach to situational analysis that tacks betweeen specific events and the broader social structure. In effect, Gluckman imports the concept of segmentary society, previously applied to complex African polities to the colonial situation of racially stratified power in South Africa.</p>
<div class="no-row-height column-margin column-container"><div id="fn5"><p><sup>5</sup>&nbsp;Max Gluckman, <em>Analysis of a Social Situation in Modern Zululand</em> (Published on behalf of the Rhodes-Livingstone Institute by the Manchester University Press, 1958).</p></div></div><p>Gluckman’s approach shifts the framing of anthropology from “the Native” society to the social world that includes the anthropologist him or herself, the colonial government, missionaries, employers, and the entire complex power structure. At root is consideration of what we now call “his own subject position” and a kind of narration later termed “reflexivity.”</p>

<div class="no-row-height column-margin column-container"><div class="">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/anthro/Bjornskov-White-men.jpg" class="img-fluid figure-img"></p>
<figcaption>“White men in front – prepared to leave for Nongoma,” 2012 painting by Linda Bjørnskov from her solo exhibition “<a href="https://www.lindabjornskov.dk/en/the-whispering-of-max-gluckmans-bridge-paper-3/">The Whispering of Max Gluckman’s Bridge Paper</a>”</figcaption>
</figure>
</div>
</div></div><div class="page-columns page-full"><blockquote class="blockquote">
<p>Obviously many difficulties beset an anthropologist in this situation, especially if he comes to study race-relationships themselves. He cannot walk around asking about these and his presence always disturbs the people. I did not drop as an isolated individual into Zulu life, recording with superior impartiality what I observed. I came as a White – and the Zulu had to fit me in as an eccentric and highly suspect member of the dominant White group. As a White, I was a “chief” and that created about me latent political power. I early became conscious of attempts by the Zulu to use me for their own advantage and to play me against both Black and White personalities. … My later data on general White-Zulu relationships shows that what happened to me was not the unique result of my character and views, though it was affected by these, but crystallized the form of Zululand social structure itself. — Max Gluckman, “Conflict and Cohesion in Zululand: An Historical Study in Social Organization,” unpublished manuscript written c.&nbsp;1946.<span class="citation" data-cites="gordon2014"><sup>6</sup></span></p>
</blockquote><div class="no-row-height column-margin column-container"><div id="fn6"><p><sup>6</sup>&nbsp;Robert J. Gordon and H. Max Gluckman, <span>“On Burning One<span>’</span>s Bridge: The Context of Gluckman<span>’</span>s Zulu Fieldwork: With the Previously Unpublished Chapter <span>“</span>the Research Situation<span>”</span> (Circa 1946),”</span> <em>History in Africa</em> 41 (2014): 183, <a href="https://www.jstor.org/stable/26362088">https://www.jstor.org/stable/26362088</a>.</p></div></div></div>
<p>Some amazing context for Max Gluckman’s “The Bridge” article is offered in Robert Gordon’s “On Burning One’s Bridge: The Context of Gluckman’s Zulu Fieldwork,”<span class="citation" data-cites="gordon2014"><sup>7</sup></span> to which is appended Gluckman’s unpublished note that is quoted above. Here is its suggestive abstract:</p>
<div class="no-row-height column-margin column-container"><div id="fn7"><p><sup>7</sup>&nbsp;Gordon and Gluckman, <span>“On Burning One<span>’</span>s Bridge.”</span></p></div></div><blockquote class="blockquote">
<p><strong>Abstract:</strong> Gluckman’s 1940 essay “An Analysis of a Social Situation in Modern Zululand” (aka as “The Bridge”) is widely acknowledged as one of the most influ- ential in social anthropology for signalling a paradigm shift. This paper publishes a chapter of a previously unpublished, undated manuscript by Gluckman – probably from 1946 – describing how he did fieldwork in Zululand. A contextualizing essay discusses why Gluckman went to Zululand, what his preparations were, how he famously got “banned,” the role of the regent and the native commissioners in orchestrating this, and how local anti-semitism also played its part. It also suggests that his “banning,” coupled to his marriage in 1939 to Mary Brignoli, a member of the communist party, were crucial factors leading to this paradigm change. Finally, the afterlife of “The Bridge” is sketched showing how dismal was its original reception among peers and colleagues.</p>
</blockquote>


</section>


 ]]></description>
  <guid>https://carwilb.github.io/teaching/history-anthro-w10.html</guid>
  <pubDate>Sun, 26 Oct 2025 05:00:00 GMT</pubDate>
</item>
<item>
  <title>Margaret Mead</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/teaching/history-anthro-w11.html</link>
  <description><![CDATA[ 





<div class="page-columns page-full"><blockquote class="blockquote">
<p>Margaret Mead’s generation lived through the most rapid period of change in human history, before or since. People born in 1901, like her, had entered world that was still lit by candles, gas lamps, and kerosene lanterns a world in which heavier-than-air flight was reckoned “a vain fantasy,” China was an ancient dynastic empire, the British Empire covered nearly one fourth of the planet’s land area, no nation allowed women to vote, and hundreds of thousands still carried the living memory of being enslaved. And the youthful, utopian Margaret Mead of the 1920s and 1930s had been almost unique in predicting the scope of the changes to come. While her peers continued to imagine the future as one dominated by Western empires and by traditional social norms, she predicted an age of upheaval that would alter the <em>experience of being human itself</em>—an era of transformed consciousness. —Benjamin Breen<span class="citation" data-cites="breenTrippingUtopiaMargaret2024"><sup>1</sup></span></p>
</blockquote><div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;Benjamin Breen, <em>Tripping on utopia: Margaret Mead, the Cold War, and the troubled birth of psychedelic science</em>, First edition. (Grand Central Publishing, Hachette Book Group, 2024), 266.</p></div></div></div>
<p>Margaret Mead already had her PhD in hand when she traveled across the United States (by train with Ruth Benedict) and then further from San Francisco to Honolulu and onward to Samoa in 1925. Her fieldwork there on adolescent sexuality, published in <em>Coming of Age in Samoa</em><span class="citation" data-cites="mead1943"><sup>2</sup></span> generated extensive publicity and launched her career as a public intellectual. Her subsequent work in <em>Sex and Temperament in Three Primitive Societies</em><span class="citation" data-cites="mead1935"><sup>3</sup></span> profiled three New Guinea cultures with distinct gender systems, and explored the question of what happens when an individual’s emotional disposition is at odd’s with society’s gender expectations.</p>
<div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;Margaret Mead, <em>Coming Of Age In Samoa</em> (Penguin, 1943), <a href="http://archive.org/details/in.ernet.dli.2015.189627">http://archive.org/details/in.ernet.dli.2015.189627</a>.</p></div><div id="fn3"><p><sup>3</sup>&nbsp;Margaret Mead, <em>Sex and Temperament in Three Primitive Societies</em> (Routledge, 1935).</p></div></div><div class="quarto-figure quarto-figure-center page-columns page-full">
<figure class="figure page-columns page-full">
<p><img src="https://carwilb.github.io/images/anthro/Mead-Samoa-2adolescents-1926.jpg" class="img-fluid figure-img"></p>
<figcaption>Margaret Mead sitting between two Samoan girls, ca. 1926. The photo was enclosed in one of her nearly daily letters to Ruth Benedict, in which she wrote, “I look very prim and proper and unpolynesian.”<span class="citation" data-cites="francisSamoaAdolescentGirl2001"><sup>4</sup></span></figcaption>
<div class="no-row-height column-margin column-container"><div id="fn4"><p><sup>4</sup>&nbsp;Patricia A. Francis and Mary Wolfskill, <em>Samoa: The Adolescent Girl - Margaret Mead: Human Nature and the Power of Culture |</em>, 2001, <a href="https://www.loc.gov/exhibits/mead/field-samoa.html">https://www.loc.gov/exhibits/mead/field-samoa.html</a>.</p></div></div></figure>
</div>
<p>Mead’s social relevance and ultimately the popularity of her work is largely a product of her ability to present ethnographic conclusions as relevant to American society, rather than a collection of curiosities that describe peoples seen as primitive and lesser. We can see in this an intellectual move to position ethnographic expertise as a resource for understanding all human societies, including her own. However, it’s also worth taking the time to read Mead’s latter chapters of these works as ethnographic treatment’s of Western culture in their own right.</p>
<p>At the start of World War II, Mead joined in a group of four anthropologists – Ruth Benedict, Gregory Bateson, and Geoffrey Gorer – in the Committee for National Morale. “From the first we felt it was only a matter of time before this country would be drawn into the conflict, and we hoped to put our growing knowledge of the human sciences at the services of the Allied fight against Nazism.” Mead’s main contribution was <em>And Keep Your Powder Dry</em>. In her introduction to a 1965 reprint, Mead looked back both on her practice of writing about Western culture in the final chapters of her previous books and on the sudden challenge of constructing an ethnographic description of her own culture.</p>
<div class="page-columns page-full"><blockquote class="blockquote">
<p>My own interests had always turned on the relevance of the study of primitive peoples to our understanding of our own customary behavior and our attempts to modify it. Ruth Benedict had called anthropology the science of custom. And I had been in the habit of ending my books, which dealt with the ways faraway South Sea peoples worked out universal human problems, with a discussion of how some of my results could be applied to the modern world. But in 1939 we had no formal rules to go by in our new undertaking. We did not yet know how to combine anthropological detachment, which was achieved by traveling to and studying intensively a people distant in time and place, and awareness of our own culture in which we ourselves had a place.<span class="citation" data-cites="meadKeepYourPowder1965"><sup>5</sup></span></p>
</blockquote><div class="no-row-height column-margin column-container"><div id="fn5"><p><sup>5</sup>&nbsp;Margaret Mead, <em>And keep your powder dry; an anthropologist looks at America.</em>, A new expanded ed. of a classic work on the American character. (Morrow, 1965).</p></div></div></div>
<p>Mead’s early work in Samoa ad New Guinea became the subject of a series of controversies, most visibly Derek Freeman’s 1983 <em>Margaret Mead and Samoa: The Making and Unmaking of an Anthropological Myth</em>. However, Freeman’s argument that Mead had been misled by her Samoan interviewees has largely been discredited in the discipline.</p>
<p>Other controversies of interpretation surround the particular characterizations of the three cultures profiled in <em>Sex and Temperament</em>, where they interlock with the personal lives of Mead and her collaborators Reo Fortune and Gregory Bateson, the former her husband at the time of that fieldwork and the latter her future spouse. David Lipset reviews Mead’s work and rival interpretations in “Rereading Margaret Mead’s Sepik Triptych and its Ethnographic Critics.”<span class="citation" data-cites="lipset2003"><sup>6</sup></span> Lise M. Dobrin and Ira Bashkow’s “The Truth in Anthropology Does Not Travel First Class”<span class="citation" data-cites="dobrin2010"><sup>7</sup></span> exposes the four-way correspondence behind Mead’s break with Fortune while defending the latter’s read of local mythology.</p>
<div class="no-row-height column-margin column-container"><div id="fn6"><p><sup>6</sup>&nbsp;David Lipset, <span>“Rereading Sex and Temperament : Margaret Mead’s Sepik Triptych and Its Ethnographic Critics,”</span> <em>Anthropological Quarterly</em> 76, no. 4 (2003): 693–713, <a href="https://muse.jhu.edu/pub/35/article/48524">https://muse.jhu.edu/pub/35/article/48524</a>.</p></div><div id="fn7"><p><sup>7</sup>&nbsp;Lise M. Dobrin and Ira Bashkow, <span>“<span>"</span>The Truth in Anthropology Does Not Travel First Class<span>"</span>: Reo Fortune’s Fateful Encounter with Margaret Mead,”</span> <em>Histories of Anthropology Annual</em> 6, no. 1 (2010): 66–128, <a href="https://muse.jhu.edu/pub/17/article/398061">https://muse.jhu.edu/pub/17/article/398061</a>.</p></div><div id="fn8"><p><sup>8</sup>&nbsp;Israel Shenker, <span>“Anthropologists Clash over Their Colleagues<span>’</span> Ethics in Thailand,”</span> <em>The New York Times</em>, November 21, 1971, <a href="https://www.nytimes.com/1971/11/21/archives/anthropologists-clash-over-their-colleagues-ethics-in-thailand.html">https://www.nytimes.com/1971/11/21/archives/anthropologists-clash-over-their-colleagues-ethics-in-thailand.html</a>.</p></div></div><p>Mead was active in the American Association of Anthropology, and its elected president in 1975. During the 1960s and 1970s, this pitted her in a generational struggle between older anthropologists like herself who had taken involvement in the US government’s overseas empire as a routine pre-requisite for their work, and a younger generation that was staunchly against the Vietnam War and developing a critique of anthropology’s implication in colonialism. (Mead and Bateson had both been involved with the Office of Strategic Services (OSS) during World War II, with Bateson’s involvement considerably deeper and extending to covert service in South Asia. However, he would more publicly repudiate this course by the late 1960s.) Eric Wolf, then a rising star in the discipline, publicly confronted Mead at the 1971 AAA meeting over her ethics report downplaying American social scientists’ collaboration in the Vietnam war effort, which had been exposed by a student report.<span class="citation" data-cites="shenkerAnthropologistsClashTheir1971"><sup>8</sup></span></p>
<p>Mead’s overall legacy was the subject of a 1992 book and a 2003 conference at the Barnard Center for Research on Women. The speeches from the latter are collected as an issue of <em>Scholar and Feminist Online</em>.<span class="citation" data-cites="MargaretMeadsLegacy"><sup>9</sup></span> Leonora Foerstel and Angela Gilliam’s <em>Confronting the Margaret Mead Legacy: Scholarship, Empire, and the South Pacific</em> represents the primary example of post/anticolonial critique of Mead’s work. As Foerstel observes:</p>
<div class="no-row-height column-margin column-container"><div id="fn9"><p><sup>9</sup>&nbsp;<em>Margaret Mead<span>’</span>s Legacy: Continuing Conversations</em>, n.d., <a href="https://sfonline.barnard.edu/margaret-meads-legacy-continuing-conversations/">https://sfonline.barnard.edu/margaret-meads-legacy-continuing-conversations/</a>.</p></div></div><div class="page-columns page-full"><blockquote class="blockquote">
<p>We are now at the point in history where the views of Western anthropologists are no longer judged by their peers alone, but are being examined by rising new scholars from Pacific islands, scholars whose families and culture had been the subject of anthropological study. These indige- nous scholars reject Western racism and remain suspicious of the work of Mead and others, work which propagated and imposed the Western model for progress and change.<span class="citation" data-cites="foerstelConfrontingMargaretMead1992"><sup>10</sup></span></p>
</blockquote><div class="no-row-height column-margin column-container"><div id="fn10"><p><sup>10</sup>&nbsp;Lenora Foerstel and Angela Gilliam, <em>Confronting the Margaret Mead legacy: Scholarship, empire, and the South Pacific</em> (Temple University Press, 1992), 72.</p></div></div></div>
<p>Three of the authors are scholars at the University of Papua New Guinea. The co-editors also narrate the Mead-Wolf-Vietnam controversy in chapter 5.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/anthro/mead-bateson-1938.jpg" class="img-fluid figure-img"></p>
<figcaption>Mead and Bateson recording fieldnotes in Iatmul, 1938.</figcaption>
</figure>
</div>
<section id="fieldwork-by-margaret-mead" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="fieldwork-by-margaret-mead">Fieldwork by Margaret Mead</h2>
<p>List consolidated from <span class="citation" data-cites="libraryofcongress.manuscriptdivisionMargaretMeadPapers2024">Library of Congress. Manuscript Division<sup>11</sup></span></p>
<div class="no-row-height column-margin column-container"><div id="fn11"><p><sup>11</sup>&nbsp;<em>Margaret Mead Papers and the South Pacific Ethnographic Archives: A Finding Aid to the Collection in the Library of Congress</em>, 2024, <a href="https://findingaids.loc.gov/exist_collections/ead3pdf/mss/2009/ms009117.pdf">https://findingaids.loc.gov/exist_collections/ead3pdf/mss/2009/ms009117.pdf</a>.</p></div></div><table class="caption-top table">
<colgroup>
<col style="width: 18%">
<col style="width: 81%">
</colgroup>
<thead>
<tr class="header">
<th>Year</th>
<th>Field Visit</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>1925-1926</td>
<td>American Samoa (study of adolescent girls)</td>
</tr>
<tr class="even">
<td>1928-1929</td>
<td>Manus, Admiralty Islands (with Reo Fortune, study of young children)</td>
</tr>
<tr class="odd">
<td>1930</td>
<td>Omaha (Umonhon) Tribe, Nebraska</td>
</tr>
<tr class="even">
<td>1931-1933</td>
<td>New Guinea (study of Arapesh, Biwat, and Chambri people)</td>
</tr>
<tr class="odd">
<td>1936-1939</td>
<td>Bali and New Guinea (study of Iatmul people)</td>
</tr>
<tr class="even">
<td>1953</td>
<td>Manus, Admiralty Islands (with Theodore and Lenora Schwartz)</td>
</tr>
<tr class="odd">
<td>1957-1958</td>
<td>Bali (with Ken Heyman)</td>
</tr>
<tr class="even">
<td>1964-1965</td>
<td>Manus, Admiralty Islands</td>
</tr>
<tr class="odd">
<td>1967</td>
<td>Manus, Admiralty Islands; New Guinea</td>
</tr>
<tr class="even">
<td>1971</td>
<td>Manus, Admiralty Islands; New Guinea and American Samoa</td>
</tr>
<tr class="odd">
<td>1973</td>
<td>Hoskins Bay, New Britain (study of Arapesh people)</td>
</tr>
<tr class="even">
<td>1975</td>
<td>Manus, Admiralty Islands</td>
</tr>
<tr class="odd">
<td>1977</td>
<td>Bali</td>
</tr>
</tbody>
</table>
</section>
<section id="biography" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="biography">Biography</h2>
<p>Margaret Mead’s life is the subject of books including:</p>
<ul>
<li>Charles King’s <em>Gods of the Upper Air</em> on multiple members of the Boas circle.</li>
<li>Mary Catherine Bateson’s <em>With a Daughter’s Eye: A Memoir of Margaret Mead and Gregory Bateson</em> on her parents.</li>
<li>Paul Shankman’s <em>The Trashing of Margaret Mead</em> on the posthumous Freeman controversy over her Samoa fieldwork.</li>
<li>Elesha Coffman’s <em>Margaret Mead: A Twentieth-Century Faith</em>, which makes senes of the Christianity of a woman who once wrote, “Shorn of all the things in which I can’t believe—and don’t want to—an omnipotent God, immortality, and original sin—Christianity is still the most beautiful thing I know, and the fact that Jesus lived the most satisfactory justification of life.” See also, Coffman’s <a href="https://shepherd.com/best-books/margaret-mead">summaries of her favorite Mead books</a>.</li>
<li>Benjamin Breen’s <em>Tripping on Utopia: Margaret Mead, the Cold War, and the Troubled Birth of Psychedelic Science</em><span class="citation" data-cites="breenTrippingUtopiaMargaret2024"><sup>12</sup></span> on Mead and Bateson’s intersections with both early experiments in psychedelic use and covert experimentation organized by the US government.</li>
<li>Lily King’s novel <em>Euphoria</em>, a very thinly pseudonymized retelling of Margaret Mead, Reo Fortune, and Gregory Bateson in Papua New Guinea, <em>Euphoria</em> fleshes out these young Euro-Americans rethinking gender and community in the 1930s. Substantial attention is paid to Mead and Bateson’s ill-fated theory of the Squares among cultural personalities and individuals, and its entanglement with the love triangle of these three.</li>
<li>Deborah Blum’s <em>Coming of Age: The Sexual Awakening of Margaret Mead</em>, covering Mead’s education at Barnard/Columbia, fieldwork in Samoa, and summer in Europe, and relationships with Cressman, Benedict, Sapir, and Fortune from 1921 to 1926.</li>
<li>Jean Walton’s <em>Fair Sex, Savage Dreams: Race, Psychoanalysis, Sexual Difference</em> devotes its last two chapters to Mead, with a lengthy interpretation of her conversation with James Baldwin in <em>A Rap on Race</em>.</li>
<li>Nancy Lutkehaus’s <em>Margaret Mead: The Making of an American Icon</em>, which intertwines her look at Mead with “the study of fame … as a particular social practice” and of “the meanings associated with her that transcend or go beyond Mead.”</li>
</ul>
<div class="no-row-height column-margin column-container"><div id="fn12"><p><sup>12</sup>&nbsp;Breen, <em>Tripping on utopia</em>.</p></div></div><div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/anthro/i-ketut-ngendon-goodbye-mead-bateson-1938.jpg" class="img-fluid figure-img"></p>
<figcaption>I Ketut Ngéndon of Batuan, “Goodbye and Good Luck to Margaret Mead and Gregory Bateson,” 1938. Commissioned by I Madé Kalér, their research assistant.</figcaption>
</figure>
</div>


</section>


 ]]></description>
  <guid>https://carwilb.github.io/teaching/history-anthro-w11.html</guid>
  <pubDate>Sun, 26 Oct 2025 05:00:00 GMT</pubDate>
</item>
<item>
  <title>Boas, Rivet, and the End of the Craniometry of Race</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/teaching/history-anthro-w8.html</link>
  <description><![CDATA[ 





<p>Franz Boas and Paul Rivet, two long-distance friends and foundational colleagues in their discipline,<span class="citation" data-cites="laurière2010"><sup>1</sup></span> each published major works around the same time that analyzed thousands of skulls using conventional anthropometric techniques. But these works, published on opposite sides of the Atlantic each upended long-held assumptions about racial types and the heritability of physical traits.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;Christine Laurière, <span>“Anthropology and Politics, the Beginnings: The Relations between Franz Boas and Paul Rivet (1919-42),”</span> <em>Histories of anthropology annual</em> 6, no. 1 (2010): 225252, <a href="https://doi.org/10.1353/haa.2010.0004">https://doi.org/10.1353/haa.2010.0004</a>.</p></div></div><p>Boas’s 1912 article <a href="https://anthrosource.onlinelibrary.wiley.com/doi/abs/10.1525/aa.1912.14.3.02a00080">“Changes in Bodily Form of Descendants of Immigrants”</a> analyzed the cranial measurements of around 18,000 children and young adults and found that the then-accepted measure of cranial form — the cephalic index — varied significantly between American immigrants and first-generation children of American immigrants, and also between families with different numbers of children:</p>
<div class="page-columns page-full"><blockquote class="blockquote">
<p>American-born descendants of immigrants differ in type from their foreign-born parents. The changes which occur among various European types are not all in the same direction. They develop in early childhood and persist throughout life. … Foreign-born parents when compared with their own foreign- born and American-born children exhibit the same types of differences for the children as the whole series.<span class="citation" data-cites="boas1912"><sup>2</sup></span></p>
</blockquote><div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;Franz Boas, <span>“Changes in the Bodily Form of Descendants of Immigrants,”</span> <em>American Anthropologist</em> 14, no. 3 (1912): 530–62, <a href="https://doi.org/10.1525/aa.1912.14.3.02a00080">https://doi.org/10.1525/aa.1912.14.3.02a00080</a>.</p></div></div></div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/anthro/Boas-1911-SamplePopulation.png" class="img-fluid figure-img" alt="A table of numbers with the ethnic names, Bobemians, Poles, Hungarians, Slovacs, Hebrews, Sicilians, Neapolitans"></p>
<figcaption>Boas’ description of his sample population, stratified by ethnicity and age</figcaption>
</figure>
</div>
<p>Rivet’s 1909-10 study, released in a serial fashion in the journal <em>L’Anthropologie</em> (1909|<a href="https://archive.org/details/lanthropologie_1910_21/page/636/mode/2up">1910</a>), analyzed the cranial measurements of over 6,000 individuals from around the world, including a substantial number of non-human primates. In this case the variable in question was prognathism, defined as “the protrusion of the upper or lower jaw … [measured as] the facial angle (the slope of a line from forehead to jaw).”<span class="citation" data-cites="conklin2013"><sup>3</sup></span></p>
<div class="no-row-height column-margin column-container"><div id="fn3"><p><sup>3</sup>&nbsp;Alice L. Conklin, <em>In the Museum of Man: Race, Anthropology, and Empire in France, 1850<span></span>1950</em> (Cornell University Press, 2013), 63, <a href="https://doi.org/10.7591/9780801469046">https://doi.org/10.7591/9780801469046</a>.</p></div></div><blockquote class="blockquote">
<p><em>II suffit de parcourir ce tableau, pour constater qu’il n’y a qu’un rapport trés lointain entre l’ordre dans lequel s’y inscrivent les diverses populations et celui qu’on aurait obtenuen les classant d’aprés leur degré d’évolution intellectuelle ou matérielle. Certes, dune fagon trés générale, les races blanches se rangent parmi les plus orthognathes et les races noires et rouges parmi les plus prognathes, mais les exceptions abondent.</em></p>
<p>One need only glance at this table to see that there is only a very distant relationship between the order in which the various populations are listed and the order that would have been obtained by classifying them according to their degree of intellectual or material evolution. Admittedly, in very general terms, white races are among the most orthognathic and black and red races among the most prognathic, but there are many exceptions.</p>
</blockquote>
<div class="quarto-layout-panel" data-layout-ncol="2">
<div class="quarto-layout-row">
<div class="quarto-layout-cell" style="flex-basis: 50.0%;justify-content: center;">
<p><img src="https://carwilb.github.io/images/anthro/Rivet-1910-641.png" class="img-fluid"></p>
</div>
<div class="quarto-layout-cell" style="flex-basis: 50.0%;justify-content: center;">
<p><img src="https://carwilb.github.io/images/anthro/Rivet-1910-642.png" class="img-fluid"></p>
</div>
</div>
</div>
<p>Later in the same article, Rivet explicitly rejects the idea that prognathism is a marker of racial inferiority:</p>
<blockquote class="blockquote">
<p><em>Par contre, j’espére avoir prouvé qu’il ne faut pas lui attribuer Vimportance qu’on a été tenté parfois de lui donner en tant que caractere sériaire et qu’on ne doit surtout pas le considérer comme un caractére d’infériorité.</em></p>
<p>On the other hand, I hope I have demonstrated that we should not attribute to it the importance that we have sometimes been tempted to give it as a serious character trait, and that we should certainly not consider it a sign of inferiority.</p>
</blockquote>
<p>Boas and Rivet were two of the early twentieth century scientists who were “wrestling with many of the … methodological and conceptual problems in race science.”<span class="citation" data-cites="conklin2013"><sup>4</sup></span> As we’ve seen in class, some scientists would react to the lack of supportive evidence for profound racial difference, much less racial inferiority, with disbelief, and others with steady confidence that the necessary data were forthcoming.</p>
<div class="no-row-height column-margin column-container"><div id="fn4"><p><sup>4</sup>&nbsp;Conklin, <em>In the Museum of Man</em>, 64.</p></div><div id="fn5"><p><sup>5</sup>&nbsp;<em>Manifesto by 1,284 Noted u.s. Scientists Denounces Racialism, Fascist Position on Science</em>, n.d., <a href="https://www.jta.org/archive/manifesto-by-1284-noted-u-s-scientists-denounces-racialism-fascist-position-on-science">https://www.jta.org/archive/manifesto-by-1284-noted-u-s-scientists-denounces-racialism-fascist-position-on-science</a>.</p></div></div><p>Boas and Rivet were two scholars who eventually concluded that the evidence was lacking for racial difference and turned their eye towards racism as both an object of study and political target. Ultimately, Boas would organize 1,284 scientists from 167 universities to sign a joint manifesto in December 1938 to, in his words, “declare that we scientists have the moral obligation to educate the American people against all false and unscientific doctrines, such as the racial nonsense of the Nazis.”<span class="citation" data-cites="Manifesto1284Noted"><sup>5</sup></span></p>
<p>Craniometry’s collapse as a racial measure is documented in Paul Turbull’s recent chapter “Surveying Craniometry.”<span class="citation" data-cites="turnbullSurveyingCraniometry2023"><sup>6</sup></span> Boas’ engagement with race is the subject of a chapter of Lee Baker’s From Savage to Negro.<span class="citation" data-cites="baker1998"><sup>7</sup></span> Rivet’s studies of craniometry are described in Christine Laurière’s biography of Rivet.<span class="citation" data-cites="lauriereSeFaireNom2008"><sup>8</sup></span></p>
<div class="no-row-height column-margin column-container"><div id="fn6"><p><sup>6</sup>&nbsp;Paul Turnbull, <em>Surveying Craniometry</em> (Routledge, 2023).</p></div><div id="fn7"><p><sup>7</sup>&nbsp;Lee D Baker, <em>From Savage to Negro: Anthropology and the Construction of Race, 1896-1954</em> (University of California Press, 1998).</p></div><div id="fn8"><p><sup>8</sup>&nbsp;Christine Laurière, <em>Se faire un nom</em>, Archives (Publications scientifiques du Muséum, 2008), 167–209, <a href="https://books.openedition.org/mnhn/2401">https://books.openedition.org/mnhn/2401</a>.</p></div><div id="fn9"><p><sup>9</sup>&nbsp;Bronwen Douglas, <em>Climate to Crania:: Science and the Racialization of Human Difference</em>, ed. Bronwen Douglas and Chris Ballard, Oceania and the Science of Race 1750-1940 (ANU Press, 2008), 33–96, <a href="http://www.jstor.org/stable/j.ctt24h8th.9">http://www.jstor.org/stable/j.ctt24h8th.9</a>.</p></div><div id="fn10"><p><sup>10</sup>&nbsp;Geertje Mak, <span>“A Colonial-Scientific Interface: The Construction, Viewing, and Circulation of Faces via a 1906 German Racial Atlas,”</span> <em>American Anthropologist</em> 122, no. 2 (2020): 327–41, <a href="https://doi.org/10.1111/aman.13386">https://doi.org/10.1111/aman.13386</a>.</p></div><div id="fn11"><p><sup>11</sup>&nbsp;Alejandra Bronfman, <em>Measures of equality: social science, citizenship, and race in Cuba, 1902-1940</em>, Envisioning Cuba (University of North Carolina Press, 2004).</p></div><div id="fn12"><p><sup>12</sup>&nbsp;<em>Skulls in Print: Scientific Racism in the Transatlantic World | University of Cambridge</em>, 2014, <a href="https://www.cam.ac.uk/research/news/skulls-in-print-scientific-racism-in-the-transatlantic-world">https://www.cam.ac.uk/research/news/skulls-in-print-scientific-racism-in-the-transatlantic-world</a>.</p></div></div><p>Multiple sources take a larger look at craniometry, including on its origins as a scientific practice,<span class="citation" data-cites="douglas2008"><sup>9</sup></span> photographic anthropometric atlases and colonialism,<span class="citation" data-cites="mak2020"><sup>10</sup></span> and anthropometry and race in Cuba,<span class="citation" data-cites="bronfman2004"><sup>11</sup></span> and the international circulation of Morton’s <em>Crania Americana</em>.<span class="citation" data-cites="SkullsPrintScientific2014"><sup>12</sup></span></p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/anthro/Relethford-2002-variation.png" class="img-fluid figure-img"></p>
<figcaption>Table from Relethford 2002, apportioning variation in human biological characteristics</figcaption>
</figure>
</div>
<p>Contemporary scientific measurements shows that inter-continental (often used as a proxy for interracial) variation in cranial characteristics is a small fraction of overall human variation,<span class="citation" data-cites="relethford2002"><sup>13</sup></span> which puts it in line with most other biological characteristics, skin color being the notable exception. As with other markers, cranial measurements can be useful for tracing population-level relationships and migration, something both Boas and Rivet suspected based on their data.<span class="citation" data-cites="relethford2004"><sup>14</sup></span></p>
<div class="no-row-height column-margin column-container"><div id="fn13"><p><sup>13</sup>&nbsp;John H. Relethford, <span>“Apportionment of Global Human Genetic Diversity Based on Craniometrics and Skin Color,”</span> <em>American Journal of Physical Anthropology</em> 118, no. 4 (2002): 393–98, <a href="https://doi.org/10.1002/ajpa.10079">https://doi.org/10.1002/ajpa.10079</a>.</p></div><div id="fn14"><p><sup>14</sup>&nbsp;John H. Relethford, <span>“Boas and Beyond: Migration and Craniometric Variation,”</span> <em>American Journal of Human Biology</em> 16, no. 4 (2004): 379–86, <a href="https://doi.org/10.1002/ajhb.20045">https://doi.org/10.1002/ajhb.20045</a>.</p></div><div id="fn15"><p><sup>15</sup>&nbsp;Leonard Lieberman, <span>“How <span>“</span>Caucasoids<span>”</span> Got Such Big Crania and Why They Shrank: From Morton to Rushton,”</span> <em>Current Anthropology</em> 42, no. 1 (2001): 69–95, <a href="https://doi.org/10.1086/318434">https://doi.org/10.1086/318434</a>.</p></div></div><p>For more on early twenty-first century racists’ attempts to revive craniometric “evidence” of racial inequality, see Leonard Lieberman’s takedown of J. Philippe Rushton.<span class="citation" data-cites="lieberman2001"><sup>15</sup></span></p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/anthro/Bertillon,_Alphonse,_fiche_anthropometrique.jpg" class="img-fluid figure-img" alt="A mugshot of Alphonse Bertillon, showing a front and side view of his face, along with anthropometric measurements"></p>
<figcaption>Anthropometric data sheet of Alphonse Bertillon (1853-1914), pioneer of anthropometry</figcaption>
</figure>
</div>




 ]]></description>
  <guid>https://carwilb.github.io/teaching/history-anthro-w8.html</guid>
  <pubDate>Tue, 14 Oct 2025 05:00:00 GMT</pubDate>
</item>
<item>
  <title>Nineteenth-century North American ethnography by Mooney and Morgan</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/teaching/history-anthro-w5.html</link>
  <description><![CDATA[ 





<p>The research monographs that this week’s readings shadow are Lewis Henry Morgan’s <a href="https://archive.org/details/leagueofhodnos00inmorg/page/n11/mode/2up"><em>League of the Ho-dé-no-sau-nee, or Iroquois</em></a> and James Mooney’s <a href="https://archive.org/details/ghostdancesioux00moonrich/page/n7/mode/2up"><em>The ghost-dance religion and the Sioux outbreak of 1890</em></a>. For a recommended sample of Mooney’s work, see Chapter 2: <a href="https://pages.ucsd.edu/~rfrank/class_web/ES-110/ETHN110articles/Plains/mooney_ps.pdf">“The Doctrine of the Ghost Dance”</a>.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/anthro/Ghost_Dance_at_Pine_Ridge-2.png" class="img-fluid figure-img"></p>
<figcaption>he Ghost dance by the Oglala Lakota at Pine Ridge Agency-Drawn by Frederic Remington from sketches taken on the spot.</figcaption>
</figure>
</div>
<section id="historical-context-of-the-ghost-dance" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="historical-context-of-the-ghost-dance">Historical context of the Ghost Dance</h2>
<p>The colonization of the Great Plains through the Indian Wars is the context for the spread of the Ghost Dance religion. The Fort Laramie Treaties had recognized native sovereignty over the Great Plains in 1851, but volunteer and Federal Army troops began a new round of Indian Wars in the 1860s. Genocidal massacres, military internment, and the undermining of the Indian food supply followed in the succeeding decades. Killing buffalo as a tactic of counterinsurgency was pursued with abandon, as praised by General Philip Sheridan in 1875:</p>
<div class="page-columns page-full"><blockquote class="blockquote">
<p>These men [the buffalo hunters] have done … more to settle the vexed Indian question than the entire regular army has done in the last 30 years. They are destroying the Indians’ commissary. … Send them powder and lead if you will, but for the sake of lasting peace let them kill, skin, and sell until the buffalo are exterminated.<span class="citation" data-cites="laduke1999"><sup>1</sup></span></p>
</blockquote><div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;Quoted in Winona LaDuke, <em>All Our Relations: Native Struggles for Land and Life</em> (South End Press, 1999), 141.</p></div></div></div>
<p>These measures constituted successive attacks on the physical and cultural mechanisms of survival of the Indians. And consciously so, as can be seen from the opinion of General William Tecumseh Sherman as early as 1867, “We must act with vindictive earnestness against the [Lakota], even to their extermination, men, women and children.”<span class="citation" data-cites="churchill1997">.<sup>2</sup></span> The impact was devastating, as Dee Brown describes for the summer of 1874,</p>
<div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;Ward Churchill, <em>A Little Matter of Genocide: Holocaust and Denial in the Americas, 1492 to the Present</em> (City Lights, 1997), 240.</p></div></div><div class="page-columns page-full"><blockquote class="blockquote">
<p>If such a season [of drought] had come upon this land a few years earlier, a thunder of a million buffalo hooves would have shaken the prairie in frantic stampedes for water. But now the herds were gone, replaced by an endless desolation of bones and skulls and rotting hooves. … Bands of Comanches, Kiowas, Cheyennes, and Arapahos roamed restlessly, finding a few small herds, but many had to return to their reservations to keep from starving.<span class="citation" data-cites="brown2001"><sup>3</sup></span></p>
</blockquote><div class="no-row-height column-margin column-container"><div id="fn3"><p><sup>3</sup>&nbsp;Dee Brown, <em>Bury My Heart at Wounded Knee: An Indian History of the American West</em>, Thirtieth Anniversary ed. (H. Holt, 2001), 268.</p></div></div></div>
<p>Those who chose the path of a negotiated surrender to reservations, as did those led by Sitting Bull in 1881, saw agreements for rations and safety undermined. Just two years after that agreement, Sitting Bull—noting “our rations have been reduced to almost nothing” and “many of our people have starved to death”—made a plea for material equality as a corollary of negotiation:</p>
<div class="page-columns page-full"><blockquote class="blockquote">
<p>You white men advise us to follow your ways, and therefore I talk as I do. When you have a piece of land, and anyone trespasses on it, you catch them, and keep them until you get damages, and I am doing the same thing now…. I see my people starving, and I want the Great Father to make an increase in the amount of food that is allowed us now, so that they may be able to live. We want cattle to butcher—I want to kill 300 head of cattle at a time. That is the way you live and we want to live the same way.<span class="citation" data-cites="laduke1999"><sup>4</sup></span></p>
</blockquote><div class="no-row-height column-margin column-container"><div id="fn4"><p><sup>4</sup>&nbsp;LaDuke, <em>All Our Relations</em>, 97.</p></div></div></div>
<p>Notwithstanding their pleas, more than one-third of the Lakota would die of starvation and disease between 1877 and 1890.<span class="citation" data-cites="laduke1999"><sup>5</sup></span> The self-sufficiency of the Indians of the Great Plains was undermined on the terrain of physical survival, through the imposition of facts on the ground.</p>
<div class="no-row-height column-margin column-container"><div id="fn5"><p><sup>5</sup>&nbsp;LaDuke, <em>All Our Relations</em>, 97.</p></div></div><p>Here is my recorded lecture segment on the historical context of the Ghost Dance:</p>
<p>{{&lt;video https://youtu.be/dCuBskJzLo4 &gt;}}</p>
<p>Anthropologist Ella Deloria featured an eyewitness account of the Ghost Dance from an elder who a child during the peak of the religion.</p>
<p><img src="https://carwilb.github.io/images/deloria-ghost-dance-1.png" class="img-fluid"> <img src="https://carwilb.github.io/images/deloria-ghost-dance-2.png" class="img-fluid"> <img src="https://carwilb.github.io/images/deloria-ghost-dance-3.png" class="img-fluid"></p>


</section>


 ]]></description>
  <guid>https://carwilb.github.io/teaching/history-anthro-w5.html</guid>
  <pubDate>Fri, 19 Sep 2025 05:00:00 GMT</pubDate>
</item>
<item>
  <title>Ninetenth-Century Evolutionary Anthropology</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/teaching/history-anthro-w4.html</link>
  <description><![CDATA[ 





<p><strong>“Anthropology, as it was practiced throughout much of the 19th century,” writes Rachel Caspari, “was a single biocultural discipline, with race linking the components.”</strong><span class="citation" data-cites="caspari2003"><sup>1</sup></span> Even though the nineteenth century saw a tremendous intellectual revolution in human biology—the introduction of a formal understanding of evolution—the foundational role of race remained unshaken, even reinforced, by this change.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;Rachel Caspari, <span>“From Types to Populations: A Century of Race, Physical Anthropology, and the American Anthropological Association,”</span> <em>American Anthropologist</em> 105, no. 1 (2003): 65–76.</p></div></div><p>This week’s readings center three forms of evolutionary thinking in nineteenth century anthropology, which were tied together in the minds of their advocates: cultural evolution through stages of savagery, barbarism, and civilization; biological evolution of species (and it was presumed, races); and “social Darwinism” to describe the relative success of nations and classes.</p>
<p>Stefanos Gerlounas describes the nineteenth century as a time of three-stage theories of human pre/history, embraced across the century by Comte, Spencer, Tylor, Morgan, Marx, Engels, and Frazer. Lewis Henry Morgan’s <em>Ancient Society</em><span class="citation" data-cites="morgan1877"><sup>2</sup></span> and Edward Burnett Tylor’s <em>Primitive Culture</em><span class="citation" data-cites="tylor1920"><sup>3</sup></span> both make the same intellectual move, situating contemporary “savage” cultures as living fossils of a prior “primitive” era in human history, through which “barbarian” and “civilized’ peoples had already passed:</p>
<div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;Lewis H Morgan, <em>Ancient Society, or Researches in the Lines of Human Progress from Savagery through Barbarism to Civilization</em> (Charles H Kerr And Company, 1877), <a href="http://archive.org/details/ancientsociety035004mbp">http://archive.org/details/ancientsociety035004mbp</a>.</p></div><div id="fn3"><p><sup>3</sup>&nbsp;Edward Burnett Tylor, <em>Primitive culture: Researches into the development of mythology, philosophy, religion, language, art, and custom</em> (Murray, 1920), <a href="http://archive.org/details/primitiveculture01tylouoft">http://archive.org/details/primitiveculture01tylouoft</a>.</p></div></div><blockquote class="blockquote">
<p>The thesis which I venture to sustain, within limits, is simply this, that the savage state in some measure represents an early condition of mankind, out of which the! higher culture has gradually been developed or evolved, by processes still in regular operation as of old, the result showing that, on the whole, progress has far prevailed over! relapse. (Tylor, p.&nbsp;32)</p>
<p>The remote ancestors of the Aryan nations presumptively passed through an experience similar to that of existing barbarous and savage tribes. Though the experience of these nations embodies all the information necessary to illustrate the periods of civilization, both ancient and modern. (Morgan)</p>
</blockquote>
<p>English professor Patrick Brantlinger is concerned with the rhetoric of extinction attached to Indigenous peoples worldwide by European writers, scientific and otherwise. These discourses were both certain of the impending extinction of savage peoples, and if trouble by it, only troubled from a scientific point of view. Brantlinger argues that these views were generally dismissive:</p>
<blockquote class="blockquote">
<p>With a few exceptions—Lewis Henry Morgan and Alfred Russel Wallace are perhaps the main ones—most evolutionists treat primitive races and cultures negatively, not only as doomed by the inexorable laws of nature but also as meriting their pending extinctions. (165)</p>
</blockquote>
<p><em>Dark Vanishings</em> incorporates a wide range of nineteenth century anthropologists including: Thomas Jefferson (<em>Notes on the State of Virginia</em>, 1787); Albert Gallatin <em>(Synopsis of the Indian Tribes of North America</em>, 1836; founder of the American Ethnological Society, 1842) Henry Schoolcraft (<em>The American Indians, Their History, Condition and Prospects</em>); Samuel Morton <em>(Crania Americana</em>, 1839); Lewis Henry Morgan (<em>League of the Iroquois</em>, 1854); Josiah Nott and George Glidden (<em>Types of Mankind</em>, 1854),</p>
<p>We find in Brantlinger a surprising combination of salvage ethnography and celebration of savage demise. While making the case for “keep[ing] some scientific record of that which we destroy”, Pitt-Rivers sees no place for actual native peoples in the future other than in chains: “the savage is morally and mentally an unfit instrument for the spread of civilization, except when, like the higher mammal, he is reduced to slavery; his occupation is gone, and his place is required for an improved race.”</p>
<p><img src="https://carwilb.github.io/images/pitt-rivers-which-we-destroy.jpeg" class="img-fluid"></p>
<p>For broader views of American anthropology during this period, consider the earliest chapter in Lee Baker’s <em>From Savage to Negr</em>o;<span class="citation" data-cites="baker1998"><sup>4</sup></span> Glynn Custred in <em>A History of Anthropology As a Holistic Science</em>;<span class="citation" data-cites="custred2017"><sup>5</sup></span> and many segments of David Hurst Thomas’ <em>Skull Wars</em>.<span class="citation" data-cites="thomas2002"><sup>6</sup></span></p>
<div class="no-row-height column-margin column-container"><div id="fn4"><p><sup>4</sup>&nbsp;Lee D Baker, <em>From Savage to Negro: Anthropology and the Construction of Race, 1896-1954</em> (University of California Press, 1998).</p></div><div id="fn5"><p><sup>5</sup>&nbsp;Glynn Custred, <em>Anthropology in the Nineteenth Century</em> (Bloomsbury Publishing USA, 2017).</p></div><div id="fn6"><p><sup>6</sup>&nbsp;David Hurst Thomas, <em>Skull Wars: Kennewick Man, Archaeology, and the Battle for Native American Identity</em> (Basic Books, 2002).</p></div><div class="">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/kropotkin-mutual-aid-illuminated.jpg" class="img-fluid figure-img"></p>
<figcaption><em>Mutual Aid: A Factor of Evolution</em> in its 2021 “Illuminated” edition</figcaption>
</figure>
</div>
</div><div id="fn7"><p><sup>7</sup>&nbsp;Charles Darwin, <em>The Descent of Man</em> (Archives at NCBS, 1901), <a href="http://archive.org/details/ncbs.BB-001_0_0_0_1">http://archive.org/details/ncbs.BB-001_0_0_0_1</a>.</p></div></div>
<p>Darwin, whose 1859 <em>On the Origin of Species</em> laid out the overall case for biological evolution, delayed direct consideration of the relationship of human to other animals for <em>The Descent of Man</em>, published in 1871.<span class="citation" data-cites="darwin1901"><sup>7</sup></span> While Darwin presumes significant differences among “the races of man” and devotes a chapter to the topic, the text presumes a common human ancestor to all these racial groups and argues forcefully for the species’ overall closeness with primates in particular and animals in general. Nonetheless, racial groups and racial stereotypes are part of the evidentiary landscape used throughout.</p>
<p>Darwin gives priority to organisms’ struggle for survival under conditions of scarcity (the primary form of natural selection in <em>Origin</em>), and secondary consideration to differential rates of reproduction as determined by competition for mates (theorized in <em>Descent</em>). Less considered by Darwin are competitions among groups and species themselves, which would more readily include tendencies towards communication, cooperation, and (a certain form of) altruism.</p>
<p>The first, more competitive form of natural selection became the basis for so-called social Darwinism, framed as “survival of the fittest” and associated with sociologist Herbert Spencer as well as founding eugenicist Francis Galton.</p>
<p>A radically distinct view of natural behavior is presented by Pyotr (“Peter”) Kropotkin in <em>Mutual Aid: A Factor of Evolution</em>. Kropotkin highlights a wide variety of examples of cooperative behavior among animals (and plants), as well as human at each level of the social evolutionary ladder. While the subject of much skepticism initially, Kropotkin’s overall ideas overlap with Darwin’s, and mutualism within species is taken seriously as a factor in interspecies competition and macroevolution by current biologists.</p>
<p>Stephen Jay Gould (2000:471) even argues that Kropotkin and Darwin’s different emphases stem from their research environments: “In fact, Kropotkin, who was well trained in biology, spoke for a Russian consensus in arguing that density-independent regulation by occasional, but severe, environmental stress will tend to encourage intraspecific cooperation as a mode of natural selection. The harsh environments of the vast Russian steppes and tundras often elicited such a generalized belief; Kropotkin and colleagues had observed well in a local context, but had erred in over generalization. But Darwin and Wallace, schooled in the … tropics, may have made an equally parochial error in advocating such a dominant role for biotic struggle over limited resources in crowded space.”<span class="citation" data-cites="alma991043312273803276"><sup>8</sup></span></p>
<div class="no-row-height column-margin column-container"><div id="fn8"><p><sup>8</sup>&nbsp;Stephen Jay Gould, <em>The structure of evolutionary theory</em> (Belknap Press, 2002).</p></div><div id="fn9"><p><sup>9</sup>&nbsp;Gould, <em>The structure of evolutionary theory</em>.</p></div><div id="fn10"><p><sup>10</sup>&nbsp;Michael Tomasello, <em>Why We Cooperate</em>, A Boston Review Book (The MIT Press, 2009), <a href="https://research.ebsco.com/linkprocessor/plink?id=88bf887e-e045-30b0-a60f-4a9cca13578a">https://research.ebsco.com/linkprocessor/plink?id=88bf887e-e045-30b0-a60f-4a9cca13578a</a>.</p></div><div id="fn11"><p><sup>11</sup>&nbsp;David Sloan Wilson, <em>Does Altruism Exist? : Culture, Genes, and the Welfare of Others</em>, Foundational Questions in Science (Yale University Press, 2014), <a href="https://research.ebsco.com/linkprocessor/plink?id=ff9db0f7-14f2-3c57-bb76-19f6ba1dcd7f">https://research.ebsco.com/linkprocessor/plink?id=ff9db0f7-14f2-3c57-bb76-19f6ba1dcd7f</a>.</p></div></div><p>For recent summaries of species-level cooperation and mutualism, see paleontologist and evolutionary biologist Stephen Jay Gould’s chapter on “Species as Individuals in the Hierachical Theory of Selection”<span class="citation" data-cites="alma991043312273803276">;<sup>9</sup></span> primatologist Michael Tomasello’s <em>Why We Cooperate</em>;<span class="citation" data-cites="tomasello2009"><sup>10</sup></span> and David Sloan Wilson’s <em>Does Altruism Exist?</em>.<span class="citation" data-cites="wilson2014"><sup>11</sup></span></p>




 ]]></description>
  <guid>https://carwilb.github.io/teaching/history-anthro-w4.html</guid>
  <pubDate>Fri, 12 Sep 2025 05:00:00 GMT</pubDate>
</item>
<item>
  <title>Anthropology and the Enlightenment</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/teaching/history-anthro-w3.html</link>
  <description><![CDATA[ 





<p>This week’s readings attempt to capture anthropological thinking at the moment when Enlightenment thought is seeding the formation of the modern research university. While it will take some further decades for “the science of man” to escape from Natural History and take its place alongside other social scientific disciplines in the Western Academy, essential foundation for all three of these elements in that story (anthropology, the research university, and the social sciences) were all being laid around 1800.</p>
<p>This larger story is the reason why we return to Eric Wolf’s “Introduction” to <em>Europe and the People Without History</em><span class="citation" data-cites="wolf1982"><sup>1</sup></span> this week. Wolf’s book attempts a six-century account of global processes in which both colonizing and colonized societies were radically transformed and his introduction make the theoretical case that the often-presumed object of anthropological study, distinct “traditional societies,” each with their own “culture,” is an illusion.</p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;Eric R. Wolf, <em>Introduction</em> (Univ. of California Press, 1982).</p></div></div><blockquote class="blockquote">
<p>By turning names into things we create false models of reality. By endowing nations, societies, or cultures with the qualities of internally homogeneous and externally distinctive and bounded objects, we create a model of the world as a global pool hall in which the entities spin off each other like so many hard and round billiard balls. Thus it becomes easy to sort the world into differently colored balls… (6)</p>
</blockquote>
<p>Relevantly for this week, Wolf describes “The Rise of the Social Sciences” in an argument which is more of an intellectual lament than a chronological account. For Wolf, sociology, political science, and economics are incomplete disciplines, which artificially sever certain relationships from the broader whole, most crucially by failing to take an integrated look at political economy. He notes that sociology was initially a political project aimed at fostering social cohesion (on this point, see more directly Mostajir<span class="citation" data-cites="mostajir"><sup>2</sup></span>), and that political science and economics have been oriented around formal models of their spheres of interest that leave out that which is crucial.</p>
<div class="no-row-height column-margin column-container"><div id="fn2"><p><sup>2</sup>&nbsp;Parysa Mostajir, <em>Social Physics, Industrialization, and the French Revolution</em>, n.d., <a href="https://voices.uchicago.edu/pmostajir/2020/10/19/history-of-social-science-lecture-4-social-science-industrialization-and-the-french-revolution/">https://voices.uchicago.edu/pmostajir/2020/10/19/history-of-social-science-lecture-4-social-science-industrialization-and-the-french-revolution/</a>.</p></div><div id="fn3"><p><sup>3</sup>&nbsp;Immanuel Kant, <span>“Beantwortung Der Frage: Was Ist Aufklärung?”</span> <em>Berlinische Monatsschrift</em>, December 1784.</p></div><div id="fn4"><p><sup>4</sup>&nbsp;Immanuel Kant, <em>Answering the Question: What Is Enlightenment?</em>, 1799.</p></div><div id="fn5"><p><sup>5</sup>&nbsp;Michel Foucault, <em>What Is Enlightenment?</em>, n.d., <a href="https://foucault.info/documents/foucault.whatIsEnlightenment.en/">https://foucault.info/documents/foucault.whatIsEnlightenment.en/</a>.</p></div></div><p>All of this separation and stratification has taken place in the context of the modern research university, that entity that emerged in the 19th century as states worked to formalize the space of intellectual inquiry demanded by Enlightenment thinkers. In the readings these are represented by Immanuel Kant’s essay, “What is Enlightenment?”<span class="citation" data-cites="kant1784"><sup>3</sup></span><span class="citation" data-cites="kant1799"><sup>4</sup></span> and the commentary on it by Michel Foucault.<span class="citation" data-cites="foucault"><sup>5</sup></span> Without denying that the state is due the obedience of the public, Kant urges the right to freedom of argument.</p>
<p>The devastating invasions by Republican and Napoleonic France taught a stinging lesson to the still-divided German-speaking realms, and “counter-Enlightenment” reforms of society included the creation of new academic, military, and state institutions. Germany’s Humboldtian universities set out the basic contours of modern academic life: tenure, freedom of thought for professors, unity of research and teaching, and isolation from non-scholarly life.<span class="citation" data-cites="anderson2004"><sup>6</sup></span></p>
<div class="no-row-height column-margin column-container"><div id="fn6"><p><sup>6</sup>&nbsp;R. D. Anderson, <em>European Universities from the Enlightenment to 1914</em> (Oxford University Press, 2004), <a href="https://doi.org/10.1093/acprof:oso/9780198206606.001.0001">https://doi.org/10.1093/acprof:oso/9780198206606.001.0001</a>.</p></div></div><div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/Cuvier-Butterflies-Skulls.jpeg" class="img-fluid figure-img"></p>
<figcaption>Georges Cuvier (1769-1832) and works from <em>La Regne Animal</em></figcaption>
</figure>
</div>
<p>In France, Enlightenment influence would be sanctified. Voltaire and Rousseau were literally exhumed and reburied at the Panthéon<span class="citation" data-cites="tatum2016"><sup>7</sup></span> and a variety of symbolic and institutional rebirths remade the French state. In that context, both revolutionary and post-Revolutionary Napoleonic governments sought to remake the academy, along with the rest of society.</p>
<div class="no-row-height column-margin column-container"><div id="fn7"><p><sup>7</sup>&nbsp;Talj Gordon Tatum, <em>Panthéonizations and Exhumations : Ceremonial Reburials in Revolutionary France.</em>, 2016, <a href="https://hdl.handle.net/2104/9800">https://hdl.handle.net/2104/9800</a>.</p></div><div class="">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/2983px-pantheon-1795.jpg" class="img-fluid figure-img"></p>
<figcaption>The Panthéon of Paris in 1795; image by Jean Baptiste Hilaire</figcaption>
</figure>
</div>
</div></div>
<p>French natural history, with Georges Cuvier as a leading scholar, focused on systematizing knowledge of past and present lifeforms and he turned its categorizing gaze upon humans as well, proposing a three-part, hierarchical racial schema (Caucasian, Mongolian, Ethiopian) with multipe sub-branches. George Stocking lays out the broader directions of early anthropological research in France.</p>




 ]]></description>
  <guid>https://carwilb.github.io/teaching/history-anthro-w3.html</guid>
  <pubDate>Thu, 11 Sep 2025 05:00:00 GMT</pubDate>
</item>
<item>
  <title>When did anthropology begin in the Western Hemisphere?</title>
  <dc:creator>Carwil Bjork-James</dc:creator>
  <link>https://carwilb.github.io/teaching/history-anthro-w2.html</link>
  <description><![CDATA[ 





<p>The second week’s readings tries to capture the “dawn” of anthropology in the Western Hemisphere (or perhaps the world engaged by European colonialism). It works not so much by seeking out the first sources chronologically as by capturing the range of different possible voices describing human and cultural others.<span class="citation" data-cites="bjork-james2011"><sup>1</sup></span></p>
<div class="no-row-height column-margin column-container"><div id="fn1"><p><sup>1</sup>&nbsp;Carwil Bjork-James, <em>Indigenous March in Defense of Isiboro Sécure Arrives in La Paz, Challenges Evo Morales Government (Background Briefing)</em>, October 16, 2011.</p></div><div class="">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/Bartolomé_de_las_Casas_(1552)_Brevisima_relación_de_la_destrucción_de_las_Indias.png" class="img-fluid figure-img"></p>
<figcaption>Cover of Las Casas’ <em>A Short Account of the Destruction of the Indies</em> (Seville, 1552)</figcaption>
</figure>
</div>
</div><div id="fn2"><p><sup>2</sup>&nbsp;Bartolomé de las Casas, <em>Bartolomé de las Casas and the defense of Amerindian rights: a brief history with documents</em>, Atlantic crossings (The University of Alabama Press, 2020).</p></div><div id="fn3"><p><sup>3</sup>&nbsp;Holger Henke and Fred Reńo, <em>Modern Political Culture in the Caribbean</em> (University of the West Indies Press, 2003).</p></div></div>
<p>Chronologically, the readings begin with the 16th century Spanish friar and missionary Bartolomé de las Casas (1484-1566), who wrote about the indigenous peoples of the Caribbean and Central America.<span class="citation" data-cites="casas2020"><sup>2</sup></span> Las Casas is often credited as one of the first advocates for indigenous rights in the Americas, and his writings provide a critical perspective on the brutal treatment of native populations by European colonizers. Lewis Hanke<span class="citation" data-cites="henke2003"><sup>3</sup></span> profiles Las Casas as an anthropologist, specifically focusing on “his approach to the study of cultures so alien to his own” who used “the vast amount of material he had patiently gathered on various aspects of Indian life” to “understand the importance of their customs and beliefs within the framework of their own culture.”</p>
<p>Christian Feest profiles<span class="citation" data-cites="feest1992"><sup>4</sup></span> early European reactions to Aztec and Mesoamerican art brought to Europe in 1521, the moment when the Spanish invasion of the Aztec empire was still ongoing. Albrecht Dürer (1471-1528) is one of the first Europeans to react to Mesoamerican art, and he did so highly positively noting, “And yet I have all days of my life seen nothing that has thus delighted my heart as these things. For I have seen among them wonderful artificial things and have wondered at the subtle <em>ingenia</em> of the people in foreign lands.”</p>
<div class="no-row-height column-margin column-container"><div id="fn4"><p><sup>4</sup>&nbsp;Christian F. Feest, <em>A First European Assessment of Indigenous American Art</em>, 1992.</p></div><div id="fn5"><p><sup>5</sup>&nbsp;Captain Bernardo de Vargas Machuca, <em>A Brief Description of All the Western Indies</em>, ed. Kris Lane, Neil L. Whitehead, Jo Ellen Fair, and Leigh A. Payne (Duke University Press, 2008), 165–212, <a href="https://www.degruyterbrill.com/document/doi/10.1515/9780822389064-010/html">https://www.degruyterbrill.com/document/doi/10.1515/9780822389064-010/html</a>.</p></div></div><p>Captain Bernardo de Vargas Machuca<span class="citation" data-cites="machuca2008"><sup>5</sup></span> (1557-1622) took a different view, situating his descriptive work on “the Western Indies” (the Americas, but largely South America) alongside a manual of advice for Spanish soldiers and colonizers and a polemical defense of the conquest against critics like Las Casas.</p>
<p>In <em>American Pentimiento</em>,<span class="citation" data-cites="seed2001"><sup>6</sup></span> Patricia Seed reflects on Iberian and English descriptions of indigenous peoples in the Americas. She argues that these texts should be read not as straightforward ethnographic accounts but also texts shaped around the need to provide religious and moral justifications for the appropriation of indigenous lands and labor. The optional chapter, “Sustaining Political Identities” summarizes the overall argument of her book, while “Cannibals” details this storytelling in Spanish America.</p>
<div class="no-row-height column-margin column-container"><div id="fn6"><p><sup>6</sup>&nbsp;Patricia Seed, <em>American Pentimento: The Invention of Indians and the Pursuit of Riches</em> (University of Minnesota Press, 2001).</p></div><div id="fn7"><p><sup>7</sup>&nbsp;Roger Williams, <em>A key into the language of America</em> (Bedford, MA : Applewood Books, 1997), <a href="http://archive.org/details/bub_gb_wOfpAPRxlVYC">http://archive.org/details/bub_gb_wOfpAPRxlVYC</a>.</p></div><div id="fn8"><p><sup>8</sup>&nbsp;Sarah Vowell, <em>The Wordy Shipmates</em> (Penguin, 2009).</p></div><div id="fn9"><p><sup>9</sup>&nbsp;Ana González, <em>Roger Williams and the Pequot War</em>, n.d., <a href="https://explore.thepublicsradio.org/stories/roger-williams-and-the-pequot-war/">https://explore.thepublicsradio.org/stories/roger-williams-and-the-pequot-war/</a>.</p></div></div><p>In the English colonization of North America (note that colonization precedes the 1706-07 union forming Great Britain), Roger Williams, the Puritan founder of Rhode Island, is among the first to publish an ethnographic text, <em>A Key into the Language of America</em> (1643).<span class="citation" data-cites="williams1997"><sup>7</sup></span> The excerpt from Sarah Vowell’s <em>The Wordy Shipmates</em><span class="citation" data-cites="vowell2009"><sup>8</sup></span> narrates this multivocal text as well as the Pequot War that preceded its publication. This podcast<span class="citation" data-cites="gonzález"><sup>9</sup></span> focuses on Roger Williams’ direct participation in the Pequot War.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/Mosaic-Podcast-Roger-Williams-Pequot-War-1.jpg" class="img-fluid figure-img"></p>
<figcaption>Contemporary woodcut illustration of the Mystic massacre</figcaption>
</figure>
</div>
<p>Finally, the first three chapters of Amitav Ghosh’s <em>The Nutmeg’s Curse</em><span class="citation" data-cites="ghosh2021"><sup>10</sup></span> situate the contemporaneous events of the Pequot war and the Dutch conquest of the Banda Islands in 1621-22. Ghosh’s up-close look at early colonial violence speaks to the decisions behind colonial violence as well as the interrelations among different colonial projects and the internal religious wars of Europe. The chapter that follows argues that the colonization of indigenous lands is also interrelated with the de-sacralization of nature in Europe through the scientific revolution.</p>


<div class="no-row-height column-margin column-container"><div id="fn10"><p><sup>10</sup>&nbsp;Amitav Ghosh, <em>The nutmeg’s curse: Parables for a planet in crisis</em> (University of Chicago Press, 2021).</p></div></div>

 ]]></description>
  <guid>https://carwilb.github.io/teaching/history-anthro-w2.html</guid>
  <pubDate>Thu, 28 Aug 2025 05:00:00 GMT</pubDate>
</item>
<item>
  <title>Panel on Researching Violence for AAA 2025</title>
  <dc:creator>Carwil Bjork-James and Jennifer Burrell</dc:creator>
  <link>https://carwilb.github.io/posts/cfp-aaa-violence.html</link>
  <description><![CDATA[ 





<section id="call-for-panelists" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="call-for-panelists">Call for Panelists…</h2>
<p>Following up on a panel at the SLACA conference in Panamá, several of us are organizing a panel discussing our research on political and structural violence for this November’s American Anthropological Association conference in New Orleans, November 19-23, 2025. We are seeking up to three additional presenters for this panel.</p>
<p>If you are interested in joining us, please email an abstract by Monday, April 14. We will notify you the following day.</p>
<p>Abstracts should be sent jointly to Jennifer Burrell jburrell@albany.edu and Carwil Bjork-James c.bjork-james@vanderbilt.edu</p>

<div class="no-row-height column-margin column-container"><div class="">
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://carwilb.github.io/images/national-memorial-county-coffins.jpg" class="img-fluid figure-img" alt="Metal boxes resembling coffins hang in the National Memorial for Peace and Justice, Montgomery, Alabama"></p>
<figcaption>Memorials by county chronicle those killed by lynching at the National Memorial for Peace and Justice, Montgomery, Alabama</figcaption>
</figure>
</div>
</div></div></section>
<section id="spectral-traces-unveiling-power-through-engaged-research-on-violence" class="level2">
<h2 class="anchored" data-anchor-id="spectral-traces-unveiling-power-through-engaged-research-on-violence">Spectral Traces: Unveiling Power through Engaged Research on Violence</h2>
<p>In alignment with this year’s AAA theme of “Ghosts,” this panel explores how research on individual deaths and acts of violence intersects with exposing larger systems of power. By examining specific instances of state and political violence, we aim to illuminate the structural forces that perpetuate cycles of oppression, displacement, and human rights abuses across diverse contexts.</p>
<p>Our panelists investigate how communities grapple with the aftermath of violence, from engagement with grassroots movements to state-sanctioned forensic investigations. We consider the ways in which death, loss, and sacrifice are imbued with social and political meaning, often becoming rallying points for resistance and transformation. The panel delves into the complex relationships between violence and care, exploring how sites of trauma can be reclaimed and repurposed by affected communities.</p>
<p>Central to our discussion is the role of memory and commemoration in confronting past atrocities. We examine how societies navigate the liminal spaces between remembering and forgetting, and how mapping and documenting violent events can serve as both a scientific endeavor and a form of social mobilization. The panel also addresses the challenges of seeking justice and remedy in the wake of displacement and state violence, considering both formal legal processes and grassroots initiatives.</p>
<p>By focusing on specific case studies from Latin America and the Caribbean, we aim to draw broader conclusions about the nature of political violence and its long-term impacts on individuals and communities. Our interdisciplinary approach combines anthropological, historical, and forensic methodologies to uncover the often invisible structures that underpin systems of oppression.</p>
<p>Key themes include:</p>
<ul>
<li>The mobilization of death and sacrifice in social movements</li>
<li>Transformation of spaces associated with state violence</li>
<li>The intersection of science, law, and community action in human rights investigations</li>
<li>Mapping and memorialization as tools for confronting past atrocities</li>
<li>The social history and ongoing consequences of forced displacement</li>
<li>Grassroots and state-led approaches to transitional justice</li>
</ul>
<p>Through these diverse yet interconnected topics, we seek to contribute to ongoing debates about historical memory, accountability, and the enduring legacies of political violence. By examining the “ghostly” remnants of past conflicts and their contemporary manifestations, we hope to shed light on pathways toward healing, justice, and societal transformation.</p>


</section>

 ]]></description>
  <guid>https://carwilb.github.io/posts/cfp-aaa-violence.html</guid>
  <pubDate>Fri, 11 Apr 2025 05:00:00 GMT</pubDate>
</item>
</channel>
</rss>
