-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopen-level5-super-series-larkspur-g14-jul4-2026.html
More file actions
2769 lines (2527 loc) · 153 KB
/
Copy pathopen-level5-super-series-larkspur-g14-jul4-2026.html
File metadata and controls
2769 lines (2527 loc) · 153 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta name="publish-id" content="551c1b32-3e1a-4130-ba92-6ad283601ff0">
<meta name="publish-ts" content="2026-06-30T15:41:03Z">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="assets/tennis-report/favicon-32-thin.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/tennis-report/favicon-16.png">
<link rel="icon" type="image/png" sizes="48x48" href="assets/tennis-report/favicon-48.png">
<link rel="icon" type="image/x-icon" href="assets/tennis-report/favicon-32thin.ico">
<link rel="shortcut icon" href="assets/tennis-report/favicon-32thin.ico">
<meta property="og:type" content="website">
<meta property="og:title" content="Open Level 5 Super Series — Larkspur Girls U14">
<meta property="og:image" content="https://jazzyalex.github.io/TennisGroup/assets/tennis-report/og-image-edge-1200x630.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Tournament report preview">
<meta property="og:image" content="https://jazzyalex.github.io/TennisGroup/assets/tennis-report/og-image-edge.svg">
<meta property="og:image:type" content="image/svg+xml">
<meta property="og:image:alt" content="Tournament report preview">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://jazzyalex.github.io/TennisGroup/assets/tennis-report/og-image-edge-1200x630.png">
<meta name="twitter:image:alt" content="Tournament report preview">
<title>Open Level 5 Super Series — Larkspur Girls U14, July 4 - 5, 2026, Redwood High School, Larkspur, CA</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/core.css">
<link rel="stylesheet" href="assets/css/report.css?v=20260627-withdrawn-list">
<script>
function toggleTheme() {
const html = document.documentElement;
const current = html.getAttribute('data-theme');
const next = current === 'dark' ? 'light' : 'dark';
html.setAttribute('data-theme', next);
localStorage.setItem('theme', next);
}
(function() {
const saved = localStorage.getItem('theme');
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (saved === 'dark' || (!saved && prefersDark)) {
document.documentElement.setAttribute('data-theme', 'dark');
}
})();
</script>
<style>
/* H2H inline badge */
.h2h-badge {
display: inline-block; font-size: 11px; font-weight: 600;
padding: 1px 6px; border-radius: 10px; white-space: nowrap;
line-height: 1.6; vertical-align: middle; margin-left: 4px; cursor: default;
}
.h2h-win { background: rgba(22,163,74,0.15); color: #16a34a; }
.h2h-loss { background: rgba(220,38,38,0.15); color: #dc2626; }
.h2h-even { background: var(--mobile-blue-soft); color: var(--mobile-blue); }
html[data-theme="dark"] .h2h-win { background: rgba(74,222,128,0.15); color: #4ade80; }
html[data-theme="dark"] .h2h-loss { background: rgba(248,113,113,0.15); color: #f87171; }
html[data-theme="dark"] .h2h-even { background: var(--mobile-blue-soft); color: var(--mobile-blue); }
/* H2H tooltip */
#h2h-tooltip {
position: fixed; z-index: 9999; display: none; pointer-events: none;
min-width: 220px; max-width: 380px;
background: var(--surface, #fff); border: 1px solid var(--border, #e5e7eb);
border-radius: 8px; box-shadow: 0 6px 20px rgba(0,0,0,0.15);
padding: 10px 12px; font-size: 12px; line-height: 1.4;
}
.h2h-tip-header {
font-size: 10px; font-weight: 700; text-transform: uppercase;
letter-spacing: 0.6px; color: var(--text-muted, #6b7280);
margin-bottom: 7px; padding-bottom: 6px; border-bottom: 1px solid var(--border, #e5e7eb);
}
.h2h-tip-match {
display: flex; align-items: flex-start; gap: 8px;
padding: 5px 0; border-bottom: 1px solid var(--border, #e5e7eb);
font-variant-numeric: tabular-nums;
}
.h2h-tip-match:last-child { border-bottom: none; }
.h2h-tip-result { font-weight: 700; font-size: 12px; flex-shrink: 0; padding-top: 1px; }
.h2h-tip-result.win { color: #16a34a; }
.h2h-tip-result.loss { color: #dc2626; }
html[data-theme="dark"] .h2h-tip-result.win { color: #4ade80; }
html[data-theme="dark"] .h2h-tip-result.loss { color: #f87171; }
.h2h-tip-sets {
display: flex; flex-direction: column; flex-shrink: 0;
font-weight: 600; font-size: 12px; color: var(--text-primary, #111); min-width: 34px;
}
.h2h-tip-meta { font-size: 11px; color: var(--text-secondary, #6b7280); line-height: 1.45; }
/* H2H column */
th.col-h2h { width: 68px; text-align: center; font-size: 11px; }
td.col-h2h { text-align: center; white-space: nowrap; }
td.col-h2h .h2h-badge { margin-left: 0; }
/* Projection status */
.selection-flight-row td {
background: var(--bg-tertiary);
color: var(--text-secondary);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
font-size: 12px;
font-weight: 600;
padding: 8px 14px;
}
.selection-flight-label {
display: inline-flex;
align-items: center;
gap: 10px;
white-space: nowrap;
}
.selection-flight-label strong {
color: var(--text-primary);
font-size: 12px;
font-weight: 800;
}
.selection-flight-meta {
color: var(--text-secondary);
}
.projection-status-badge {
display: inline-flex; align-items: center; justify-content: center;
padding: 2px 6px; border-radius: 999px;
font-size: 9px; font-weight: 700; letter-spacing: 0;
color: var(--text-primary); background: var(--green-light);
border: 1px solid var(--border);
}
tr.draw-roster-only:not(.highlight-player) {
color: var(--text-secondary);
background-color: var(--bg-tertiary);
}
.draw-row-badge {
display: block;
width: max-content;
margin: 2px auto 0;
padding: 1px 5px;
border-radius: 999px;
border: 1px solid var(--border);
background: var(--bg-primary);
color: var(--accent-report);
font-size: 9px;
font-weight: 800;
letter-spacing: 0;
line-height: 1.35;
white-space: nowrap;
}
.draw-row-badge-muted {
color: var(--text-muted);
font-weight: 700;
}
.draw-path-panel {
max-width: 1120px;
margin: 12px auto 18px;
padding: 12px;
border: 1px solid var(--border);
background: var(--bg-secondary);
box-shadow: var(--card-shadow);
}
.draw-path-head {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 12px;
margin-bottom: 2px;
}
.draw-path-head h3 {
margin: 0;
font-size: 17px;
line-height: 1.2;
color: var(--text-primary);
}
.draw-path-head a {
font-size: 12px;
font-weight: 700;
color: var(--accent-report);
text-decoration: none;
white-space: nowrap;
}
.draw-path-subtitle,
.draw-reconcile-note {
font-size: 12px;
color: var(--text-secondary);
line-height: 1.4;
}
.draw-dashboard-section {
margin-top: 12px;
}
.draw-dashboard-section h4 {
margin: 0 0 7px;
font-size: 11px;
line-height: 1.2;
letter-spacing: 0;
text-transform: uppercase;
color: var(--text-secondary);
}
.draw-primary-match-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
gap: 8px;
margin-top: 10px;
}
.draw-primary-match {
min-width: 0;
padding: 9px 10px;
border-radius: 6px;
border: 1px solid var(--border);
background: var(--bg-primary);
}
.draw-primary-match-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
margin-bottom: 6px;
}
.draw-primary-match-head strong {
color: var(--text-primary);
font-size: 12px;
line-height: 1.2;
}
.draw-primary-match-head span {
padding: 2px 6px;
border-radius: 999px;
border: 1px solid var(--border);
background: var(--bg-secondary);
color: var(--accent-report);
font-size: 10px;
font-weight: 800;
line-height: 1.2;
text-transform: uppercase;
}
.draw-primary-match.is-loss .draw-primary-match-head span {
color: var(--status-critical, var(--text-secondary));
}
.draw-primary-match.is-scheduled .draw-primary-match-head span {
color: var(--warning, var(--accent-report));
}
.draw-primary-match.is-projected .draw-primary-match-head span {
color: var(--text-secondary);
}
.draw-primary-opponent,
.draw-primary-score,
.draw-primary-time,
.draw-primary-points {
font-size: 11px;
line-height: 1.35;
}
.draw-primary-opponent {
color: var(--text-primary);
font-weight: 700;
}
.draw-primary-score {
margin-top: 4px;
color: var(--accent-report);
font-weight: 800;
}
.draw-primary-time {
margin-top: 5px;
color: var(--text-secondary);
}
.draw-primary-points {
margin-top: 7px;
display: inline-flex;
align-items: baseline;
gap: 4px;
width: max-content;
max-width: 100%;
padding: 3px 7px;
border-radius: 6px;
border: 1px solid var(--border);
background: var(--bg-secondary);
color: var(--accent-report);
font-weight: 800;
}
.draw-path-track {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
gap: 8px;
margin-top: 10px;
}
.draw-path-step {
min-width: 0;
padding: 9px 10px;
border-radius: 6px;
border: 1px solid var(--border);
background: var(--bg-primary);
}
.draw-path-round {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 38px;
height: 22px;
padding: 0 8px;
border-radius: 999px;
background: var(--accent-report);
color: var(--bg-primary);
font-size: 11px;
font-weight: 800;
line-height: 1;
}
.draw-path-opponents {
margin-top: 8px;
min-height: 34px;
font-size: 12px;
font-weight: 700;
line-height: 1.35;
color: var(--text-primary);
}
.draw-path-rating,
.draw-path-seed {
display: inline-block;
margin-left: 4px;
color: var(--text-secondary);
font-size: 10px;
font-weight: 700;
}
.draw-path-opponents > .draw-path-rating:first-child {
margin-left: 0;
}
.draw-path-time {
margin-top: 7px;
font-size: 11px;
line-height: 1.35;
color: var(--text-secondary);
}
.draw-path-points {
margin-top: 8px;
padding-top: 7px;
border-top: 1px solid var(--border);
color: var(--accent-report);
font-size: 11px;
font-weight: 800;
line-height: 1.3;
}
.draw-path-points span {
display: block;
margin-top: 2px;
color: var(--text-secondary);
font-size: 10px;
font-weight: 700;
}
.draw-path-points-muted {
color: var(--text-secondary);
}
.draw-reference-details {
margin-top: 12px;
border-radius: 6px;
border: 1px solid var(--border);
background: var(--bg-primary);
}
.draw-reference-details > summary {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
padding: 9px 10px;
color: var(--text-primary);
cursor: pointer;
list-style: none;
}
.draw-reference-details > summary::-webkit-details-marker {
display: none;
}
.draw-reference-details > summary span {
font-size: 12px;
font-weight: 800;
line-height: 1.2;
}
.draw-reference-details > summary small {
color: var(--text-secondary);
font-size: 10px;
font-weight: 700;
line-height: 1.2;
text-align: right;
}
.draw-reference-details[open] > summary {
border-bottom: 1px solid var(--border);
}
.draw-reference-body {
padding: 0 10px 10px;
}
.draw-contingency-grid,
.draw-venue-grid,
.draw-format-grid {
display: grid;
gap: 8px;
}
.draw-contingency-grid {
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.draw-venue-grid {
grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.draw-format-grid {
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.draw-contingency,
.draw-venue,
.draw-format-grid > div {
min-width: 0;
padding: 9px 10px;
border-radius: 6px;
border: 1px solid var(--border);
background: var(--bg-primary);
}
.draw-contingency h4 {
margin: 0 0 4px;
font-size: 12px;
color: var(--text-primary);
text-transform: none;
}
.draw-contingency p,
.draw-contingency li,
.draw-venue span,
.draw-venue a,
.draw-format-grid span {
font-size: 11px;
line-height: 1.35;
color: var(--text-secondary);
}
.draw-contingency p {
margin: 0 0 6px;
}
.draw-contingency ul {
margin: 0;
padding-left: 0;
display: grid;
gap: 6px;
list-style: none;
}
.draw-contingency li + li {
margin-top: 0;
}
.draw-contingency li {
padding: 7px 8px;
border-radius: 6px;
border: 1px solid var(--border);
background: var(--bg-secondary);
}
.draw-contingency-round {
color: var(--text-secondary);
font-size: 11px;
line-height: 1.35;
}
.draw-contingency .draw-path-points {
margin-top: 6px;
padding-top: 6px;
}
.draw-venue strong,
.draw-format-grid strong {
display: block;
margin-bottom: 3px;
color: var(--text-primary);
font-size: 12px;
line-height: 1.2;
}
.draw-venue span,
.draw-venue a,
.draw-format-grid span {
display: block;
}
.draw-venue a {
margin-top: 2px;
color: var(--accent-report);
text-decoration: none;
}
.draw-reconcile-note {
margin-top: 10px;
padding-top: 9px;
border-top: 1px solid var(--border);
}
.mobile-draw-details {
display: none;
}
@media (max-width: 640px) {
.mobile-draw-details {
display: block;
margin: 10px 10px 12px;
border: 1px solid var(--border);
background: var(--bg-primary);
box-shadow: var(--card-shadow);
}
.mobile-draw-details summary {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
padding: 10px 12px;
color: var(--text-primary);
cursor: pointer;
list-style: none;
}
.mobile-draw-details summary::-webkit-details-marker {
display: none;
}
.mobile-draw-details summary span {
font-size: 14px;
font-weight: 800;
line-height: 1.2;
}
.mobile-draw-details summary small {
color: var(--text-secondary);
font-size: 11px;
font-weight: 700;
line-height: 1.2;
text-align: right;
}
.mobile-draw-details[open] summary {
border-bottom: 1px solid var(--border);
}
.draw-path-panel {
margin: 10px 10px 16px;
padding: 10px;
}
.mobile-draw-details > .draw-path-panel {
margin: 0;
border: 0;
box-shadow: none;
}
.draw-path-head {
align-items: flex-start;
}
.draw-path-head h3 {
font-size: 16px;
}
.draw-path-track,
.draw-primary-match-list,
.draw-contingency-grid,
.draw-venue-grid,
.draw-format-grid {
grid-template-columns: 1fr;
}
.draw-path-step,
.draw-primary-match,
.draw-contingency,
.draw-venue,
.draw-format-grid > div {
padding: 8px;
}
.mobile-draw-path-panel .draw-reference-details {
border: 0;
background: transparent;
}
.mobile-draw-path-panel .draw-reference-details > summary {
justify-content: flex-start;
padding: 7px 0 0;
color: var(--accent-report);
}
.mobile-draw-path-panel .draw-reference-details > summary small {
display: none;
}
.mobile-draw-path-panel .draw-reference-details[open] > summary {
border-bottom: 0;
}
.mobile-draw-path-panel .draw-reference-body {
padding: 0;
}
.draw-path-opponents {
min-height: 0;
}
}
</style>
</head>
<body>
<div id="h2h-tooltip"></div>
<!-- Navigation Bar -->
<nav>
<div class="nav-left">
<a href="index.html" class="nav-logo-link" aria-label="Home">
<div class="nav-logo">
<svg viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="64" height="64" rx="8" fill="#2d5a27"/>
<rect x="0" y="8" width="64" height="8" fill="#fafafa"/>
<rect x="28" y="8" width="8" height="56" fill="#fafafa"/>
</svg>
</div>
</a>
<span class="nav-brand">Tennis Tracker</span>
</div>
<div class="nav-center">
<div class="nav-links">
<a href="2025-usta-norcal-national.html" class="nav-link">Calendar</a>
<a href="player.html" class="nav-link">Player</a>
<a href="ranking-simulator.html" class="nav-link">Simulator</a>
<a href="usta-national-rankings.html" class="nav-link">Rankings</a>
</div>
</div>
<div class="nav-right">
<button class="toggle-btn" id="theme-toggle" aria-label="Toggle dark mode">
<span id="theme-icon">🌙</span>
</button>
</div>
</nav>
<div class="desktop-view">
<div class="report-header">
<a class="report-header-logo-link" href="index.html" aria-label="Back to tournament dashboard">
<svg class="report-header-logo" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="64" height="64" rx="8" fill="#2d5a27"/>
<rect x="0" y="8" width="64" height="8" fill="#fafafa"/>
<rect x="28" y="8" width="8" height="56" fill="#fafafa"/>
</svg>
</a>
<div class="report-header-text">
<h1>Open Level 5 Super Series — Larkspur Girls U14</h1>
<div class="tournament-dates-row">
<div class="tournament-dates">
July 4 - 5, 2026
</div>
<div class="deadline-badge" id="registration-deadline-badge">
<div class="deadline-countdown" id="registration-countdown">Closes in --</div>
<div class="deadline-date" id="registration-deadline-date">--</div>
</div>
</div>
<div class="tournament-info">
<a href="https://playtennis.usta.com/competitions/hrtacademiadetenis/Tournaments/overview/5bec2d08-af41-430a-8a5d-8d1d9a4abc97" target="_blank" rel="noopener noreferrer" title="Open tournament page">Open Level 5 Super Series — Larkspur Girls U14</a><br>
Redwood High School, Larkspur, CA • 33 Players
</div>
</div>
</div>
<div id="report-updated-badge" class="report-updated-badge" data-updated-iso="2026-06-30T08:41:03-07:00" title="2026-06-30T08:41:03-07:00">
<span class="report-updated-badge__pill">Updated Jun 30, 2026 8:41 AM PDT</span>
</div>
<div class="table-meta">
<div class="key-stats">
<div class="key-stat"><span class="key-label">Draw</span><span class="key-value">32</span></div>
<div class="key-stat"><span class="key-label">Closes</span><span class="key-value">Registration closed</span></div>
<div class="key-stat"><span class="key-label">Registered</span><span class="key-value">33</span></div>
</div>
<div class="link-legend">Click on WTN or Nat Rank for USTA profile • on UTR for UTR profile</div>
</div>
<h3 class="table-section-title">Girls' 14 & under Singles</h3>
<div class="selection-rule-note"><strong>Selection reference: WTN singles, lower is stronger</strong><span>WTN 32.78 · Nat #1508 · UTR 5.16</span></div>
<table id="players-table-main" class="players-table primary-table" data-default-sort="wtn" data-selection-flight-size="8">
<thead class="sticky-header">
<tr>
<th class="col-rank">#</th>
<th class="sortable">First Name</th>
<th class="sortable">Last Name</th>
<th class="col-h2h sortable">H2H</th>
<th class="col-wtn sortable">WTN</th>
<th class="col-utr sortable">UTR</th>
<th class="col-national sortable">Nat Rank</th>
<th class="sortable">Location</th>
<th class="col-section-hidden" style="display: none;">Section</th>
</tr>
</thead>
<tbody>
<tr class="selection-flight-row" data-selection-flight="1"><td colspan="8"><div class="selection-flight-label"><strong>Flight 1</strong> <span class="selection-flight-meta">WTN order 1-8</span></div></td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-7748a0ea0b8ad8bd7566" data-h2h-matches="3" data-player-key="LABRECQUE|ALEXI" data-entry-status="entry" data-section-rank="18"><td class="col-rank">1</td><td><a class="h2h-jump" href="#h2h-7748a0ea0b8ad8bd7566">Alexi</a></td><td><a class="h2h-jump" href="#h2h-7748a0ea0b8ad8bd7566">Labrecque</a></td><td class="col-h2h" data-sort-val="-3"><span class="h2h-badge h2h-loss" data-h2h="[{"d": "2025-05-24", "t": "Santa Cruz Level 4 Juniors 12s Excellence @ La Madrona Athletic Club - Singles & Doubles MAY 24 - 26", "r": "Round of 16", "s": "3-6 4-6", "w": 0}, {"d": "2025-05-17", "t": "Santa Cruz Level 5 Junior 14s & 12s Championships @ La Madrona Athletic Club MAY 17 - 18", "r": "Quarterfinals", "s": "1-6 1-6", "w": 0}, {"d": "2025-02-01", "t": "FDT Winter Level 5 Junior Singles Championship FEB 1 - 2", "r": "Round of 16", "s": "0-4 1-4", "w": 0}]">0-3</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018998280" target="_blank" rel="noopener noreferrer">30.40</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3575442" target="_blank" rel="noopener noreferrer">6.04</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018998280" target="_blank" rel="noopener noreferrer">362</a></td><td>Mountain View CA</td><td style="display: none;">18</td></tr>
<tr class="entry-list-player" data-player-key="WEN|YIFAN" data-entry-status="entry" data-section-rank="34"><td class="col-rank">2</td><td>Yifan</td><td>Wen</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018605392" target="_blank" rel="noopener noreferrer">31.09</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4224682" target="_blank" rel="noopener noreferrer">6.53</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018605392" target="_blank" rel="noopener noreferrer">649</a></td><td>San Jose CA</td><td style="display: none;">34</td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-8c4e95b6ea9b05c56d1b" data-h2h-matches="2" data-player-key="CHAN|MADELEINE" data-entry-status="entry" data-section-rank="81"><td class="col-rank">3</td><td><a class="h2h-jump" href="#h2h-8c4e95b6ea9b05c56d1b">Madeleine</a></td><td><a class="h2h-jump" href="#h2h-8c4e95b6ea9b05c56d1b">Chan</a></td><td class="col-h2h" data-sort-val="0"><span class="h2h-badge h2h-even" data-h2h="[{"d": "2025-02-22", "t": "NPT Level 6 Junior Open FEB 22 - 23", "r": "Final", "s": "6-1 3-6 MTB 12-10", "w": 1}, {"d": "2023-12-09", "t": "Cudny Tennis Academy 10U Orange, 10/12U Green, & 14U Yellow🟠🟢🟡 - Green DEC 9", "r": "PL-Final", "s": "4-6", "w": 0}]">1-1</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019139608" target="_blank" rel="noopener noreferrer">31.73</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4816400" target="_blank" rel="noopener noreferrer">4.74</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019139608" target="_blank" rel="noopener noreferrer">1447</a></td><td>San Carlos CA</td><td style="display: none;">81</td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-2f8baed4870b032026e2" data-h2h-matches="1" data-player-key="DUAN|ZHIYAN" data-entry-status="entry" data-section-rank="74"><td class="col-rank">4</td><td><a class="h2h-jump" href="#h2h-2f8baed4870b032026e2">Zhiyan</a></td><td><a class="h2h-jump" href="#h2h-2f8baed4870b032026e2">Duan</a></td><td class="col-h2h" data-sort-val="1"><span class="h2h-badge h2h-win" data-h2h="[{"d": "2026-05-16", "t": "United by Tennis Spring Level 5 Junior 14s & 12s Singles Championship MAY 16 - 17", "r": "C-F Retired", "s": "4-0 3-1", "w": 1}]">1-0</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019107218" target="_blank" rel="noopener noreferrer">31.96</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4313318" target="_blank" rel="noopener noreferrer">5.60</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019107218" target="_blank" rel="noopener noreferrer">1298</a></td><td>San Jose CA</td><td style="display: none;">74</td></tr>
<tr class="entry-list-player" data-player-key="VIJAY|MRINALI" data-entry-status="entry" data-section-rank="60"><td class="col-rank">5</td><td>Mrinali</td><td>Vijay</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018661787" target="_blank" rel="noopener noreferrer">32.20</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/2943658" target="_blank" rel="noopener noreferrer">5.27</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018661787" target="_blank" rel="noopener noreferrer">1042</a></td><td>Sunnyvale CA</td><td style="display: none;">60</td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-79c7737a1361e663934e" data-player-key="SINHA|ARIA" data-entry-status="entry" data-section-rank="61"><td class="col-rank">6</td><td><a class="h2h-jump" href="#h2h-79c7737a1361e663934e">Aria</a></td><td><a class="h2h-jump" href="#h2h-79c7737a1361e663934e">Sinha</a></td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018774188" target="_blank" rel="noopener noreferrer">32.33</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/5829454" target="_blank" rel="noopener noreferrer">5.27</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018774188" target="_blank" rel="noopener noreferrer">1043</a></td><td>San Ramon CA</td><td style="display: none;">61</td></tr>
<tr class="entry-list-player" data-player-key="TENG|EMMA" data-entry-status="entry" data-section-rank="23"><td class="col-rank">7</td><td>Emma</td><td>Teng</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018542712" target="_blank" rel="noopener noreferrer">32.62</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/2605857" target="_blank" rel="noopener noreferrer">5.63</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018542712" target="_blank" rel="noopener noreferrer">443</a></td><td>San Mateo CA</td><td style="display: none;">23</td></tr>
<tr class="entry-list-player" data-player-key="MITTAL|SANYA" data-entry-status="entry" data-section-rank="89"><td class="col-rank">8</td><td>Sanya</td><td>Mittal</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019254375" target="_blank" rel="noopener noreferrer">32.73</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4064699" target="_blank" rel="noopener noreferrer">4.46</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019254375" target="_blank" rel="noopener noreferrer">1603</a></td><td>San Ramon CA</td><td style="display: none;">89</td></tr>
<tr class="selection-flight-row" data-selection-flight="2"><td colspan="8"><div class="selection-flight-label"><strong>Flight 2</strong> <span class="selection-flight-meta">WTN order 9-16</span></div></td></tr>
<tr class="entry-list-player" data-player-key="SHKAPOVA|EVANA" data-entry-status="entry" data-section-rank="38"><td class="col-rank">9</td><td>Evana</td><td>Shkapova</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018468143" target="_blank" rel="noopener noreferrer">32.75</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3880253" target="_blank" rel="noopener noreferrer">5.45</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018468143" target="_blank" rel="noopener noreferrer">676</a></td><td>Belmont CA</td><td style="display: none;">38</td></tr>
<tr class="highlight-player entry-list-player" data-player-key="MALAKHOVA|ALEXIS" data-entry-status="entry" data-section-rank="84"><td class="col-rank">10</td><td>Alexis</td><td>Malakhova</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018710796" target="_blank" rel="noopener noreferrer">32.78</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3610257" target="_blank" rel="noopener noreferrer">5.16</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018710796" target="_blank" rel="noopener noreferrer">1508</a></td><td>Mountain View CA</td><td style="display: none;">84</td></tr>
<tr class="entry-list-player" data-player-key="LI|STEPHANIE" data-entry-status="entry" data-section-rank="113"><td class="col-rank">11</td><td>Stephanie</td><td>Li</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018832557" target="_blank" rel="noopener noreferrer">33.04</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4315954" target="_blank" rel="noopener noreferrer">4.49</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018832557" target="_blank" rel="noopener noreferrer">2173</a></td><td>Cupertino CA</td><td style="display: none;">113</td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-d9eebd7bce6e344eb929" data-h2h-matches="2" data-player-key="LAI|MEGAN" data-entry-status="entry" data-section-rank="122"><td class="col-rank">12</td><td><a class="h2h-jump" href="#h2h-d9eebd7bce6e344eb929">Megan</a></td><td><a class="h2h-jump" href="#h2h-d9eebd7bce6e344eb929">Lai</a></td><td class="col-h2h" data-sort-val="0"><span class="h2h-badge h2h-even" data-h2h="[{"d": "2025-10-25", "t": "BAWT \"THE GOAT\" Level 6 Junior Open OCT 25 - 26", "r": "Semifinals", "s": "4-6 1-6", "w": 0}, {"d": "2026-01-31", "t": "FDT Level 5 Junior Singles Championship", "r": "Quarterfinals", "s": "6-1 0-6 MTB 11-9", "w": 1}]">1-1</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019656678" target="_blank" rel="noopener noreferrer">33.06</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/5078823" target="_blank" rel="noopener noreferrer">4.61</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019656678" target="_blank" rel="noopener noreferrer">2364</a></td><td>San Ramon CA</td><td style="display: none;">122</td></tr>
<tr class="entry-list-player" data-player-key="TOOTHMAN|ALEXIS" data-entry-status="entry" data-section-rank="76"><td class="col-rank">13</td><td>Alexis</td><td>Toothman</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018920874" target="_blank" rel="noopener noreferrer">33.20</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3408294" target="_blank" rel="noopener noreferrer">4.97</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018920874" target="_blank" rel="noopener noreferrer">1340</a></td><td>Atherton CA</td><td style="display: none;">76</td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-9e074e2db92730b1f7ad" data-h2h-matches="1" data-player-key="CHOI|ELLINOR" data-entry-status="entry" data-section-rank="55"><td class="col-rank">14</td><td><a class="h2h-jump" href="#h2h-9e074e2db92730b1f7ad">Ellinor</a></td><td><a class="h2h-jump" href="#h2h-9e074e2db92730b1f7ad">Choi</a></td><td class="col-h2h" data-sort-val="1"><span class="h2h-badge h2h-win" data-h2h="[{"d": "2025-05-17", "t": "Santa Cruz Level 5 Junior 14s & 12s Championships @ La Madrona Athletic Club MAY 17 - 18", "r": "Round of 16", "s": "6-2 6-0", "w": 1}]">1-0</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019003273" target="_blank" rel="noopener noreferrer">33.27</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/5414803" target="_blank" rel="noopener noreferrer">4.68</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019003273" target="_blank" rel="noopener noreferrer">928</a></td><td>San Francisco CA</td><td style="display: none;">55</td></tr>
<tr class="entry-list-player" data-player-key="YU|JENNA" data-entry-status="entry" data-section-rank="101"><td class="col-rank">15</td><td>Jenna</td><td>Yu</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018832337" target="_blank" rel="noopener noreferrer">33.33</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3432127" target="_blank" rel="noopener noreferrer">4.49</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018832337" target="_blank" rel="noopener noreferrer">1828</a></td><td>Foster City CA</td><td style="display: none;">101</td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-edabdf6a21a86efb0ff3" data-h2h-matches="1" data-player-key="SIAMWALLA|ARIANA" data-entry-status="entry" data-section-rank="65"><td class="col-rank">16</td><td><a class="h2h-jump" href="#h2h-edabdf6a21a86efb0ff3">Ariana</a></td><td><a class="h2h-jump" href="#h2h-edabdf6a21a86efb0ff3">Siamwalla</a></td><td class="col-h2h" data-sort-val="1"><span class="h2h-badge h2h-win" data-h2h="[{"d": "2026-05-16", "t": "United by Tennis Spring Level 5 Junior 14s & 12s Singles Championship MAY 16 - 17", "r": "C-SF", "s": "4-1 5-3", "w": 1}]">1-0</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018600051" target="_blank" rel="noopener noreferrer">33.55</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/2808314" target="_blank" rel="noopener noreferrer">4.88</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018600051" target="_blank" rel="noopener noreferrer">1103</a></td><td>Saratoga CA</td><td style="display: none;">65</td></tr>
<tr class="selection-flight-row" data-selection-flight="3"><td colspan="8"><div class="selection-flight-label"><strong>Flight 3</strong> <span class="selection-flight-meta">WTN order 17-24</span></div></td></tr>
<tr class="entry-list-player" data-player-key="HANDOKO|CHARLOTTE" data-entry-status="entry" data-section-rank="98"><td class="col-rank">17</td><td>Charlotte</td><td>Handoko</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018152891" target="_blank" rel="noopener noreferrer">33.67</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3361952" target="_blank" rel="noopener noreferrer">4.71</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018152891" target="_blank" rel="noopener noreferrer">1750</a></td><td>San Ramon CA</td><td style="display: none;">98</td></tr>
<tr class="entry-list-player" data-player-key="YIN|MIA" data-entry-status="entry" data-section-rank="82"><td class="col-rank">18</td><td>Mia</td><td>Yin</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018605887" target="_blank" rel="noopener noreferrer">33.69</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4289257" target="_blank" rel="noopener noreferrer">4.54</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018605887" target="_blank" rel="noopener noreferrer">1454</a></td><td>San Jose CA</td><td style="display: none;">82</td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-99e4b84dc34500191fb6" data-h2h-matches="1" data-player-key="NGUYEN|LAVI" data-entry-status="entry" data-section-rank="132"><td class="col-rank">19</td><td><a class="h2h-jump" href="#h2h-99e4b84dc34500191fb6">Lavi</a></td><td><a class="h2h-jump" href="#h2h-99e4b84dc34500191fb6">Nguyen</a></td><td class="col-h2h" data-sort-val="-1"><span class="h2h-badge h2h-loss" data-h2h="[{"d": "2025-05-03", "t": "Rio Del Oro Level 5 Junior 14s and 12s Super Series MAY 3 - 4", "r": "E-QF", "s": "2-6 3-6", "w": 0}]">0-1</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018399095" target="_blank" rel="noopener noreferrer">33.88</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3856303" target="_blank" rel="noopener noreferrer">4.33</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018399095" target="_blank" rel="noopener noreferrer">2571</a></td><td>Elk Grove CA</td><td style="display: none;">132</td></tr>
<tr class="entry-list-player" data-player-key="WARREN|GIANNA" data-entry-status="entry" data-section-rank="64"><td class="col-rank">20</td><td>Gianna</td><td>Warren</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018993349" target="_blank" rel="noopener noreferrer">33.91</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4793988" target="_blank" rel="noopener noreferrer">4.82</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018993349" target="_blank" rel="noopener noreferrer">1096</a></td><td>Concord CA</td><td style="display: none;">64</td></tr>
<tr class="entry-list-player" data-player-key="YANG|CECILIA" data-entry-status="entry" data-section-rank="111"><td class="col-rank">21</td><td>Cecilia</td><td>Yang</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019374550" target="_blank" rel="noopener noreferrer">33.91</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3640570" target="_blank" rel="noopener noreferrer">4.14</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019374550" target="_blank" rel="noopener noreferrer">2153</a></td><td>Palo Alto CA</td><td style="display: none;">111</td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-a4f3474c37cf7968dda6" data-h2h-matches="2" data-player-key="LYONS|LEILA" data-entry-status="entry" data-section-rank="80"><td class="col-rank">22</td><td><a class="h2h-jump" href="#h2h-a4f3474c37cf7968dda6">Leila</a></td><td><a class="h2h-jump" href="#h2h-a4f3474c37cf7968dda6">Lyons</a></td><td class="col-h2h" data-sort-val="0"><span class="h2h-badge h2h-even" data-h2h="[{"d": "2025-07-05", "t": "L5 BG14 Super Series at Solano Community College JUL 5 - 6", "r": "", "s": "1-6 6-1 3-6", "w": 0}, {"d": "2026-05-16", "t": "United by Tennis Spring Level 5 Junior 14s & 12s Singles Championship MAY 16 - 17", "r": "C-R16", "s": "5-4(6) 4-2", "w": 1}]">1-1</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019124239" target="_blank" rel="noopener noreferrer">33.93</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3872592" target="_blank" rel="noopener noreferrer">4.24</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019124239" target="_blank" rel="noopener noreferrer">1429</a></td><td>Sacramento CA</td><td style="display: none;">80</td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-b21504f37f617185000a" data-h2h-matches="3" data-player-key="HU|ANNABEL" data-entry-status="entry" data-section-rank="127"><td class="col-rank">23</td><td><a class="h2h-jump" href="#h2h-b21504f37f617185000a">Annabel</a></td><td><a class="h2h-jump" href="#h2h-b21504f37f617185000a">Hu</a></td><td class="col-h2h" data-sort-val="-3"><span class="h2h-badge h2h-loss" data-h2h="[{"d": "2025-07-19", "t": "Chamisal Level 5 Junior 12s Championships - Singles & Doubles JUL 19 - 21", "r": "Round of 16", "s": "1-6 1-6", "w": 0}, {"d": "2026-02-01", "t": "Open Level 5 Championship Singles - G12", "r": "PL-Final", "s": "6-7(4) 1-6", "w": 0}, {"d": "2025-04-05", "t": "NPT Level 5 Junior 12s & 14s Super Series APR 5 - 6", "r": "E-QF", "s": "6-4 3-6 1-6", "w": 0}]">0-3</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018637000" target="_blank" rel="noopener noreferrer">34.13</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3095546" target="_blank" rel="noopener noreferrer">4.57</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018637000" target="_blank" rel="noopener noreferrer">2474</a></td><td>Palo Alto CA</td><td style="display: none;">127</td></tr>
<tr class="entry-list-player" data-player-key="LIM|LILY" data-entry-status="entry" data-section-rank="102"><td class="col-rank">24</td><td>Lily</td><td>Lim</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018853201" target="_blank" rel="noopener noreferrer">34.27</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4550820" target="_blank" rel="noopener noreferrer">3.53</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018853201" target="_blank" rel="noopener noreferrer">2769</a></td><td>Boise ID</td><td style="display: none;">102</td></tr>
<tr class="selection-flight-row" data-selection-flight="4"><td colspan="8"><div class="selection-flight-label"><strong>Flight 4</strong> <span class="selection-flight-meta">WTN order 25-32</span></div></td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-468a7091dfbbe5b8d622" data-h2h-matches="1" data-player-key="KERN|HANA" data-entry-status="entry" data-section-rank="106"><td class="col-rank">25</td><td><a class="h2h-jump" href="#h2h-468a7091dfbbe5b8d622">Hana</a></td><td><a class="h2h-jump" href="#h2h-468a7091dfbbe5b8d622">Kern</a></td><td class="col-h2h" data-sort-val="1"><span class="h2h-badge h2h-win" data-h2h="[{"d": "2025-02-22", "t": "NPT Level 6 Junior Open FEB 22 - 23", "r": "Semifinals", "s": "6-0 6-1", "w": 1}]">1-0</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018668087" target="_blank" rel="noopener noreferrer">34.49</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4400364" target="_blank" rel="noopener noreferrer">4.13</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018668087" target="_blank" rel="noopener noreferrer">2082</a></td><td>Morgan Hill CA</td><td style="display: none;">106</td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-8db85b78b3873aa5f2ce" data-h2h-matches="3" data-player-key="BROWEI|ASTRAEA" data-entry-status="entry" data-section-rank="69"><td class="col-rank">26</td><td><a class="h2h-jump" href="#h2h-8db85b78b3873aa5f2ce">Astraea</a></td><td><a class="h2h-jump" href="#h2h-8db85b78b3873aa5f2ce">Browei</a></td><td class="col-h2h" data-sort-val="-1"><span class="h2h-badge h2h-loss" data-h2h="[{"d": "2024-11-09", "t": "FDT November Level 6 Junior Open - BG12s-18s NOV 9 - 10", "r": "Quarterfinals", "s": "6-4 6-4", "w": 1}, {"d": "2024-10-12", "t": "N.P.T. Level 6 Junior Open OCT 12 - 13", "r": "C-F", "s": "4-5(6) 0-4", "w": 0}, {"d": "2024-10-12", "t": "N.P.T. Level 6 Junior Open OCT 12 - 13", "r": "Round of 16", "s": "2-6 5-7", "w": 0}]">1-2</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019279674" target="_blank" rel="noopener noreferrer">34.90</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4065732" target="_blank" rel="noopener noreferrer">4.42</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019279674" target="_blank" rel="noopener noreferrer">1227</a></td><td>San Jose CA</td><td style="display: none;">69</td></tr>
<tr class="entry-list-player" data-player-key="VEL|REYA" data-entry-status="entry" data-section-rank="95"><td class="col-rank">27</td><td>Reya</td><td>Vel</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019446491" target="_blank" rel="noopener noreferrer">35.13</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4812294" target="_blank" rel="noopener noreferrer">4.05</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019446491" target="_blank" rel="noopener noreferrer">1708</a></td><td>Fremont CA</td><td style="display: none;">95</td></tr>
<tr class="entry-list-player" data-h2h="1" data-h2h-anchor="h2h-903afcd622dfb3ca811b" data-h2h-matches="1" data-player-key="KNAPP|OLIVIA" data-entry-status="entry" data-section-rank="214"><td class="col-rank">28</td><td><a class="h2h-jump" href="#h2h-903afcd622dfb3ca811b">Olivia</a></td><td><a class="h2h-jump" href="#h2h-903afcd622dfb3ca811b">Knapp</a></td><td class="col-h2h" data-sort-val="1"><span class="h2h-badge h2h-win" data-h2h="[{"d": "2026-05-23", "t": "Clovis Level 4 Excellence — Girls U12 Singles & Doubles", "r": "R16", "s": "6-0 6-1", "w": 1}]">1-0</span></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018820003" target="_blank" rel="noopener noreferrer">35.41</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3610832" target="_blank" rel="noopener noreferrer">3.54</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2018820003" target="_blank" rel="noopener noreferrer">4119</a></td><td>Menlo Park CA</td><td style="display: none;">214</td></tr>
<tr class="entry-list-player" data-player-key="SINGH|MIHIKA" data-entry-status="entry" data-section-rank="92"><td class="col-rank">29</td><td>Mihika</td><td>Singh</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019452382" target="_blank" rel="noopener noreferrer">35.50</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4449588" target="_blank" rel="noopener noreferrer">3.29</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019452382" target="_blank" rel="noopener noreferrer">1655</a></td><td>Fremont CA</td><td style="display: none;">92</td></tr>
<tr class="entry-list-player" data-player-key="LEE|GABBY" data-entry-status="entry" data-section-rank="172"><td class="col-rank">30</td><td>Gabby</td><td>Lee</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019126181" target="_blank" rel="noopener noreferrer">35.82</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/3974063" target="_blank" rel="noopener noreferrer">3.23</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019126181" target="_blank" rel="noopener noreferrer">3256</a></td><td>Moraga CA</td><td style="display: none;">172</td></tr>
<tr class="entry-list-player" data-player-key="KURTZ|KENNEDI" data-entry-status="entry" data-section-rank="136"><td class="col-rank">31</td><td>Kennedi</td><td>Kurtz</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019452324" target="_blank" rel="noopener noreferrer">36.03</a></td><td class="col-utr">N/A</td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019452324" target="_blank" rel="noopener noreferrer">2641</a></td><td>Sacramento CA</td><td style="display: none;">136</td></tr>
<tr class="entry-list-player" data-player-key="SOMANCHI|SAMYUKTA" data-entry-status="entry" data-section-rank="175"><td class="col-rank">32</td><td>Samyukta</td><td>Somanchi</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2020261375" target="_blank" rel="noopener noreferrer">36.88</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/5717102" target="_blank" rel="noopener noreferrer">2.57</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2020261375" target="_blank" rel="noopener noreferrer">3282</a></td><td>Mountain View CA</td><td style="display: none;">175</td></tr>
<tr class="selection-flight-row" data-selection-flight="5"><td colspan="8"><div class="selection-flight-label"><strong>Flight 5</strong> <span class="selection-flight-meta">WTN order 33-40</span></div></td></tr>
<tr class="alternate-player" data-player-key="ANKOTI|AARADHYA" data-entry-status="alternate" data-section-rank="138"><td class="col-rank">33<span class="entry-status-badge entry-status-alternate">Alternate</span></td><td>Aaradhya</td><td>Ankoti</td><td class="col-h2h"></td><td class="col-wtn"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019578831" target="_blank" rel="noopener noreferrer">37.35</a></td><td class="col-utr"><a href="https://app.utrsports.net/profiles/4603314" target="_blank" rel="noopener noreferrer">2.80</a></td><td class="col-national"><a href="https://www.usta.com/en/home/play/player-search/profile.html#?uaid=2019578831" target="_blank" rel="noopener noreferrer">2662</a></td><td>San Ramon CA</td><td style="display: none;">138</td></tr>
</tbody>
</table>
<section class="withdrawn-player-list" aria-label="Withdrawn players">
<div class="withdrawn-player-list-head">
<span>Withdrawn</span>
<strong>13</strong>
</div>
<ol>
<li><span class="withdrawn-player-position">1</span><span class="withdrawn-player-name">Tanvi Bharath</span><span class="withdrawn-player-location">Cupertino CA</span></li><li><span class="withdrawn-player-position">2</span><span class="withdrawn-player-name">Michelle He</span><span class="withdrawn-player-location">Burlingame CA</span></li><li><span class="withdrawn-player-position">3</span><span class="withdrawn-player-name">Anwesha Sharma</span><span class="withdrawn-player-location">Bentonville AR</span></li><li><span class="withdrawn-player-position">4</span><span class="withdrawn-player-name">Riley Yu</span><span class="withdrawn-player-location">Pasadena CA</span></li><li><span class="withdrawn-player-position">5</span><span class="withdrawn-player-name">Madyson Yang</span><span class="withdrawn-player-location">San Jose CA</span></li><li><span class="withdrawn-player-position">6</span><span class="withdrawn-player-name">Kendra Wu</span><span class="withdrawn-player-location">Cupertino CA</span></li><li><span class="withdrawn-player-position">7</span><span class="withdrawn-player-name">Cindy Chen</span><span class="withdrawn-player-location">Scottsdale AZ</span></li><li><span class="withdrawn-player-position">8</span><span class="withdrawn-player-name">Margaret Doran</span><span class="withdrawn-player-location">Atherton CA</span></li><li><span class="withdrawn-player-position">9</span><span class="withdrawn-player-name">Ellena Kau</span><span class="withdrawn-player-location">Piedmont CA</span></li><li><span class="withdrawn-player-position">10</span><span class="withdrawn-player-name">Adriana Zabalaga</span><span class="withdrawn-player-location">San Rafael CA</span></li><li><span class="withdrawn-player-position">11</span><span class="withdrawn-player-name">Sania Bhambani</span><span class="withdrawn-player-location">Saratoga CA</span></li><li><span class="withdrawn-player-position">12</span><span class="withdrawn-player-name">Kaitlin Hui</span><span class="withdrawn-player-location">Belmont CA</span></li><li><span class="withdrawn-player-position">13</span><span class="withdrawn-player-name">Olivia Wang</span><span class="withdrawn-player-location">Fremont CA</span></li>
</ol>
</section>
<div class="utr-histogram">
<h3>UTR Distribution <span class="utr-subtitle">(0.5-point bins)</span></h3>
<div id="utr-histogram-chart" class="utr-histogram-chart" data-utr-table="#players-table-main"></div>
<div class="utr-histogram-caption" id="utr-histogram-caption">Based on UTR values from the player list.</div>
</div>
<div class="stats-section">
<h2>Tournament Statistics</h2>
<div class="stats-grid">
<div class="stat-box">
<div class="stat-label">Total Players</div>
<div class="stat-value">33</div>
</div>
<div class="stat-box">
<div class="stat-label">WTN Range</div>
<div class="stat-value">30.40 - 37.35</div>
</div>
<div class="stat-box">
<div class="stat-label">Avg WTN</div>
<div class="stat-value">33.73</div>
</div>
<div class="stat-box">
<div class="stat-label">Avg UTR (known)</div>
<div class="stat-value">4.54</div>
</div>
<div class="stat-box">
<div class="stat-label">Draw Size</div>
<div class="stat-value">32</div>
</div>
<div class="stat-box">
<div class="stat-label">Registered</div>
<div class="stat-value">33</div>
</div>
<div class="stat-box">
<div class="stat-label">Registration Closes</div>
<div class="stat-value">Registration closed</div>
</div>
<div class="stat-box">
<div class="stat-label">Best Nat Rank</div>
<div class="stat-value">362</div>
</div>
<div class="stat-box">
<div class="stat-label">Top UTR</div>
<div class="stat-value">6.53</div>
</div>
</div>
</div>
<div class="tournament-details-page">
<h2>Tournament Information & Details</h2>
<h3>Draw & Registration</h3>
<div class="selection-callout">Details are based on the current USTA PlayTennis entry list.</div>
<div class="detail-row">
<span class="detail-label">Draw Size:</span>
<span class="detail-value">32</span>
</div>
<div class="detail-row">
<span class="detail-label">Registered:</span>
<span class="detail-value">33</span>
</div>
<div class="detail-row">
<span class="detail-label">Registration Closes:</span>
<span class="detail-value">Registration closed</span>
</div>
<div class="detail-row">
<span class="detail-label">Selection / Seeding:</span>
<span class="detail-value">Players are selected and seeded by WTN Singles rating; lower WTN is stronger.</span>
</div>
<h3>Format & Scoring</h3>
<div class="detail-row">
<span class="detail-label">Match Format:</span>
<span class="detail-value">This tournament has been designated to count for USTA Level 5 Ranking and uses the Flighted Draw Ranking Table. In the unlikely event there is only one flight, the standard table for a Compass Draw will be used.</span>
</div>
<div class="detail-row">
<span class="detail-label">Tiebreaks:</span>
<span class="detail-value">All matches will be the best of 3 Tiebreak sets and will use Regular Scoring, except that in the unlikely event that 5 entries are received in a division, the best of 3 Tiebreak sets with a 10-Point Match Tiebreak will be played. Note that in the event of inclement weather the USTA Regulations permit the Referee to shorten the match format from those described below.</span>
</div>
<h3>Venue Information</h3>
<div class="detail-row">
<span class="detail-label">Site:</span>
<span class="detail-value"><a href="https://www.google.com/maps/search/?api=1&query=Redwood High School Larkspur CA" target="_blank" style="color: #4472C4; text-decoration: none;">Redwood High School, Larkspur, CA</a></span>
</div>
<h3>Tournament Location</h3>
<div class="detail-row">
<span class="detail-label">Tournament Location:</span>
<span class="detail-value">Redwood High School, Larkspur, CA</span>
</div>
<div class="detail-row">
<span class="detail-label">Tournament Dates:</span>
<span class="detail-value">July 4 - 5, 2026</span>
</div>
<h3>Tournament Contact</h3>
<div class="detail-row">
<span class="detail-label">Tournament Director:</span>
<span class="detail-value">Hugo Colpart</span>
</div>
<div class="detail-row">
<span class="detail-label">Email:</span>
<span class="detail-value">hrttournaments@gmail.com</span>
</div>
<div class="detail-row">
<span class="detail-label">Phone:</span>
<span class="detail-value">707-971-5074</span>
</div>
</div>
<!-- Alexis vs roster match-history (desktop slot) -->
<div id="alexis-h2h-slot-desktop"></div>
<div class="desktop-view-toggle">
<a href="#" id="desktop-toggle-mobile">View Mobile Version</a>
</div>
</div><!-- end desktop-view -->
<!-- Mobile View Container -->
<div class="mobile-view">
<!-- Mobile Header -->
<header class="mobile-header">
<div class="mobile-header-top">
<a class="mobile-header-logo-link" href="index.html" aria-label="Back to tournament dashboard">
<svg class="mobile-header-logo" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="64" height="64" rx="8" fill="#2d5a27"/>
<rect x="0" y="8" width="64" height="8" fill="#fafafa"/>
<rect x="28" y="8" width="8" height="56" fill="#fafafa"/>
</svg>
</a>
<div class="mobile-header-content">
<h1 class="mobile-header-title" id="mobile-title"></h1>
<div class="mobile-header-meta" id="mobile-meta"></div>
<div class="mobile-deadline-badge" id="mobile-deadline-badge">
<div class="mobile-deadline-countdown" id="mobile-registration-countdown">Closes in --</div>
<div class="mobile-deadline-date" id="mobile-registration-date">--</div>
</div>
</div>
</div>
</header>
<!-- Hero Stats -->
<div class="mobile-hero-stats">
<!-- Tournament Name Link (inside card) -->
<a href="https://playtennis.usta.com/competitions/hrtacademiadetenis/Tournaments/overview/5bec2d08-af41-430a-8a5d-8d1d9a4abc97" target="_blank" rel="noopener noreferrer" class="mobile-tournament-link">
Open Level 5 Super Series — Larkspur Girls U14
</a>
<!-- Stats Grid -->
<div class="mobile-stats-grid">
<div class="mobile-stat-card">
<div class="mobile-stat-value" id="mobile-draw-size"></div>
<div class="mobile-stat-label">Draw Size</div>
</div>
<div class="mobile-stat-card highlight">
<div class="mobile-stat-value" id="mobile-seed"></div>
<div class="mobile-stat-label">Closes</div>
</div>
<div class="mobile-stat-card">
<div class="mobile-stat-value" id="mobile-registered"></div>
<div class="mobile-stat-label">Registered</div>
</div>
</div>
</div>
<!-- Alexis Spotlight Card -->
<div class="mobile-alexis-card" id="mobile-alexis-card"></div>
<!-- Position Gauge -->
<div class="mobile-position-gauge" id="mobile-position-gauge"></div>
<!-- Official draw dashboard is injected here as folded mobile details. -->
<!-- UTR Distribution -->
<div class="mobile-section-header">
<span class="mobile-section-title">UTR Distribution</span>
</div>
<div class="mobile-chart-section">
<div class="mobile-chart-card" id="mobile-histogram"></div>
</div>
<!-- Player List -->
<div class="mobile-section-header">
<span class="mobile-section-title">All Players (<span id="mobile-player-count"></span>)</span>
</div>
<div class="mobile-sort-controls">
<button class="mobile-sort-btn" data-sort="utr">UTR</button>
<button class="mobile-sort-btn active" data-sort="natRank">Nat Rank</button>
<button class="mobile-sort-btn" data-sort="wtn">WTN</button>
</div>
<div class="mobile-player-list" id="mobile-player-list"></div>
<button class="mobile-show-more" id="mobile-show-more">Show all players ↓</button>
<!-- Tournament Details -->
<div class="mobile-section-header">
<span class="mobile-section-title">Tournament Details</span>
</div>
<div class="mobile-info-section" id="mobile-info-section"></div>
<!-- Alexis vs roster match-history (mobile slot) -->
<div id="alexis-h2h-slot-mobile"></div>
<!-- View Toggle -->
<div class="mobile-view-toggle">
<a href="#" id="mobile-toggle-desktop">View Desktop Version</a>
</div>
</div><!-- end mobile-view -->
<!-- PRIMARY_ROSTER_H2H_START -->
<div id="alexis-roster-h2h-wrapper" data-h2h-wrapper="primary-roster-h2h-wrapper">
<script>(function(){
function h2hToggleMore(btn){
var gid=btn.getAttribute('data-gid');
var rows=document.querySelectorAll('.h2h-match[data-gid="'+gid+'"]');
var open=btn.getAttribute('data-open')==='1';
rows.forEach(function(r){r.classList.toggle('h2h-match-hidden',open);});
btn.setAttribute('data-open',open?'0':'1');
}
window.h2hToggleMore=h2hToggleMore;
})();</script>
<section class="h2h-block" id="primary-roster-h2h">
<div class="h2h-section-header">
<h2 class="h2h-section-title">Alexis Malakhova vs This Roster</h2>
<span class="h2h-section-subtitle">13 opponents in this draw</span>
</div>
<div class="h2h-chips"><a class="h2h-chip" href="#h2h-903afcd622dfb3ca811b"><span class="h2h-chip-name">Olivia Knapp</span><span class="h2h-chip-record">H2H 1–0</span></a><a class="h2h-chip" href="#h2h-2f8baed4870b032026e2"><span class="h2h-chip-name">Zhiyan Duan</span><span class="h2h-chip-record">H2H 1–0</span></a><a class="h2h-chip" href="#h2h-edabdf6a21a86efb0ff3"><span class="h2h-chip-name">Ariana Siamwalla</span><span class="h2h-chip-record">H2H 1–0</span></a><a class="h2h-chip" href="#h2h-d9eebd7bce6e344eb929"><span class="h2h-chip-name">Megan Lai</span><span class="h2h-chip-record">H2H 1–1</span></a><a class="h2h-chip" href="#h2h-b21504f37f617185000a"><span class="h2h-chip-name">Annabel Hu</span><span class="h2h-chip-record">H2H 0–3</span></a><a class="h2h-chip" href="#h2h-a4f3474c37cf7968dda6"><span class="h2h-chip-name">Leila Lyons</span><span class="h2h-chip-record">H2H 1–1</span></a><a class="h2h-chip" href="#h2h-7748a0ea0b8ad8bd7566"><span class="h2h-chip-name">Alexi Labrecque</span><span class="h2h-chip-record">H2H 0–3</span></a><a class="h2h-chip" href="#h2h-9e074e2db92730b1f7ad"><span class="h2h-chip-name">Ellinor Choi</span><span class="h2h-chip-record">H2H 1–0</span></a><a class="h2h-chip" href="#h2h-99e4b84dc34500191fb6"><span class="h2h-chip-name">Lavi Nguyen</span><span class="h2h-chip-record">H2H 0–1</span></a><a class="h2h-chip" href="#h2h-468a7091dfbbe5b8d622"><span class="h2h-chip-name">Hana Kern</span><span class="h2h-chip-record">H2H 1–0</span></a><a class="h2h-chip" href="#h2h-8c4e95b6ea9b05c56d1b"><span class="h2h-chip-name">Madeleine Chan</span><span class="h2h-chip-record">H2H 1–1</span></a><a class="h2h-chip" href="#h2h-8db85b78b3873aa5f2ce"><span class="h2h-chip-name">Astraea Browei</span><span class="h2h-chip-record">H2H 1–2</span></a><a class="h2h-chip" href="#h2h-79c7737a1361e663934e"><span class="h2h-chip-name">Aria Sinha</span><span class="h2h-chip-record">H2H 0–0</span></a></div>
<div class="h2h-player-card" id="h2h-903afcd622dfb3ca811b" data-h2h-player-id="player:903afcd622dfb3ca811b"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Olivia Knapp</span><span class="h2h-player-loc">Menlo Park CA</span></div><div class="h2h-record-summary">H2H 1–0</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">May 23rd, 2026</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main"><a href="https://playtennis.usta.com/Competitions/cloviseasthighschool/Tournaments/draws/18D71300-0E67-4CFF-BA6E-F4FDAFA58D9F" target="_blank" rel="noopener noreferrer">Clovis Level 4 Excellence — Girls U12 Singles & Doubles</a></div><div class="h2h-match-event-sub">Girls' 12 & under Singles · Clovis</div></div><div class="h2h-match-score">6-0 6-1</div></div></div></div><div class="h2h-player-card" id="h2h-2f8baed4870b032026e2" data-h2h-player-id="player:2f8baed4870b032026e2"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Zhiyan Duan</span><span class="h2h-player-loc">San Jose CA</span></div><div class="h2h-record-summary">H2H 1–0</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">May 16th, 2026</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">United by Tennis Spring Level 5 Junior 14s & 12s Singles Championship MAY 16 - 17</div><div class="h2h-match-event-sub">Girls' 14 & under singles · United by Tennis Spring</div></div><div class="h2h-match-score">4-0 3-1</div></div></div></div><div class="h2h-player-card" id="h2h-edabdf6a21a86efb0ff3" data-h2h-player-id="player:edabdf6a21a86efb0ff3"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Ariana Siamwalla</span><span class="h2h-player-loc">Saratoga CA</span></div><div class="h2h-record-summary">H2H 1–0</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">May 16th, 2026</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">United by Tennis Spring Level 5 Junior 14s & 12s Singles Championship MAY 16 - 17</div><div class="h2h-match-event-sub">Girls' 14 & under singles · United by Tennis Spring</div></div><div class="h2h-match-score">4-1 5-3</div></div></div></div><div class="h2h-player-card" id="h2h-d9eebd7bce6e344eb929" data-h2h-player-id="player:d9eebd7bce6e344eb929"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Megan Lai</span><span class="h2h-player-loc">San Ramon CA</span></div><div class="h2h-record-summary">H2H 1–1</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Oct 25th, 2025</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">BAWT "THE GOAT" Level 6 Junior Open OCT 25 - 26</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">4-6 1-6</div></div><div class="h2h-match"><div class="h2h-match-date">Jan 31st, 2026</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">FDT Level 5 Junior Singles Championship</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">6-1 0-6 MTB 11-9</div></div></div></div><div class="h2h-player-card" id="h2h-b21504f37f617185000a" data-h2h-player-id="player:b21504f37f617185000a"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Annabel Hu</span><span class="h2h-player-loc">Palo Alto CA</span></div><div class="h2h-record-summary">H2H 0–3</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Jul 19th, 2025</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">Chamisal Level 5 Junior 12s Championships - Singles & Doubles JUL 19 - 21</div><div class="h2h-match-event-sub">Girls' 12 & under singles · Chamisal</div></div><div class="h2h-match-score">1-6 1-6</div></div><div class="h2h-match"><div class="h2h-match-date">Feb 1st, 2026</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main"><a href="https://playtennis.usta.com/Competitions/fourdirectionstennis/Tournaments/draws/AADD3F01-D779-44EB-8F33-3CD79A3018F1" target="_blank" rel="noopener noreferrer">Open Level 5 Championship Singles - G12</a></div><div class="h2h-match-event-sub">Girls' 12 & under Singles · Open</div></div><div class="h2h-match-score">6-7(4) 1-6</div></div><div class="h2h-match"><div class="h2h-match-date">Apr 5th, 2025</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">NPT Level 5 Junior 12s & 14s Super Series APR 5 - 6</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">6-4 3-6 1-6</div></div></div></div><div class="h2h-player-card" id="h2h-a4f3474c37cf7968dda6" data-h2h-player-id="player:a4f3474c37cf7968dda6"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Leila Lyons</span><span class="h2h-player-loc">Sacramento CA</span></div><div class="h2h-record-summary">H2H 1–1</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Jul 5th, 2025</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">L5 BG14 Super Series at Solano Community College JUL 5 - 6</div><div class="h2h-match-event-sub">Girls' 14 & under singles</div></div><div class="h2h-match-score">1-6 6-1 3-6</div></div><div class="h2h-match"><div class="h2h-match-date">May 16th, 2026</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">United by Tennis Spring Level 5 Junior 14s & 12s Singles Championship MAY 16 - 17</div><div class="h2h-match-event-sub">Girls' 14 & under singles · United by Tennis Spring</div></div><div class="h2h-match-score">5-4(6) 4-2</div></div></div></div><div class="h2h-player-card" id="h2h-7748a0ea0b8ad8bd7566" data-h2h-player-id="player:7748a0ea0b8ad8bd7566"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Alexi Labrecque</span><span class="h2h-player-loc">Mountain View CA</span></div><div class="h2h-record-summary">H2H 0–3</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">May 24th, 2025</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">Santa Cruz Level 4 Juniors 12s Excellence @ La Madrona Athletic Club - Singles & Doubles MAY 24 - 26</div><div class="h2h-match-event-sub">Girls' 12 & under singles · Santa Cruz</div></div><div class="h2h-match-score">3-6 4-6</div></div><div class="h2h-match"><div class="h2h-match-date">May 17th, 2025</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">Santa Cruz Level 5 Junior 14s & 12s Championships @ La Madrona Athletic Club MAY 17 - 18</div><div class="h2h-match-event-sub">Girls' 12 & under singles · Santa Cruz</div></div><div class="h2h-match-score">1-6 1-6</div></div><div class="h2h-match"><div class="h2h-match-date">Feb 1st, 2025</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">FDT Winter Level 5 Junior Singles Championship FEB 1 - 2</div><div class="h2h-match-event-sub">Girls' 12 & under singles · FDT Winter</div></div><div class="h2h-match-score">0-4 1-4</div></div></div></div><div class="h2h-player-card" id="h2h-9e074e2db92730b1f7ad" data-h2h-player-id="player:9e074e2db92730b1f7ad"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Ellinor Choi</span><span class="h2h-player-loc">San Francisco CA</span></div><div class="h2h-record-summary">H2H 1–0</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">May 17th, 2025</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">Santa Cruz Level 5 Junior 14s & 12s Championships @ La Madrona Athletic Club MAY 17 - 18</div><div class="h2h-match-event-sub">Girls' 12 & under singles · Santa Cruz</div></div><div class="h2h-match-score">6-2 6-0</div></div></div></div><div class="h2h-player-card" id="h2h-99e4b84dc34500191fb6" data-h2h-player-id="player:99e4b84dc34500191fb6"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Lavi Nguyen</span><span class="h2h-player-loc">Elk Grove CA</span></div><div class="h2h-record-summary">H2H 0–1</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">May 3rd, 2025</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">Rio Del Oro Level 5 Junior 14s and 12s Super Series MAY 3 - 4</div><div class="h2h-match-event-sub">Girls' 12 & under singles · Rio Del Oro</div></div><div class="h2h-match-score">2-6 3-6</div></div></div></div><div class="h2h-player-card" id="h2h-468a7091dfbbe5b8d622" data-h2h-player-id="player:468a7091dfbbe5b8d622"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Hana Kern</span><span class="h2h-player-loc">Morgan Hill CA</span></div><div class="h2h-record-summary">H2H 1–0</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Feb 22nd, 2025</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">NPT Level 6 Junior Open FEB 22 - 23</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">6-0 6-1</div></div></div></div><div class="h2h-player-card" id="h2h-8c4e95b6ea9b05c56d1b" data-h2h-player-id="player:8c4e95b6ea9b05c56d1b"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Madeleine Chan</span><span class="h2h-player-loc">San Carlos CA</span></div><div class="h2h-record-summary">H2H 1–1</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Feb 22nd, 2025</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">NPT Level 6 Junior Open FEB 22 - 23</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">6-1 3-6 MTB 12-10</div></div><div class="h2h-match"><div class="h2h-match-date">Dec 9th, 2023</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">Cudny Tennis Academy 10U Orange, 10/12U Green, & 14U Yellow🟠🟢🟡 - Green DEC 9</div><div class="h2h-match-event-sub">Girls' 12 & under singles</div></div><div class="h2h-match-score">4-6</div></div></div></div><div class="h2h-player-card" id="h2h-8db85b78b3873aa5f2ce" data-h2h-player-id="player:8db85b78b3873aa5f2ce"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Astraea Browei</span><span class="h2h-player-loc">San Jose CA</span></div><div class="h2h-record-summary">H2H 1–2</div></div><div class="h2h-matches"><div class="h2h-match"><div class="h2h-match-date">Nov 9th, 2024</div><div class="h2h-pill h2h-pill-w">W</div><div class="h2h-match-event"><div class="h2h-match-event-main">FDT November Level 6 Junior Open - BG12s-18s NOV 9 - 10</div><div class="h2h-match-event-sub">Girls' 12 & under singles · FDT November</div></div><div class="h2h-match-score">6-4 6-4</div></div><div class="h2h-match"><div class="h2h-match-date">Oct 12th, 2024</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">N.P.T. Level 6 Junior Open OCT 12 - 13</div><div class="h2h-match-event-sub">Girls' 12 & under singles · N.P.T.</div></div><div class="h2h-match-score">4-5(6) 0-4</div></div><div class="h2h-match"><div class="h2h-match-date">Oct 12th, 2024</div><div class="h2h-pill h2h-pill-l">L</div><div class="h2h-match-event"><div class="h2h-match-event-main">N.P.T. Level 6 Junior Open OCT 12 - 13</div><div class="h2h-match-event-sub">Girls' 12 & under singles · N.P.T.</div></div><div class="h2h-match-score">2-6 5-7</div></div></div></div><div class="h2h-player-card" id="h2h-79c7737a1361e663934e" data-h2h-player-id="player:79c7737a1361e663934e"><div class="h2h-player-card-header"><div class="h2h-player-name-row"><span class="h2h-player-name">Aria Sinha</span><span class="h2h-player-loc">San Ramon CA</span></div><div class="h2h-record-summary">H2H 0–0</div></div><div class="h2h-matches"></div></div>
</section>
</div>
<!-- PRIMARY_ROSTER_H2H_END -->
<!-- Mobile View JavaScript -->
<script>
// ========================================
// MOBILE VIEW IMPLEMENTATION
// ========================================
function reportDefaultSort() {
const table = document.querySelector('.desktop-view table.players-table[data-default-sort]');
const value = (table?.getAttribute('data-default-sort') || '').trim();
return value || 'natRank';
}
let currentSort = reportDefaultSort();
let isExpanded = false;
let allPlayers = [];
let isMixedEvent = false;
let mixedGroups = null;
let multiGroups = null;
let playerByKey = {};
let targetPlayer = null;
// Section ranks are sourced directly from the hidden table column.
const SECTION_RANKS = {};
// USTA UAID mapping from rankings_results_v1.csv
// USTA profile links - will be populated from desktop version's playerProfileUrlByName
const PLAYER_USTA_URLS = {};
// ========================================
// DATA PARSING FUNCTIONS
// ========================================
function detectMixedEvent() {
const tables = document.querySelectorAll('.desktop-view table.players-table');
if (tables.length < 2) return false;
const headers = Array.from(document.querySelectorAll('.desktop-view table.players-table thead th')).map((th) =>
(th.textContent || '').trim().toLowerCase()
);
// Mixed doubles reports include a partner column AND a Team/Combined NST column.
// Singles reports may also include a Partner column (doubles partner mapping).
return headers.includes('team nst') || headers.includes('combined nst');
}
function makePlayerKey(firstName, lastName) {
const first = (firstName || '').trim().toUpperCase();
const last = (lastName || '').trim().toUpperCase();
return `${last}|${first}`;
}
function partnerKeyFromText(text) {
const raw = (text || '').trim();
if (!raw) return '';
// Expected format: "Last, First"
if (raw.includes(',')) {
const parts = raw.split(',');
const last = (parts[0] || '').trim();
const first = (parts.slice(1).join(',') || '').trim();
return makePlayerKey(first, last);
}
// Fallback: "First Last"
const parts = raw.split(/\s+/).filter(Boolean);
if (parts.length === 1) return makePlayerKey(parts[0], '');
return makePlayerKey(parts[0], parts.slice(1).join(' '));
}
function parsePlayersFromTable(table, groupLabel) {
const players = [];
const headers = Array.from(table.querySelectorAll('thead th')).map((th) =>
(th.textContent || '').trim().toLowerCase()
);
const col = (name, fallback) => {
const idx = headers.findIndex((h) => h === name);
return idx !== -1 ? idx : fallback;
};