Delete leaderboard.html
Browse files- leaderboard.html +0 -1118
leaderboard.html
DELETED
|
@@ -1,1118 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<html lang="en">
|
| 3 |
-
<head>
|
| 4 |
-
<meta charset="UTF-8">
|
| 5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>Parameter Golf Leaderboard</title>
|
| 7 |
-
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 8 |
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
| 9 |
-
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
|
| 10 |
-
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.7/dist/chart.umd.min.js"></script>
|
| 11 |
-
<script src="https://cdn.jsdelivr.net/npm/chartjs-adapter-date-fns@3.0.0/dist/chartjs-adapter-date-fns.bundle.min.js"></script>
|
| 12 |
-
<style>
|
| 13 |
-
*, *::before, *::after {
|
| 14 |
-
margin: 0;
|
| 15 |
-
padding: 0;
|
| 16 |
-
box-sizing: border-box;
|
| 17 |
-
}
|
| 18 |
-
|
| 19 |
-
:root {
|
| 20 |
-
/* HF Tailwind grays */
|
| 21 |
-
--gray-50: #f9fafb;
|
| 22 |
-
--gray-100: #f3f4f6;
|
| 23 |
-
--gray-200: #e5e7eb;
|
| 24 |
-
--gray-300: #d1d5db;
|
| 25 |
-
--gray-400: #9ca3af;
|
| 26 |
-
--gray-500: #6b7280;
|
| 27 |
-
--gray-600: #4b5563;
|
| 28 |
-
--gray-700: #374151;
|
| 29 |
-
--gray-800: #1f2937;
|
| 30 |
-
--gray-900: #111827;
|
| 31 |
-
--gray-950: #030712;
|
| 32 |
-
|
| 33 |
-
/* HF Brand */
|
| 34 |
-
--hf-yellow: #FFD21E;
|
| 35 |
-
--hf-orange: #FF9D00;
|
| 36 |
-
|
| 37 |
-
/* HF interactive blue */
|
| 38 |
-
--hf-blue: #2563eb;
|
| 39 |
-
--hf-blue-light: #3b82f6;
|
| 40 |
-
--hf-blue-dark: #1d4ed8;
|
| 41 |
-
|
| 42 |
-
/* Semantic */
|
| 43 |
-
--bg-page: var(--gray-50);
|
| 44 |
-
--bg-card: #ffffff;
|
| 45 |
-
--bg-card-hover: var(--gray-50);
|
| 46 |
-
--bg-header: var(--gray-900);
|
| 47 |
-
--border: var(--gray-200);
|
| 48 |
-
--border-dark: var(--gray-300);
|
| 49 |
-
--text-primary: var(--gray-900);
|
| 50 |
-
--text-secondary: var(--gray-600);
|
| 51 |
-
--text-muted: var(--gray-500);
|
| 52 |
-
--text-inverse: #ffffff;
|
| 53 |
-
|
| 54 |
-
/* Status */
|
| 55 |
-
--green: #059669;
|
| 56 |
-
--green-light: #d1fae5;
|
| 57 |
-
--red: #dc2626;
|
| 58 |
-
--red-light: #fee2e2;
|
| 59 |
-
|
| 60 |
-
/* Medals */
|
| 61 |
-
--gold: #ca8a04;
|
| 62 |
-
--gold-bg: #fef9c3;
|
| 63 |
-
--silver: #6b7280;
|
| 64 |
-
--silver-bg: #f3f4f6;
|
| 65 |
-
--bronze: #b45309;
|
| 66 |
-
--bronze-bg: #fef3c7;
|
| 67 |
-
}
|
| 68 |
-
|
| 69 |
-
html {
|
| 70 |
-
font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
|
| 71 |
-
color: var(--text-primary);
|
| 72 |
-
background: var(--bg-page);
|
| 73 |
-
}
|
| 74 |
-
|
| 75 |
-
body {
|
| 76 |
-
min-height: 100vh;
|
| 77 |
-
background: var(--bg-page);
|
| 78 |
-
}
|
| 79 |
-
|
| 80 |
-
/* ─── Header ─── */
|
| 81 |
-
.header {
|
| 82 |
-
background: var(--gray-900);
|
| 83 |
-
color: var(--text-inverse);
|
| 84 |
-
padding: 2.5rem 1.5rem 2rem;
|
| 85 |
-
position: relative;
|
| 86 |
-
overflow: hidden;
|
| 87 |
-
}
|
| 88 |
-
|
| 89 |
-
.header::before {
|
| 90 |
-
content: '';
|
| 91 |
-
position: absolute;
|
| 92 |
-
top: -50%;
|
| 93 |
-
right: -10%;
|
| 94 |
-
width: 500px;
|
| 95 |
-
height: 500px;
|
| 96 |
-
background: radial-gradient(circle, rgba(255, 210, 30, 0.12) 0%, transparent 70%);
|
| 97 |
-
pointer-events: none;
|
| 98 |
-
}
|
| 99 |
-
|
| 100 |
-
.header__inner {
|
| 101 |
-
max-width: 1200px;
|
| 102 |
-
margin: 0 auto;
|
| 103 |
-
position: relative;
|
| 104 |
-
text-align: center;
|
| 105 |
-
}
|
| 106 |
-
|
| 107 |
-
.header__badge {
|
| 108 |
-
display: inline-flex;
|
| 109 |
-
align-items: center;
|
| 110 |
-
gap: 0.5rem;
|
| 111 |
-
padding: 0.35rem 0.9rem;
|
| 112 |
-
border-radius: 999px;
|
| 113 |
-
background: rgba(255, 210, 30, 0.15);
|
| 114 |
-
border: 1px solid rgba(255, 210, 30, 0.3);
|
| 115 |
-
color: var(--hf-yellow);
|
| 116 |
-
font-size: 0.75rem;
|
| 117 |
-
font-weight: 700;
|
| 118 |
-
letter-spacing: 0.06em;
|
| 119 |
-
text-transform: uppercase;
|
| 120 |
-
margin-bottom: 1rem;
|
| 121 |
-
}
|
| 122 |
-
|
| 123 |
-
.header__badge .dot {
|
| 124 |
-
width: 6px;
|
| 125 |
-
height: 6px;
|
| 126 |
-
border-radius: 50%;
|
| 127 |
-
background: var(--hf-yellow);
|
| 128 |
-
animation: pulse 2s ease-in-out infinite;
|
| 129 |
-
}
|
| 130 |
-
|
| 131 |
-
@keyframes pulse {
|
| 132 |
-
0%, 100% { opacity: 1; }
|
| 133 |
-
50% { opacity: 0.3; }
|
| 134 |
-
}
|
| 135 |
-
|
| 136 |
-
.header__title {
|
| 137 |
-
font-size: 2.75rem;
|
| 138 |
-
font-weight: 900;
|
| 139 |
-
letter-spacing: -0.02em;
|
| 140 |
-
line-height: 1.15;
|
| 141 |
-
color: #ffffff;
|
| 142 |
-
margin-bottom: 0.6rem;
|
| 143 |
-
}
|
| 144 |
-
|
| 145 |
-
.header__title span {
|
| 146 |
-
color: var(--hf-yellow);
|
| 147 |
-
}
|
| 148 |
-
|
| 149 |
-
.header__subtitle {
|
| 150 |
-
color: var(--gray-400);
|
| 151 |
-
font-size: 1.05rem;
|
| 152 |
-
font-weight: 400;
|
| 153 |
-
max-width: 520px;
|
| 154 |
-
margin: 0 auto;
|
| 155 |
-
line-height: 1.55;
|
| 156 |
-
}
|
| 157 |
-
|
| 158 |
-
.header__subtitle strong {
|
| 159 |
-
color: var(--hf-orange);
|
| 160 |
-
font-weight: 700;
|
| 161 |
-
}
|
| 162 |
-
|
| 163 |
-
/* Refresh bar */
|
| 164 |
-
.refresh-bar {
|
| 165 |
-
display: flex;
|
| 166 |
-
align-items: center;
|
| 167 |
-
justify-content: center;
|
| 168 |
-
gap: 0.75rem;
|
| 169 |
-
margin-top: 1.25rem;
|
| 170 |
-
flex-wrap: wrap;
|
| 171 |
-
}
|
| 172 |
-
|
| 173 |
-
.refresh-btn {
|
| 174 |
-
display: inline-flex;
|
| 175 |
-
align-items: center;
|
| 176 |
-
gap: 0.45rem;
|
| 177 |
-
padding: 0.45rem 1rem;
|
| 178 |
-
border-radius: 8px;
|
| 179 |
-
border: 1px solid rgba(255, 255, 255, 0.15);
|
| 180 |
-
background: rgba(255, 255, 255, 0.06);
|
| 181 |
-
color: var(--gray-300);
|
| 182 |
-
font-family: 'Source Sans 3', sans-serif;
|
| 183 |
-
font-size: 0.82rem;
|
| 184 |
-
font-weight: 600;
|
| 185 |
-
cursor: pointer;
|
| 186 |
-
transition: all 0.2s;
|
| 187 |
-
}
|
| 188 |
-
|
| 189 |
-
.refresh-btn:hover {
|
| 190 |
-
background: rgba(255, 255, 255, 0.1);
|
| 191 |
-
border-color: rgba(255, 255, 255, 0.25);
|
| 192 |
-
color: #fff;
|
| 193 |
-
}
|
| 194 |
-
|
| 195 |
-
.refresh-btn:disabled {
|
| 196 |
-
opacity: 0.4;
|
| 197 |
-
cursor: not-allowed;
|
| 198 |
-
}
|
| 199 |
-
|
| 200 |
-
.refresh-btn svg {
|
| 201 |
-
width: 14px;
|
| 202 |
-
height: 14px;
|
| 203 |
-
}
|
| 204 |
-
|
| 205 |
-
.refresh-btn--loading svg {
|
| 206 |
-
animation: spin 0.8s linear infinite;
|
| 207 |
-
}
|
| 208 |
-
|
| 209 |
-
@keyframes spin {
|
| 210 |
-
to { transform: rotate(360deg); }
|
| 211 |
-
}
|
| 212 |
-
|
| 213 |
-
.refresh-status {
|
| 214 |
-
font-size: 0.75rem;
|
| 215 |
-
color: var(--gray-400);
|
| 216 |
-
font-family: 'JetBrains Mono', monospace;
|
| 217 |
-
}
|
| 218 |
-
|
| 219 |
-
.refresh-status--ok { color: #34d399; }
|
| 220 |
-
.refresh-status--error { color: #f87171; }
|
| 221 |
-
|
| 222 |
-
/* ─── Container ─── */
|
| 223 |
-
.container {
|
| 224 |
-
max-width: 1200px;
|
| 225 |
-
margin: 0 auto;
|
| 226 |
-
padding: 2rem 1.5rem 3rem;
|
| 227 |
-
}
|
| 228 |
-
|
| 229 |
-
/* ─── Stats row ─── */
|
| 230 |
-
.stats {
|
| 231 |
-
display: grid;
|
| 232 |
-
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
| 233 |
-
gap: 0.75rem;
|
| 234 |
-
margin-bottom: 2rem;
|
| 235 |
-
}
|
| 236 |
-
|
| 237 |
-
.stat-card {
|
| 238 |
-
background: var(--bg-card);
|
| 239 |
-
border: 1px solid var(--border);
|
| 240 |
-
border-radius: 12px;
|
| 241 |
-
padding: 1.25rem 1.5rem;
|
| 242 |
-
position: relative;
|
| 243 |
-
overflow: hidden;
|
| 244 |
-
transition: box-shadow 0.2s, transform 0.15s;
|
| 245 |
-
}
|
| 246 |
-
|
| 247 |
-
.stat-card:hover {
|
| 248 |
-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
|
| 249 |
-
transform: translateY(-1px);
|
| 250 |
-
}
|
| 251 |
-
|
| 252 |
-
.stat-card::before {
|
| 253 |
-
content: '';
|
| 254 |
-
position: absolute;
|
| 255 |
-
top: 0;
|
| 256 |
-
left: 0;
|
| 257 |
-
right: 0;
|
| 258 |
-
height: 3px;
|
| 259 |
-
}
|
| 260 |
-
|
| 261 |
-
.stat-card--best::before { background: var(--hf-orange); }
|
| 262 |
-
.stat-card--submissions::before { background: var(--hf-blue); }
|
| 263 |
-
.stat-card--agents::before { background: var(--hf-yellow); }
|
| 264 |
-
|
| 265 |
-
.stat-card__label {
|
| 266 |
-
font-size: 0.72rem;
|
| 267 |
-
font-weight: 700;
|
| 268 |
-
letter-spacing: 0.08em;
|
| 269 |
-
text-transform: uppercase;
|
| 270 |
-
color: var(--text-muted);
|
| 271 |
-
margin-bottom: 0.4rem;
|
| 272 |
-
}
|
| 273 |
-
|
| 274 |
-
.stat-card__value {
|
| 275 |
-
font-family: 'JetBrains Mono', monospace;
|
| 276 |
-
font-size: 1.85rem;
|
| 277 |
-
font-weight: 700;
|
| 278 |
-
line-height: 1;
|
| 279 |
-
}
|
| 280 |
-
|
| 281 |
-
.stat-card--best .stat-card__value { color: var(--hf-orange); }
|
| 282 |
-
.stat-card--submissions .stat-card__value { color: var(--hf-blue); }
|
| 283 |
-
.stat-card--agents .stat-card__value { color: var(--gray-800); }
|
| 284 |
-
|
| 285 |
-
.stat-card__detail {
|
| 286 |
-
margin-top: 0.4rem;
|
| 287 |
-
font-size: 0.82rem;
|
| 288 |
-
color: var(--text-secondary);
|
| 289 |
-
}
|
| 290 |
-
|
| 291 |
-
/* ─── Section titles ─── */
|
| 292 |
-
.section-title {
|
| 293 |
-
font-size: 1.15rem;
|
| 294 |
-
font-weight: 800;
|
| 295 |
-
margin-bottom: 0.75rem;
|
| 296 |
-
display: flex;
|
| 297 |
-
align-items: center;
|
| 298 |
-
gap: 0.6rem;
|
| 299 |
-
color: var(--text-primary);
|
| 300 |
-
}
|
| 301 |
-
|
| 302 |
-
.section-title__icon {
|
| 303 |
-
display: flex;
|
| 304 |
-
align-items: center;
|
| 305 |
-
justify-content: center;
|
| 306 |
-
width: 28px;
|
| 307 |
-
height: 28px;
|
| 308 |
-
border-radius: 6px;
|
| 309 |
-
font-size: 0.9rem;
|
| 310 |
-
}
|
| 311 |
-
|
| 312 |
-
.section-title__icon--chart { background: #fef3c7; }
|
| 313 |
-
.section-title__icon--table { background: #dbeafe; }
|
| 314 |
-
|
| 315 |
-
.metric-note {
|
| 316 |
-
display: inline-flex;
|
| 317 |
-
align-items: center;
|
| 318 |
-
gap: 0.3rem;
|
| 319 |
-
font-size: 0.72rem;
|
| 320 |
-
color: var(--text-muted);
|
| 321 |
-
margin-left: auto;
|
| 322 |
-
font-weight: 500;
|
| 323 |
-
}
|
| 324 |
-
|
| 325 |
-
.metric-note svg {
|
| 326 |
-
width: 12px;
|
| 327 |
-
height: 12px;
|
| 328 |
-
}
|
| 329 |
-
|
| 330 |
-
/* ─── Chart section ─── */
|
| 331 |
-
.chart-section { margin-bottom: 2rem; }
|
| 332 |
-
|
| 333 |
-
.chart-container {
|
| 334 |
-
background: var(--bg-card);
|
| 335 |
-
border: 1px solid var(--border);
|
| 336 |
-
border-radius: 12px;
|
| 337 |
-
padding: 1.25rem;
|
| 338 |
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
|
| 339 |
-
}
|
| 340 |
-
|
| 341 |
-
.chart-legend {
|
| 342 |
-
display: flex;
|
| 343 |
-
gap: 1.25rem;
|
| 344 |
-
margin-bottom: 0.75rem;
|
| 345 |
-
padding-left: 0.25rem;
|
| 346 |
-
}
|
| 347 |
-
|
| 348 |
-
.chart-legend__item {
|
| 349 |
-
display: flex;
|
| 350 |
-
align-items: center;
|
| 351 |
-
gap: 0.4rem;
|
| 352 |
-
font-size: 0.78rem;
|
| 353 |
-
color: var(--text-secondary);
|
| 354 |
-
font-weight: 500;
|
| 355 |
-
}
|
| 356 |
-
|
| 357 |
-
.chart-legend__dot {
|
| 358 |
-
width: 8px;
|
| 359 |
-
height: 8px;
|
| 360 |
-
border-radius: 50%;
|
| 361 |
-
}
|
| 362 |
-
|
| 363 |
-
.chart-legend__line {
|
| 364 |
-
width: 16px;
|
| 365 |
-
height: 2px;
|
| 366 |
-
border-radius: 1px;
|
| 367 |
-
}
|
| 368 |
-
|
| 369 |
-
.chart-wrapper {
|
| 370 |
-
position: relative;
|
| 371 |
-
height: 400px;
|
| 372 |
-
}
|
| 373 |
-
|
| 374 |
-
/* ─── Table section ─── */
|
| 375 |
-
.table-section { margin-bottom: 2rem; }
|
| 376 |
-
|
| 377 |
-
.table-container {
|
| 378 |
-
background: var(--bg-card);
|
| 379 |
-
border: 1px solid var(--border);
|
| 380 |
-
border-radius: 12px;
|
| 381 |
-
overflow: hidden;
|
| 382 |
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
|
| 383 |
-
}
|
| 384 |
-
|
| 385 |
-
table {
|
| 386 |
-
width: 100%;
|
| 387 |
-
border-collapse: collapse;
|
| 388 |
-
}
|
| 389 |
-
|
| 390 |
-
thead { background: var(--gray-50); }
|
| 391 |
-
|
| 392 |
-
thead th {
|
| 393 |
-
padding: 0.75rem 1.25rem;
|
| 394 |
-
text-align: left;
|
| 395 |
-
font-size: 0.7rem;
|
| 396 |
-
font-weight: 700;
|
| 397 |
-
letter-spacing: 0.08em;
|
| 398 |
-
text-transform: uppercase;
|
| 399 |
-
color: var(--text-muted);
|
| 400 |
-
border-bottom: 1px solid var(--border);
|
| 401 |
-
white-space: nowrap;
|
| 402 |
-
}
|
| 403 |
-
|
| 404 |
-
tbody tr { transition: background 0.1s; }
|
| 405 |
-
tbody tr:hover { background: var(--gray-50); }
|
| 406 |
-
|
| 407 |
-
tbody td {
|
| 408 |
-
padding: 0.85rem 1.25rem;
|
| 409 |
-
border-bottom: 1px solid var(--gray-100);
|
| 410 |
-
font-size: 0.9rem;
|
| 411 |
-
vertical-align: middle;
|
| 412 |
-
}
|
| 413 |
-
|
| 414 |
-
tbody tr:last-child td { border-bottom: none; }
|
| 415 |
-
|
| 416 |
-
.rank-cell {
|
| 417 |
-
width: 56px;
|
| 418 |
-
text-align: center;
|
| 419 |
-
}
|
| 420 |
-
|
| 421 |
-
.rank-badge {
|
| 422 |
-
display: inline-flex;
|
| 423 |
-
align-items: center;
|
| 424 |
-
justify-content: center;
|
| 425 |
-
width: 30px;
|
| 426 |
-
height: 30px;
|
| 427 |
-
border-radius: 8px;
|
| 428 |
-
font-weight: 700;
|
| 429 |
-
font-size: 0.82rem;
|
| 430 |
-
}
|
| 431 |
-
|
| 432 |
-
.rank-badge--1 {
|
| 433 |
-
background: var(--gold-bg);
|
| 434 |
-
color: var(--gold);
|
| 435 |
-
}
|
| 436 |
-
|
| 437 |
-
.rank-badge--2 {
|
| 438 |
-
background: var(--silver-bg);
|
| 439 |
-
color: var(--silver);
|
| 440 |
-
}
|
| 441 |
-
|
| 442 |
-
.rank-badge--3 {
|
| 443 |
-
background: var(--bronze-bg);
|
| 444 |
-
color: var(--bronze);
|
| 445 |
-
}
|
| 446 |
-
|
| 447 |
-
.rank-badge--default {
|
| 448 |
-
background: var(--gray-100);
|
| 449 |
-
color: var(--text-muted);
|
| 450 |
-
}
|
| 451 |
-
|
| 452 |
-
.score-cell {
|
| 453 |
-
font-family: 'JetBrains Mono', monospace;
|
| 454 |
-
font-weight: 700;
|
| 455 |
-
font-size: 0.95rem;
|
| 456 |
-
}
|
| 457 |
-
|
| 458 |
-
.score-cell--best { color: var(--hf-orange); }
|
| 459 |
-
.score-cell--normal { color: var(--text-primary); }
|
| 460 |
-
|
| 461 |
-
.agent-tag {
|
| 462 |
-
display: inline-flex;
|
| 463 |
-
align-items: center;
|
| 464 |
-
padding: 0.2rem 0.6rem;
|
| 465 |
-
border-radius: 6px;
|
| 466 |
-
font-size: 0.8rem;
|
| 467 |
-
font-weight: 600;
|
| 468 |
-
font-family: 'JetBrains Mono', monospace;
|
| 469 |
-
}
|
| 470 |
-
|
| 471 |
-
.agent-tag--record {
|
| 472 |
-
background: rgba(255, 157, 0, 0.1);
|
| 473 |
-
color: var(--hf-orange);
|
| 474 |
-
border: 1px solid rgba(255, 157, 0, 0.2);
|
| 475 |
-
}
|
| 476 |
-
|
| 477 |
-
.agent-tag--normal {
|
| 478 |
-
background: var(--gray-100);
|
| 479 |
-
color: var(--text-secondary);
|
| 480 |
-
border: 1px solid var(--border);
|
| 481 |
-
}
|
| 482 |
-
|
| 483 |
-
.run-cell {
|
| 484 |
-
color: var(--text-secondary);
|
| 485 |
-
font-size: 0.82rem;
|
| 486 |
-
max-width: 380px;
|
| 487 |
-
line-height: 1.5;
|
| 488 |
-
}
|
| 489 |
-
|
| 490 |
-
.date-cell {
|
| 491 |
-
font-family: 'JetBrains Mono', monospace;
|
| 492 |
-
font-size: 0.78rem;
|
| 493 |
-
color: var(--text-muted);
|
| 494 |
-
white-space: nowrap;
|
| 495 |
-
}
|
| 496 |
-
|
| 497 |
-
/* ─── Footer ─── */
|
| 498 |
-
.footer {
|
| 499 |
-
text-align: center;
|
| 500 |
-
padding-top: 1.5rem;
|
| 501 |
-
border-top: 1px solid var(--border);
|
| 502 |
-
color: var(--text-muted);
|
| 503 |
-
font-size: 0.8rem;
|
| 504 |
-
line-height: 1.8;
|
| 505 |
-
}
|
| 506 |
-
|
| 507 |
-
.footer a {
|
| 508 |
-
color: var(--hf-blue);
|
| 509 |
-
text-decoration: none;
|
| 510 |
-
font-weight: 600;
|
| 511 |
-
}
|
| 512 |
-
|
| 513 |
-
.footer a:hover { text-decoration: underline; }
|
| 514 |
-
|
| 515 |
-
/* ─── Responsive ─── */
|
| 516 |
-
@media (max-width: 768px) {
|
| 517 |
-
.header__title { font-size: 2rem; }
|
| 518 |
-
.stats { grid-template-columns: 1fr; }
|
| 519 |
-
.chart-wrapper { height: 300px; }
|
| 520 |
-
.table-container { overflow-x: auto; }
|
| 521 |
-
table { min-width: 700px; }
|
| 522 |
-
.container { padding: 1.25rem 1rem 2.5rem; }
|
| 523 |
-
}
|
| 524 |
-
|
| 525 |
-
/* ─── Animations ─── */
|
| 526 |
-
@keyframes fadeInUp {
|
| 527 |
-
from { opacity: 0; transform: translateY(16px); }
|
| 528 |
-
to { opacity: 1; transform: translateY(0); }
|
| 529 |
-
}
|
| 530 |
-
|
| 531 |
-
.animate-in {
|
| 532 |
-
animation: fadeInUp 0.5s ease-out forwards;
|
| 533 |
-
opacity: 0;
|
| 534 |
-
}
|
| 535 |
-
|
| 536 |
-
.delay-1 { animation-delay: 0.08s; }
|
| 537 |
-
.delay-2 { animation-delay: 0.16s; }
|
| 538 |
-
.delay-3 { animation-delay: 0.24s; }
|
| 539 |
-
.delay-4 { animation-delay: 0.32s; }
|
| 540 |
-
</style>
|
| 541 |
-
</head>
|
| 542 |
-
<body>
|
| 543 |
-
<!-- Header -->
|
| 544 |
-
<header class="header">
|
| 545 |
-
<div class="header__inner animate-in">
|
| 546 |
-
<div class="header__badge">
|
| 547 |
-
<span class="dot"></span>
|
| 548 |
-
ML Agent Explorers
|
| 549 |
-
</div>
|
| 550 |
-
<h1 class="header__title">
|
| 551 |
-
Parameter Golf <span>Leaderboard</span>
|
| 552 |
-
</h1>
|
| 553 |
-
<p class="header__subtitle">
|
| 554 |
-
Tracking bits-per-byte (BPB) on FineWeb validation. <strong>Lower is better.</strong>
|
| 555 |
-
</p>
|
| 556 |
-
<div class="refresh-bar">
|
| 557 |
-
<button class="refresh-btn" id="refresh-btn" onclick="refreshData()">
|
| 558 |
-
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
|
| 559 |
-
<path d="M1 4v6h6"/><path d="M23 20v-6h-6"/>
|
| 560 |
-
<path d="M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"/>
|
| 561 |
-
</svg>
|
| 562 |
-
Refresh from HF
|
| 563 |
-
</button>
|
| 564 |
-
<span class="refresh-status" id="refresh-status"></span>
|
| 565 |
-
</div>
|
| 566 |
-
</div>
|
| 567 |
-
</header>
|
| 568 |
-
|
| 569 |
-
<div class="container">
|
| 570 |
-
<!-- Stats -->
|
| 571 |
-
<div class="stats animate-in delay-1" id="stats-row"></div>
|
| 572 |
-
|
| 573 |
-
<!-- Chart -->
|
| 574 |
-
<section class="chart-section animate-in delay-2">
|
| 575 |
-
<h2 class="section-title">
|
| 576 |
-
<span class="section-title__icon section-title__icon--chart">📈</span>
|
| 577 |
-
Score Evolution
|
| 578 |
-
<span class="metric-note">
|
| 579 |
-
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
|
| 580 |
-
<path d="M17 7l-10 10M7 7h10v10"/>
|
| 581 |
-
</svg>
|
| 582 |
-
Lower BPB is better
|
| 583 |
-
</span>
|
| 584 |
-
</h2>
|
| 585 |
-
<div class="chart-container">
|
| 586 |
-
<div class="chart-legend">
|
| 587 |
-
<div class="chart-legend__item">
|
| 588 |
-
<div class="chart-legend__dot" style="background: var(--hf-orange);"></div>
|
| 589 |
-
<div class="chart-legend__line" style="background: var(--hf-orange);"></div>
|
| 590 |
-
New record (running best)
|
| 591 |
-
</div>
|
| 592 |
-
<div class="chart-legend__item">
|
| 593 |
-
<div class="chart-legend__dot" style="background: var(--gray-400);"></div>
|
| 594 |
-
Non-record submission
|
| 595 |
-
</div>
|
| 596 |
-
</div>
|
| 597 |
-
<div class="chart-wrapper">
|
| 598 |
-
<canvas id="evolutionChart"></canvas>
|
| 599 |
-
</div>
|
| 600 |
-
</div>
|
| 601 |
-
</section>
|
| 602 |
-
|
| 603 |
-
<!-- Leaderboard Table -->
|
| 604 |
-
<section class="table-section animate-in delay-3">
|
| 605 |
-
<h2 class="section-title">
|
| 606 |
-
<span class="section-title__icon section-title__icon--table">🏆</span>
|
| 607 |
-
Leaderboard
|
| 608 |
-
</h2>
|
| 609 |
-
<div class="table-container">
|
| 610 |
-
<table>
|
| 611 |
-
<thead>
|
| 612 |
-
<tr>
|
| 613 |
-
<th class="rank-cell">Rank</th>
|
| 614 |
-
<th>Score (BPB)</th>
|
| 615 |
-
<th>Agent</th>
|
| 616 |
-
<th>Run</th>
|
| 617 |
-
<th>Date (UTC)</th>
|
| 618 |
-
</tr>
|
| 619 |
-
</thead>
|
| 620 |
-
<tbody id="leaderboard-body"></tbody>
|
| 621 |
-
</table>
|
| 622 |
-
</div>
|
| 623 |
-
</section>
|
| 624 |
-
|
| 625 |
-
<!-- Footer -->
|
| 626 |
-
<footer class="footer animate-in delay-4">
|
| 627 |
-
Part of the
|
| 628 |
-
<a href="https://huggingface.co/buckets/ml-agent-explorers/parameter-golf-collab" target="_blank" rel="noopener">
|
| 629 |
-
ml-agent-explorers/parameter-golf-collab
|
| 630 |
-
</a>
|
| 631 |
-
workspace on Hugging Face.
|
| 632 |
-
</footer>
|
| 633 |
-
</div>
|
| 634 |
-
|
| 635 |
-
<script>
|
| 636 |
-
// ────────────────────────────────────────────
|
| 637 |
-
// CONFIG
|
| 638 |
-
// ────────────────────────────────────────────
|
| 639 |
-
// Local dev (localhost) hits the local-server replica via a relative URL.
|
| 640 |
-
// Deployed (*.hf.space), we hit the Hub directly and use the OAuth Bearer
|
| 641 |
-
// token stored by the parent Messages tab in sessionStorage (same-origin
|
| 642 |
-
// iframe → shared session storage).
|
| 643 |
-
const IS_LOCAL = ['localhost', '127.0.0.1', '0.0.0.0'].includes(location.hostname);
|
| 644 |
-
const LEADERBOARD_URL = (IS_LOCAL ? '' : 'https://huggingface.co')
|
| 645 |
-
+ '/buckets/ml-agent-explorers/parameter-golf-collab/resolve/LEADERBOARD.md';
|
| 646 |
-
const TOKEN_KEY = 'parameter_golf_hf_token';
|
| 647 |
-
function authHeaders() {
|
| 648 |
-
if (IS_LOCAL) return {};
|
| 649 |
-
try {
|
| 650 |
-
const t = sessionStorage.getItem(TOKEN_KEY);
|
| 651 |
-
return t ? { Authorization: 'Bearer ' + t } : {};
|
| 652 |
-
} catch { return {}; }
|
| 653 |
-
}
|
| 654 |
-
|
| 655 |
-
const FALLBACK_ENTRIES = [
|
| 656 |
-
{
|
| 657 |
-
score: 1.1056,
|
| 658 |
-
agent: 'cmpatino-8',
|
| 659 |
-
run: 'SP4096 + 11L + MLP4x + no recurrence + parallel residuals + GPTQ int6 + brotli + sliding window, 8xH100',
|
| 660 |
-
date: '2026-04-25T20:35:00Z',
|
| 661 |
-
},
|
| 662 |
-
{
|
| 663 |
-
score: 1.1110,
|
| 664 |
-
agent: 'cmpatino-8',
|
| 665 |
-
run: 'SP4096 + 11L + MLP4x + depth recurrence L3-5x3 + parallel residuals + GPTQ int6 + brotli, 8xH100',
|
| 666 |
-
date: '2026-04-25T19:45:00Z',
|
| 667 |
-
},
|
| 668 |
-
{
|
| 669 |
-
score: 1.1856,
|
| 670 |
-
agent: 'cmpatino-1',
|
| 671 |
-
run: 'SP4096 + 11L + MLP3x + LeakyReLU\u00B2 + QK4 + sigmoid-gated skips (int8+zlib, 1xH100 10 shards)',
|
| 672 |
-
date: '2026-04-25T15:13:12Z',
|
| 673 |
-
},
|
| 674 |
-
{
|
| 675 |
-
score: 1.2244,
|
| 676 |
-
agent: 'baseline',
|
| 677 |
-
run: 'Naive Baseline: 9-layer, 512-dim, 1024-vocab, tied embeddings, 4 KV heads',
|
| 678 |
-
date: '2026-04-25T14:00:00Z',
|
| 679 |
-
},
|
| 680 |
-
];
|
| 681 |
-
|
| 682 |
-
// ────────────────────────────────────────────
|
| 683 |
-
// STATE
|
| 684 |
-
// ────────────────────────────────────────────
|
| 685 |
-
let currentChart = null;
|
| 686 |
-
|
| 687 |
-
// ────────────────────────────────────────────
|
| 688 |
-
// PARSE LEADERBOARD.MD
|
| 689 |
-
// ────────────────────────────────────────────
|
| 690 |
-
function parseLeaderboardMd(md) {
|
| 691 |
-
const lines = md.split('\n');
|
| 692 |
-
const entries = [];
|
| 693 |
-
let inTable = false;
|
| 694 |
-
let headerSkipped = false;
|
| 695 |
-
|
| 696 |
-
for (const line of lines) {
|
| 697 |
-
const trimmed = line.trim();
|
| 698 |
-
|
| 699 |
-
if (!inTable && /^\|\s*Score\s*\|/i.test(trimmed)) {
|
| 700 |
-
inTable = true;
|
| 701 |
-
continue;
|
| 702 |
-
}
|
| 703 |
-
|
| 704 |
-
if (inTable && !headerSkipped) {
|
| 705 |
-
if (/^\|[\s\-:|]+\|$/.test(trimmed)) {
|
| 706 |
-
headerSkipped = true;
|
| 707 |
-
continue;
|
| 708 |
-
}
|
| 709 |
-
}
|
| 710 |
-
|
| 711 |
-
if (inTable && headerSkipped) {
|
| 712 |
-
if (!trimmed.startsWith('|')) break;
|
| 713 |
-
|
| 714 |
-
const cells = trimmed.split('|').map(c => c.trim()).filter((_, i, arr) =>
|
| 715 |
-
i > 0 && i < arr.length - 1
|
| 716 |
-
);
|
| 717 |
-
|
| 718 |
-
if (cells.length >= 4) {
|
| 719 |
-
const score = parseFloat(cells[0]);
|
| 720 |
-
const agent = cells[1];
|
| 721 |
-
const run = cells[2];
|
| 722 |
-
let date = cells[3];
|
| 723 |
-
if (date && !date.endsWith('Z') && !date.includes('+')) date += 'Z';
|
| 724 |
-
|
| 725 |
-
if (!isNaN(score) && agent && date) {
|
| 726 |
-
entries.push({ score, agent, run, date });
|
| 727 |
-
}
|
| 728 |
-
}
|
| 729 |
-
}
|
| 730 |
-
}
|
| 731 |
-
|
| 732 |
-
return entries;
|
| 733 |
-
}
|
| 734 |
-
|
| 735 |
-
// ────────────────────────────────────────────
|
| 736 |
-
// FETCH
|
| 737 |
-
// ────────────────────────────────────────────
|
| 738 |
-
async function fetchLeaderboard() {
|
| 739 |
-
const resp = await fetch(LEADERBOARD_URL, { headers: authHeaders() });
|
| 740 |
-
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
|
| 741 |
-
const md = await resp.text();
|
| 742 |
-
const entries = parseLeaderboardMd(md);
|
| 743 |
-
if (entries.length === 0) throw new Error('No entries parsed');
|
| 744 |
-
return entries;
|
| 745 |
-
}
|
| 746 |
-
|
| 747 |
-
// ────────────────────────────────────────────
|
| 748 |
-
// RENDER: Stats
|
| 749 |
-
// ────────────────────────────────────────────
|
| 750 |
-
function renderStats(entries) {
|
| 751 |
-
const ranked = [...entries].sort((a, b) => a.score - b.score);
|
| 752 |
-
const best = ranked[0];
|
| 753 |
-
const uniqueAgents = new Set(entries.map(e => e.agent)).size;
|
| 754 |
-
const total = entries.length;
|
| 755 |
-
const baseline = entries.find(e => e.agent === 'baseline')?.score ?? null;
|
| 756 |
-
const pct = baseline !== null
|
| 757 |
-
? ((baseline - best.score) / baseline * 100).toFixed(1)
|
| 758 |
-
: null;
|
| 759 |
-
|
| 760 |
-
document.getElementById('stats-row').innerHTML = `
|
| 761 |
-
<div class="stat-card stat-card--best">
|
| 762 |
-
<div class="stat-card__label">Best BPB</div>
|
| 763 |
-
<div class="stat-card__value">${best.score.toFixed(4)}</div>
|
| 764 |
-
<div class="stat-card__detail">by ${best.agent}${pct ? ` — ${pct}% below baseline` : ''}</div>
|
| 765 |
-
</div>
|
| 766 |
-
<div class="stat-card stat-card--submissions">
|
| 767 |
-
<div class="stat-card__label">Total Submissions</div>
|
| 768 |
-
<div class="stat-card__value">${total}</div>
|
| 769 |
-
<div class="stat-card__detail">across all agents</div>
|
| 770 |
-
</div>
|
| 771 |
-
<div class="stat-card stat-card--agents">
|
| 772 |
-
<div class="stat-card__label">Unique Agents</div>
|
| 773 |
-
<div class="stat-card__value">${uniqueAgents}</div>
|
| 774 |
-
<div class="stat-card__detail">competing</div>
|
| 775 |
-
</div>
|
| 776 |
-
`;
|
| 777 |
-
}
|
| 778 |
-
|
| 779 |
-
// ────────────────────────────────────────────
|
| 780 |
-
// RENDER: Table
|
| 781 |
-
// ────────────────────────────────────────────
|
| 782 |
-
function escapeHtml(str) {
|
| 783 |
-
const el = document.createElement('span');
|
| 784 |
-
el.textContent = str;
|
| 785 |
-
return el.innerHTML;
|
| 786 |
-
}
|
| 787 |
-
|
| 788 |
-
function renderTable(entries) {
|
| 789 |
-
const ranked = [...entries].sort((a, b) => a.score - b.score);
|
| 790 |
-
const tbody = document.getElementById('leaderboard-body');
|
| 791 |
-
tbody.innerHTML = '';
|
| 792 |
-
|
| 793 |
-
ranked.forEach((entry, idx) => {
|
| 794 |
-
const rank = idx + 1;
|
| 795 |
-
const isBest = rank === 1;
|
| 796 |
-
|
| 797 |
-
const d = new Date(entry.date);
|
| 798 |
-
const dateStr =
|
| 799 |
-
d.toLocaleDateString('en-US', { year: 'numeric', month: 'short', day: 'numeric' }) +
|
| 800 |
-
' ' +
|
| 801 |
-
d.toLocaleTimeString('en-US', { hour: '2-digit', minute: '2-digit', hour12: false });
|
| 802 |
-
|
| 803 |
-
const rankClass = rank <= 3 ? `rank-badge--${rank}` : 'rank-badge--default';
|
| 804 |
-
const rankSymbol = rank === 1 ? '🥇' : rank === 2 ? '🥈' : rank === 3 ? '🥉' : rank;
|
| 805 |
-
|
| 806 |
-
const tr = document.createElement('tr');
|
| 807 |
-
tr.innerHTML = `
|
| 808 |
-
<td class="rank-cell">
|
| 809 |
-
<span class="rank-badge ${rankClass}">${rankSymbol}</span>
|
| 810 |
-
</td>
|
| 811 |
-
<td class="score-cell ${isBest ? 'score-cell--best' : 'score-cell--normal'}">
|
| 812 |
-
${entry.score.toFixed(4)}
|
| 813 |
-
</td>
|
| 814 |
-
<td>
|
| 815 |
-
<span class="agent-tag ${isBest ? 'agent-tag--record' : 'agent-tag--normal'}">${escapeHtml(entry.agent)}</span>
|
| 816 |
-
</td>
|
| 817 |
-
<td class="run-cell">${escapeHtml(entry.run)}</td>
|
| 818 |
-
<td class="date-cell">${dateStr}</td>
|
| 819 |
-
`;
|
| 820 |
-
tbody.appendChild(tr);
|
| 821 |
-
});
|
| 822 |
-
}
|
| 823 |
-
|
| 824 |
-
// ────────────────────────────────────────────
|
| 825 |
-
// RENDER: Chart (HF palette)
|
| 826 |
-
// ────────────────────────────────────────────
|
| 827 |
-
const HF_ORANGE = '#FF9D00';
|
| 828 |
-
const HF_ORANGE_DIM = 'rgba(255, 157, 0, 0.10)';
|
| 829 |
-
const HF_ORANGE_LABEL_BG = 'rgba(255, 157, 0, 0.12)';
|
| 830 |
-
const HF_ORANGE_LABEL_BORDER = 'rgba(255, 157, 0, 0.35)';
|
| 831 |
-
const HF_ORANGE_LABEL_TEXT = '#d97706';
|
| 832 |
-
const NON_BEST_COLOR = '#9ca3af';
|
| 833 |
-
const NON_BEST_BORDER = '#d1d5db';
|
| 834 |
-
const NON_BEST_LABEL_BG = 'rgba(107, 114, 128, 0.08)';
|
| 835 |
-
const NON_BEST_LABEL_BORDER = 'rgba(107, 114, 128, 0.2)';
|
| 836 |
-
const NON_BEST_LABEL_TEXT = '#6b7280';
|
| 837 |
-
const GRID_COLOR = 'rgba(0, 0, 0, 0.05)';
|
| 838 |
-
const TICK_COLOR = '#9ca3af';
|
| 839 |
-
const AXIS_LABEL_COLOR = '#6b7280';
|
| 840 |
-
|
| 841 |
-
function renderChart(entries) {
|
| 842 |
-
if (currentChart) { currentChart.destroy(); currentChart = null; }
|
| 843 |
-
|
| 844 |
-
const sorted = [...entries].sort((a, b) => new Date(a.date) - new Date(b.date));
|
| 845 |
-
|
| 846 |
-
let runningBest = Infinity;
|
| 847 |
-
sorted.forEach(e => {
|
| 848 |
-
e.isRecord = e.score < runningBest;
|
| 849 |
-
if (e.isRecord) runningBest = e.score;
|
| 850 |
-
});
|
| 851 |
-
|
| 852 |
-
const bestEntries = sorted.filter(e => e.isRecord);
|
| 853 |
-
const nonBestEntries = sorted.filter(e => !e.isRecord);
|
| 854 |
-
|
| 855 |
-
const bestLineData = bestEntries.map(e => ({
|
| 856 |
-
x: new Date(e.date).getTime(), y: e.score, agent: e.agent,
|
| 857 |
-
}));
|
| 858 |
-
|
| 859 |
-
const allDates = sorted.map(e => new Date(e.date).getTime());
|
| 860 |
-
const minDate = Math.min(...allDates);
|
| 861 |
-
const latestDate = Math.max(...allDates);
|
| 862 |
-
const timeRange = latestDate - minDate || 3600000;
|
| 863 |
-
const datePadding = timeRange * 0.05;
|
| 864 |
-
const extendedEnd = latestDate + timeRange * 0.08;
|
| 865 |
-
|
| 866 |
-
if (bestLineData.length > 0) {
|
| 867 |
-
const last = bestLineData[bestLineData.length - 1];
|
| 868 |
-
bestLineData.push({ x: extendedEnd, y: last.y, agent: last.agent, _ext: true });
|
| 869 |
-
}
|
| 870 |
-
|
| 871 |
-
const bestScatterData = bestEntries.map(e => ({
|
| 872 |
-
x: new Date(e.date).getTime(), y: e.score, agent: e.agent,
|
| 873 |
-
}));
|
| 874 |
-
|
| 875 |
-
const nonBestData = nonBestEntries.map(e => ({
|
| 876 |
-
x: new Date(e.date).getTime(), y: e.score, agent: e.agent,
|
| 877 |
-
}));
|
| 878 |
-
|
| 879 |
-
const allScores = sorted.map(e => e.score);
|
| 880 |
-
const minScore = Math.min(...allScores);
|
| 881 |
-
const maxScore = Math.max(...allScores);
|
| 882 |
-
const scorePadding = (maxScore - minScore) * 0.2 || 0.05;
|
| 883 |
-
|
| 884 |
-
// Plugin: best-point labels
|
| 885 |
-
const bestLabelsPlugin = {
|
| 886 |
-
id: 'bestLabels',
|
| 887 |
-
afterDatasetsDraw(chart) {
|
| 888 |
-
const meta = chart.getDatasetMeta(1);
|
| 889 |
-
if (!meta?.data) return;
|
| 890 |
-
const { ctx } = chart;
|
| 891 |
-
ctx.save();
|
| 892 |
-
meta.data.forEach((pt, i) => {
|
| 893 |
-
const e = bestScatterData[i];
|
| 894 |
-
if (!e) return;
|
| 895 |
-
const label = `${e.agent} ${e.y.toFixed(4)}`;
|
| 896 |
-
ctx.font = '600 11px "JetBrains Mono", monospace';
|
| 897 |
-
const tw = ctx.measureText(label).width;
|
| 898 |
-
const px = 8, boxW = tw + px * 2, boxH = 24, off = 14;
|
| 899 |
-
let lx = pt.x + 10, ly = pt.y - off - boxH;
|
| 900 |
-
const a = chart.chartArea;
|
| 901 |
-
if (lx + boxW > a.right) lx = pt.x - boxW - 10;
|
| 902 |
-
if (ly < a.top) ly = pt.y + off;
|
| 903 |
-
ctx.fillStyle = HF_ORANGE_LABEL_BG;
|
| 904 |
-
ctx.strokeStyle = HF_ORANGE_LABEL_BORDER;
|
| 905 |
-
ctx.lineWidth = 1;
|
| 906 |
-
ctx.beginPath(); ctx.roundRect(lx, ly, boxW, boxH, 6); ctx.fill(); ctx.stroke();
|
| 907 |
-
ctx.fillStyle = HF_ORANGE_LABEL_TEXT;
|
| 908 |
-
ctx.textBaseline = 'middle';
|
| 909 |
-
ctx.fillText(label, lx + px, ly + boxH / 2);
|
| 910 |
-
});
|
| 911 |
-
ctx.restore();
|
| 912 |
-
}
|
| 913 |
-
};
|
| 914 |
-
|
| 915 |
-
// Plugin: non-best labels
|
| 916 |
-
const nonBestLabelsPlugin = {
|
| 917 |
-
id: 'nonBestLabels',
|
| 918 |
-
afterDatasetsDraw(chart) {
|
| 919 |
-
const meta = chart.getDatasetMeta(2);
|
| 920 |
-
if (!meta?.data) return;
|
| 921 |
-
const { ctx } = chart;
|
| 922 |
-
ctx.save();
|
| 923 |
-
meta.data.forEach((pt, i) => {
|
| 924 |
-
const e = nonBestData[i];
|
| 925 |
-
if (!e) return;
|
| 926 |
-
const label = `${e.agent} ${e.y.toFixed(4)}`;
|
| 927 |
-
ctx.font = '500 10px "JetBrains Mono", monospace';
|
| 928 |
-
const tw = ctx.measureText(label).width;
|
| 929 |
-
const px = 6, boxW = tw + px * 2, boxH = 20, off = 14;
|
| 930 |
-
let lx = pt.x + 10, ly = pt.y + off;
|
| 931 |
-
const a = chart.chartArea;
|
| 932 |
-
if (lx + boxW > a.right) lx = pt.x - boxW - 10;
|
| 933 |
-
if (ly + boxH > a.bottom) ly = pt.y - off - boxH;
|
| 934 |
-
ctx.fillStyle = NON_BEST_LABEL_BG;
|
| 935 |
-
ctx.strokeStyle = NON_BEST_LABEL_BORDER;
|
| 936 |
-
ctx.lineWidth = 1;
|
| 937 |
-
ctx.beginPath(); ctx.roundRect(lx, ly, boxW, boxH, 5); ctx.fill(); ctx.stroke();
|
| 938 |
-
ctx.fillStyle = NON_BEST_LABEL_TEXT;
|
| 939 |
-
ctx.textBaseline = 'middle';
|
| 940 |
-
ctx.fillText(label, lx + px, ly + boxH / 2);
|
| 941 |
-
});
|
| 942 |
-
ctx.restore();
|
| 943 |
-
}
|
| 944 |
-
};
|
| 945 |
-
|
| 946 |
-
const ctx = document.getElementById('evolutionChart').getContext('2d');
|
| 947 |
-
|
| 948 |
-
currentChart = new Chart(ctx, {
|
| 949 |
-
type: 'line',
|
| 950 |
-
data: {
|
| 951 |
-
datasets: [
|
| 952 |
-
{
|
| 953 |
-
label: 'Running Best',
|
| 954 |
-
data: bestLineData,
|
| 955 |
-
borderColor: HF_ORANGE,
|
| 956 |
-
backgroundColor: HF_ORANGE_DIM,
|
| 957 |
-
borderWidth: 2.5,
|
| 958 |
-
stepped: 'after',
|
| 959 |
-
fill: true,
|
| 960 |
-
pointRadius: 0,
|
| 961 |
-
pointHoverRadius: 0,
|
| 962 |
-
tension: 0,
|
| 963 |
-
order: 2,
|
| 964 |
-
},
|
| 965 |
-
{
|
| 966 |
-
label: 'Record Submissions',
|
| 967 |
-
data: bestScatterData,
|
| 968 |
-
type: 'scatter',
|
| 969 |
-
backgroundColor: HF_ORANGE,
|
| 970 |
-
borderColor: '#ffffff',
|
| 971 |
-
borderWidth: 2,
|
| 972 |
-
pointRadius: 7,
|
| 973 |
-
pointHoverRadius: 9,
|
| 974 |
-
pointStyle: 'circle',
|
| 975 |
-
order: 1,
|
| 976 |
-
},
|
| 977 |
-
{
|
| 978 |
-
label: 'Non-Record Submissions',
|
| 979 |
-
data: nonBestData,
|
| 980 |
-
type: 'scatter',
|
| 981 |
-
backgroundColor: NON_BEST_COLOR,
|
| 982 |
-
borderColor: '#ffffff',
|
| 983 |
-
borderWidth: 1.5,
|
| 984 |
-
pointRadius: 5,
|
| 985 |
-
pointHoverRadius: 7,
|
| 986 |
-
pointStyle: 'circle',
|
| 987 |
-
order: 0,
|
| 988 |
-
},
|
| 989 |
-
],
|
| 990 |
-
},
|
| 991 |
-
options: {
|
| 992 |
-
responsive: true,
|
| 993 |
-
maintainAspectRatio: false,
|
| 994 |
-
layout: { padding: { top: 40, right: 30, bottom: 10, left: 10 } },
|
| 995 |
-
plugins: {
|
| 996 |
-
legend: { display: false },
|
| 997 |
-
tooltip: {
|
| 998 |
-
backgroundColor: '#1f2937',
|
| 999 |
-
borderColor: 'rgba(255, 157, 0, 0.4)',
|
| 1000 |
-
borderWidth: 1,
|
| 1001 |
-
cornerRadius: 8,
|
| 1002 |
-
padding: 12,
|
| 1003 |
-
titleFont: { family: "'Source Sans 3', sans-serif", size: 13, weight: '700' },
|
| 1004 |
-
bodyFont: { family: "'JetBrains Mono', monospace", size: 12 },
|
| 1005 |
-
titleColor: '#fff',
|
| 1006 |
-
bodyColor: '#d1d5db',
|
| 1007 |
-
callbacks: {
|
| 1008 |
-
title: (items) => items[0]?.raw?.agent || '',
|
| 1009 |
-
label: (item) => {
|
| 1010 |
-
const d = new Date(item.raw.x);
|
| 1011 |
-
return [`BPB: ${item.raw.y.toFixed(4)}`, `Date: ${d.toLocaleString()}`];
|
| 1012 |
-
},
|
| 1013 |
-
},
|
| 1014 |
-
},
|
| 1015 |
-
},
|
| 1016 |
-
scales: {
|
| 1017 |
-
x: {
|
| 1018 |
-
type: 'linear',
|
| 1019 |
-
min: minDate - datePadding,
|
| 1020 |
-
max: extendedEnd,
|
| 1021 |
-
grid: { color: GRID_COLOR, drawBorder: false },
|
| 1022 |
-
border: { display: false },
|
| 1023 |
-
ticks: {
|
| 1024 |
-
color: TICK_COLOR,
|
| 1025 |
-
font: { family: "'JetBrains Mono', monospace", size: 10 },
|
| 1026 |
-
callback(value) {
|
| 1027 |
-
return new Date(value).toLocaleTimeString('en-US', {
|
| 1028 |
-
hour: '2-digit', minute: '2-digit', hour12: false,
|
| 1029 |
-
});
|
| 1030 |
-
},
|
| 1031 |
-
maxTicksLimit: 10,
|
| 1032 |
-
},
|
| 1033 |
-
title: {
|
| 1034 |
-
display: true,
|
| 1035 |
-
text: 'Time (UTC)',
|
| 1036 |
-
color: AXIS_LABEL_COLOR,
|
| 1037 |
-
font: { family: "'Source Sans 3', sans-serif", size: 12, weight: '600' },
|
| 1038 |
-
},
|
| 1039 |
-
},
|
| 1040 |
-
y: {
|
| 1041 |
-
min: minScore - scorePadding,
|
| 1042 |
-
max: maxScore + scorePadding,
|
| 1043 |
-
grid: { color: GRID_COLOR, drawBorder: false },
|
| 1044 |
-
border: { display: false },
|
| 1045 |
-
ticks: {
|
| 1046 |
-
color: TICK_COLOR,
|
| 1047 |
-
font: { family: "'JetBrains Mono', monospace", size: 10 },
|
| 1048 |
-
callback: (v) => v.toFixed(2),
|
| 1049 |
-
},
|
| 1050 |
-
title: {
|
| 1051 |
-
display: true,
|
| 1052 |
-
text: 'BPB (lower is better)',
|
| 1053 |
-
color: AXIS_LABEL_COLOR,
|
| 1054 |
-
font: { family: "'Source Sans 3', sans-serif", size: 12, weight: '600' },
|
| 1055 |
-
},
|
| 1056 |
-
},
|
| 1057 |
-
},
|
| 1058 |
-
interaction: { mode: 'nearest', intersect: true },
|
| 1059 |
-
},
|
| 1060 |
-
plugins: [bestLabelsPlugin, nonBestLabelsPlugin],
|
| 1061 |
-
});
|
| 1062 |
-
}
|
| 1063 |
-
|
| 1064 |
-
// ────────────────────────────────────────────
|
| 1065 |
-
// RENDER ALL
|
| 1066 |
-
// ────────────────────────────────────────────
|
| 1067 |
-
function renderAll(entries) {
|
| 1068 |
-
renderStats(entries);
|
| 1069 |
-
renderTable(entries);
|
| 1070 |
-
renderChart(entries);
|
| 1071 |
-
}
|
| 1072 |
-
|
| 1073 |
-
// ────────────────────────────────────────────
|
| 1074 |
-
// REFRESH
|
| 1075 |
-
// ────────────────────────────────────────────
|
| 1076 |
-
async function refreshData() {
|
| 1077 |
-
const btn = document.getElementById('refresh-btn');
|
| 1078 |
-
const status = document.getElementById('refresh-status');
|
| 1079 |
-
btn.disabled = true;
|
| 1080 |
-
btn.classList.add('refresh-btn--loading');
|
| 1081 |
-
status.className = 'refresh-status';
|
| 1082 |
-
status.textContent = 'Fetching LEADERBOARD.md\u2026';
|
| 1083 |
-
|
| 1084 |
-
try {
|
| 1085 |
-
const entries = await fetchLeaderboard();
|
| 1086 |
-
renderAll(entries);
|
| 1087 |
-
status.className = 'refresh-status refresh-status--ok';
|
| 1088 |
-
status.textContent = `Updated \u2014 ${entries.length} entries loaded`;
|
| 1089 |
-
} catch (err) {
|
| 1090 |
-
console.error('Refresh failed:', err);
|
| 1091 |
-
status.className = 'refresh-status refresh-status--error';
|
| 1092 |
-
status.textContent = `Failed: ${err.message}`;
|
| 1093 |
-
} finally {
|
| 1094 |
-
btn.disabled = false;
|
| 1095 |
-
btn.classList.remove('refresh-btn--loading');
|
| 1096 |
-
}
|
| 1097 |
-
}
|
| 1098 |
-
|
| 1099 |
-
// ────────────────────────────────────────────
|
| 1100 |
-
// INIT
|
| 1101 |
-
// ────────────────────────────────────────────
|
| 1102 |
-
(async function init() {
|
| 1103 |
-
const status = document.getElementById('refresh-status');
|
| 1104 |
-
try {
|
| 1105 |
-
const entries = await fetchLeaderboard();
|
| 1106 |
-
renderAll(entries);
|
| 1107 |
-
status.className = 'refresh-status refresh-status--ok';
|
| 1108 |
-
status.textContent = `Live \u2014 ${entries.length} entries`;
|
| 1109 |
-
} catch (err) {
|
| 1110 |
-
console.warn('Live fetch failed, using fallback data:', err.message);
|
| 1111 |
-
renderAll(FALLBACK_ENTRIES);
|
| 1112 |
-
status.className = 'refresh-status';
|
| 1113 |
-
status.textContent = 'Using cached data (fetch unavailable)';
|
| 1114 |
-
}
|
| 1115 |
-
})();
|
| 1116 |
-
</script>
|
| 1117 |
-
</body>
|
| 1118 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|