-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path41777a41fdd0e45535f9dde2888d2da4.html
More file actions
1019 lines (997 loc) · 480 KB
/
41777a41fdd0e45535f9dde2888d2da4.html
File metadata and controls
1019 lines (997 loc) · 480 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 lang="en" data-version="4.8.4" data-build="11361"><head><meta charset="utf-8"><link rel="manifest" href="/site-manifest.json"><meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"><script src="/newrelic/newrelic-prod.js"></script><script id="theme-loader" src="/theme-loader.js"></script><title>Bleacher Report: Latest Mock Draft + biggest risers and fallers | NBA.com</title><link rel="icon" href="/favicon.ico"><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" href="/apple-touch-icon.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon.png"><link href="/apple-touch-icon.png"><meta name="msapplication-TileColor" content="#da532c"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#051c2d"><meta name="description" content="Bleacher Report's Jonathan Wasserman tracks who's rising and who's falling in his latest 2024 NBA mock draft."><meta name="keywords" content="2024 NBA Mock Draft risers fallers"><meta name="og:locale" content="en_US"><meta name="og:site_name" content="NBA.com"><meta name="og:description" content="Bleacher Report's Jonathan Wasserman tracks who's rising and who's falling in his latest 2024 NBA mock draft."><meta name="og:type" content="website"><meta name="twitter:site" content="@NBA"><meta name="twitter:card" content="summary_large_image"><meta name="post-id" content="1239156"><meta property="og:title" content="Bleacher Report: Latest Mock Draft + biggest risers and fallers"><meta property="og:type" content="website"><meta property="og:url" content="https://www.nba.com/news/bleacher-report-nba-mock-draft-full-risers-fallers-dec-12-2023"><meta property="og:image" content="https://cdn.nba.com/manage/2023/12/alexandre-sarr-iso-looks.jpg"><meta name="twitter:card" property="twitter:card" content="summary_large_image"><meta name="twitter:title" property="twitter:title" content="Bleacher Report: Latest Mock Draft + biggest risers and fallers"><meta name="twitter:image" property="twitter:image" content="https://cdn.nba.com/manage/2023/12/alexandre-sarr-iso-looks.jpg"><meta name="twitter:description" content="Bleacher Report's Jonathan Wasserman tracks which players are rising and falling the most in his latest mock draft for 2024."><script src="/adfuel/initiator.js"></script><meta name="next-head-count" content="33"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin=""><link rel="preload" href="/_next/static/css/241fc50cec90b6f5.css" as="style"><link rel="stylesheet" href="/_next/static/css/241fc50cec90b6f5.css" data-n-g=""><link rel="preload" href="/_next/static/css/e239377f8ddece76.css" as="style"><link rel="stylesheet" href="/_next/static/css/e239377f8ddece76.css" data-n-p=""><link rel="preload" href="/_next/static/css/ae3784b781d981a8.css" as="style"><link rel="stylesheet" href="/_next/static/css/ae3784b781d981a8.css" data-n-p=""><link rel="preload" href="/_next/static/css/35950f4567ad65eb.css" as="style"><link rel="stylesheet" href="/_next/static/css/35950f4567ad65eb.css" data-n-p=""><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-7298e2cd61c27136.js" defer=""></script><script src="/_next/static/chunks/framework-6a24ea55bfe2d3c0.js" defer=""></script><script src="/_next/static/chunks/main-878323283d90b24a.js" defer=""></script><script src="/_next/static/chunks/pages/_app-95ea7805ffecaf9a.js" defer=""></script><script src="/_next/static/chunks/45992-bb13bcb3208d8056.js" defer=""></script><script src="/_next/static/chunks/70248-afcb9e5d631adbb4.js" defer=""></script><script src="/_next/static/chunks/40070-5fd221e6086249a7.js" defer=""></script><script src="/_next/static/chunks/34179-514e799059d32e96.js" defer=""></script><script src="/_next/static/chunks/48255-193005e25c1415cf.js" defer=""></script><script src="/_next/static/chunks/83621-b023d8873c6e7d0a.js" defer=""></script><script src="/_next/static/chunks/18470-8329b3085f1351e7.js" defer=""></script><script src="/_next/static/chunks/76931-9bd4f7ce9d5a8e02.js" defer=""></script><script src="/_next/static/chunks/pages/news/%5B...article%5D-fb8a64dc9a430ff8.js" defer=""></script><script src="/_next/static/aOUfB2kMoniIyQ584C5rO/_buildManifest.js" defer=""></script><script src="/_next/static/aOUfB2kMoniIyQ584C5rO/_ssgManifest.js" defer=""></script><style data-href="https://fonts.googleapis.com/css?family=Roboto:300,400,700,900|Roboto+Condensed:400,700|Roboto+Slab:400,700&display=swap">@font-face{font-family:'Roboto';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBBc-.woff) format('woff')}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxM.woff) format('woff')}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc-.woff) format('woff')}@font-face{font-family:'Roboto';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtfBBc-.woff) format('woff')}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBO5Xo.woff) format('woff')}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBO5Xo.woff) format('woff')}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmb2Rl.woff) format('woff')}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4Omb2Rl.woff) format('woff')}@font-face{font-family:'Roboto';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCRc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Roboto';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fABc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Roboto';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCBc4AMP6lbBP.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Roboto';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBxc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Roboto';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCxc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Roboto';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fChc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Roboto';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBBc4AMP6lQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xKKTU1Kvnz.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5mxKKTU1Kvnz.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7mxKKTU1Kvnz.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4WxKKTU1Kvnz.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7WxKKTU1Kvnz.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7GxKKTU1Kvnz.woff2) format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCRc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfABc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCBc4AMP6lbBP.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBxc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCxc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfChc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc4AMP6lQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Roboto';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtfCRc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Roboto';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtfABc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Roboto';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtfCBc4AMP6lbBP.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Roboto';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtfBxc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Roboto';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtfCxc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Roboto';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtfChc4AMP6lbBP.woff2) format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Roboto';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtfBBc4AMP6lQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DQk6YvNkeg.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQk6YvM.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19-7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19a7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1967DQk6YvNkeg.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19G7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-1927DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19y7DQk6YvNkeg.woff2) format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQk6YvM.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufA5qWr4xCCQ_k.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufJ5qWr4xCCQ_k.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufB5qWr4xCCQ_k.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufO5qWr4xCCQ_k.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufC5qWr4xCCQ_k.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufD5qWr4xCCQ_k.woff2) format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufN5qWr4xCC.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufA5qWr4xCCQ_k.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufJ5qWr4xCCQ_k.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufB5qWr4xCCQ_k.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufO5qWr4xCCQ_k.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufC5qWr4xCCQ_k.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufD5qWr4xCCQ_k.woff2) format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/robotoslab/v34/BngMUXZYTXPIvIBgJJSb6ufN5qWr4xCC.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}</style></head><body><div id="__next"><div data-esi="true" style="display:none"><div>
<script>
var _esi = {
country: "RO",
tz: "GMT+2",
region: "",
browser: "MOZILLA",
os: "UNIX",
device: "computer",
isMobile: "false",
isDomestic: "false",
ip: "5.2.223.113"
};
</script>
</div></div><script type="application/ld+json">{"@context":"https://schema.org/","@type":"Article","@id":"https://www.nba.com/news/bleacher-report-nba-mock-draft-full-risers-fallers-dec-12-2023","headline":"Bleacher Report: Latest Mock Draft + biggest risers and fallers","url":"https://www.nba.com/news/bleacher-report-nba-mock-draft-full-risers-fallers-dec-12-2023","articleBody":"Editor’s Note: Find more of Jonathan Wasserman’s coverage of the 2024 Draft on Bleacher Report or to read this article on BleacherReport.com, click here.\r\n\r\n\r\n\r\n(B/R) — The top of 2024 NBA draft boards are fuzzier than any in recent memory heading into the holiday break.\r\n\r\nThere still isn't a true No. 1 overall favorite, which means the lottery order and team needs could play a bigger role in who goes first than usual. Right now, our projected first pick could change each mock draft depending on the NBA standings and odds.\r\n\r\nWhile several top NCAA prospects have underwhelmed early, the top names overseas have exceeded expectations. At this current rate, three of the top five picks may be international.\r\n\r\nThe upcoming draft may be receiving some needed boosts from surprise college freshmen and breakout upperclassmen. But unless one of the high-profile prospects starts to separate from the pack, there could be a lot of trade chatter at No. 1 after the lottery.\r\n\r\nDraft order based on standings heading into Wednesday's games.\r\n\r\nBiggest Risers and Fallers Since Last Mock Draft\r\n\r\n\r\nRisers\r\n\r\nReed Sheppard, Kentucky\r\nRob Dillingham, Kentucky\r\nTrevon Brazile, Arkansas\r\nAjay Mitchell, Santa Barbara\r\nDalton Knecht, Tennessee\r\nTerrence Shannon Jr., Illinois\r\n\r\nFallers\r\n\r\nTyrese Proctor, Duke\r\nJustin Edwards, Kentucky\r\nAday Mara, UCLA\r\nCarlton Carrington, Pittsburgh\r\nAaron Bradshaw, Kentucky\r\n\r\n\r\nBiggest Risers and Fallers This Season\r\n\r\n\r\n\r\nRisers\r\n\r\nNikola Topić, Mega MIS\r\nCarlton Carrington, Pittsburgh\r\nReed Sheppard, Kentucky\r\nRyan Dunn, Virginia\r\nHunter Sallis, Wake Forest\r\nKevin McCullar Jr., Kansas\r\nDalton Knecht, Tennessee\r\nAjay Mitchell, Santa Barbara\r\n\r\nFallers\r\n\r\nAaron Bradshaw, Kentucky\r\nJustin Edwards, Kentucky\r\nD.J. Wagner, Kentucky\r\nMark Mitchell, Duke\r\n\r\n\r\n\r\n1. Detroit Pistons: Alexandre Sarr\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 4\r\n \tSchool/Team: Perth Wildcats\r\n \tPosition: PF/C\r\n \tAge: 18\r\n \tSize: 7-foot-1, 216 lbs\r\n \tPro Comparison: Jaren Jackson Jr.\r\n\r\nAlexandre Sarr's flashes at both ends have created visions of a 7-foot-1 power forward/center who's a switchable rim protector and 3-point threat, capable of driving past closeouts and scoring with touch around the key.\r\n\r\nAnd for an 18-year-old, those visions give Sarr some wiggle room with his consistency and polish. Reminders of his lack of strength, shooting reliability and handle are served regularly. But scouts will be patient due to his coveted archetype and his NBL production as a teenager.\r\n\r\nHe's making an impact at his absolute floor with play-finishing, occasional shotmaking and defensive contests. There may be a wide variety of potential outcomes when dealing with Sarr's trajectory, but there is top-player-in-the-class upside if a best-case scenario plays out with his development, while Sarr still figures to improve a rotation if he winds up plateauing as an athletic two-way energizer.\r\n\r\n2. San Antonio Spurs: Nikola Topić\r\n\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 2\r\n \tSchool/Team: Mega MIS\r\n \tPosition: PG\r\n \tAge: 18\r\n \tSize: 6-foot-6, 198 lbs\r\n \tPro Comparison: Shai Gilgeous-Alexander\r\n\r\nPotentially the youngest 2024 draft prospect, Nikola Topić leads the Adriatic League in assists and ranks second in scoring.\r\n\r\nQuestions over his athleticism aren't setting off alarms thanks to his 6-foot-6 size, a 61.6 two-point percentage and surge in NBA star guards (Shai Gilgeous-Alexander, Tyrese Haliburton, Jalen Brunson, Luka Dončić) who've excelled with shiftiness, footwork, IQ and skill over speed and explosion.\r\n\r\nHe's demonstrated a special knack for beating defenders with timely moves, change of speed, surprise bursts and low ball-handling moves. And he's outstanding off the dribble with his vision, passing feel and finishing craft.\r\n\r\nTopić would have a stronger first-pick case if he was shooting better from deep, but he's still hit 17 threes in 12 games, and historically, he's always been capable from behind the arc and over 80.0% from the free-throw line.\r\n\r\n3. Washington Wizards: Isaiah Collier\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 3\r\n \tSchool/Team: USC\r\n \tPosition: PG\r\n \tAge: 19, Freshman\r\n \tSize: 6-foot-5, 210 lbs\r\n \tPro Comparison: Baron Davis\r\n\r\nThe biggest draws to Isaiah Collier right now are his shifty ball-handling and strength for attacking and finishing at the rim, along with his ability to create shots for teammates. These are aspects of his game that seem translatable, given his NBA positional tools/burst and how passing transitionally carries over.\r\n\r\nWashington should feel it can bank on Collier for rim pressure and playmaking at the least.\r\n\r\nHe's also shot well early, both off the catch and with his mid-range pull-up. His jump shot still isn't highly convincing, however, given the low-volume attempts and a borderline set shot that doesn't seem super conducive for consistent long-range shooting.\r\n\r\nCollier's decision-making is the most discussed flaw. He's averaging 4.6 turnovers per game, coughing it up 34.4% of the time in ball-screen situations. Despite USC's talented roster, it has lost three of eight games, and Collier ranks fifth on the team in box plus-minus.\r\n\r\nI's also a difficult draft to nitpick a highly productive freshman, particularly one with outstanding physical tools, valuable creativity, obvious passing vision and a capable shot.\r\n\r\n4. Memphis Grizzlies: Zaccharie Risacher\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 5\r\n \tSchool/Team: JL Bourg\r\n \tPosition: SF\r\n \tAge: 18\r\n \tSize: 6-foot-8, 204 lbs\r\n \tPro Comparison: Harrison Barnes\r\n\r\nIn a class that's missing convincing All-Star prospects, Zaccharie Risacher is building a case around a high floor.\r\n\r\nHe's been on a heater over the past month, raising his 3-point mark to 45.6% between LNB Pro A and Eurocup. It's illuminated some exciting shotmaking ability to complement his 6-foot-8 size, explosiveness, open-floor ball-handling and defensive versatility.\r\n\r\nThe case against Risacher as a top pick focuses on his current archetype and the unlikelihood he'll operate as an offensive initiator in the half court. But at 18 years old with plenty of time/room to grow, his three-and-D floor and flashes of passing (at lower levels) should be enough to justify looking at Risacher in the top three of this particular draft.\r\n\r\n5. Portland Trail Blazers: Matas Buzelis\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 6\r\n \tSchool/Team: G League Ignite\r\n \tPosition: SG/SF\r\n \tAge: 19\r\n \tSize: 6-foot-8, 209 lbs\r\n \tPro Comparison: Franz Wagner\r\n\r\nBack from an ankle injury, Matas Buzelis showcased his jumbo-guard skills and athleticism in two games for Ignite with open-floor ball-handling, fluid slashing, above-the-rim finishing and defensive contests.\r\n\r\nHe's missed six of his first seven threes, but shooting isn't a concern for Buzelis. He's a comfortable three-level shot-maker with range, though the upside pops most when he's creating into smooth drives and mid-range jumpers or fallaways.\r\n\r\nHe isn't tight enough with the ball yet to consistently get to his spots in the half court. He's looked vulnerable when pressured. A stronger frame and tighter handle should eventually help, and at 19 years old, scouts could think Buzelis can eventually achieve both.\r\n\r\n6. Chicago Bulls: Ron Holland\r\n\r\n\r\n\r\n\r\n \tStock Status: Down\r\n \tPrevious Mock Draft Spot: No. 1\r\n \tSchool/Team: G League Ignite\r\n \tPosition: SF\r\n \tAge: 18\r\n \tSize: 6-foot-6, 204 lbs\r\n \tPro Comparison: Shawn Marion\r\n\r\nBack on track after a brief slump in November, Ron Holland has averaged 23.2 points on 52.7% over Ignite's last five games.\r\n\r\nHe's seemingly activated a different level of focus with his determination to attack defenders and cut down on turnovers. His explosiveness in the open floor is tough to top. And in the half court, he's turning the corner, playing through contract until he's gotten to the hoop or he's putting back his own misses.\r\n\r\nThough his self-creation still isn't great for a potential No. 1 overall wing prospect, he has still delivered some encouraging flashes, changing speeds and directions to shake free.\r\n\r\nAt this point, his 23.5 3-point percentage, 57.7 free-throw percentage and decision-making raise the most red flags, particularly for a limited creator and playmaker in the No. 1 overall mix. It's almost becoming safer for teams to project more of an energizer type than a top option.\r\n\r\nOn the other hand, the fact that he's still scoring at a strong clip in the G League at 18 years old—without an advanced bag or jump shot—suggests Holland offers both a high floor and pathway to upside.\r\n\r\n7. Charlotte Hornets: Stephon Castle\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 7\r\n \tSchool/Team: Connecticut\r\n \tPosition: SG\r\n \tAge: 19, Freshman\r\n \tSize: 6-foot-6, 215 lbs\r\n \tPro Comparison: Jimmy Butler\r\n\r\nStephon Castle's return from a knee injury against North Carolina was mostly uneventful. Scouts are just pleased he's back in the lineup, given the draft's need for more star power and Castle's promising start in November.\r\n\r\nScouts figure to be patient with the freshman, given the missed time, Connecticut's depth and the long-term appeal of a 6'6\" point-wing and strong, versatile defender.\r\n\r\nConcerns may pop up around his 3-point shooting and lack of explosion for creating separation. However, Castle plays at his own, slower pace that allows him to control possessions and defenders. And he's showcased enough three-level shotmaking over the years to give him some wiggle room with his percentages.\r\n\r\n8. Utah Jazz: Ja'Kobe Walter\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 8\r\n \tSchool/Team: Baylor\r\n \tPosition: SG\r\n \tAge: 19, Freshman\r\n \tSize: 6-foot-5, 195 lbs\r\n \tPro Comparison: Kentavious Caldwell-Pope\r\n\r\nThough Ja'Kobe Walter has been streaky this season, age, physical tools, obvious shotmaking skill and a weak lottery will earn him a pass.\r\n\r\nLimited creativity has been the biggest problem that's led to difficult shots and no translatable playmaking (seven assists, eight games).\r\n\r\nStill, at 6-foot-5 with a strong frame, deep range, a runner/floater and the ability to shoot off movement, he should have the right skill set and body for three-level off-ball scoring.\r\n\r\n9. Portland Trail Blazers (via Warriors): Cody Williams\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 9\r\n \tSchool/Team: Colorado\r\n \tPosition: SF\r\n \tAge: 19, Freshman\r\n \tSize: 6-foot-8, 190 lbs\r\n \tPro Comparison: Jerami Grant\r\n\r\nDespite performances at the Nike Hoop Summit, McDonalds All-American week and World Cup that painted Cody Williams as raw and unpolished, he's averaging 14.0 points on 62.3% shooting.\r\n\r\nEven without any advanced creation or a high-usage jumper, he's scoring efficiently, mostly by optimizing his positional height for separating and using footwork and touch around the paint.\r\n\r\nFlashes of 3-point shooting (6-of-10) and defensive effort have led to one of the most promising starts among freshmen.\r\n\r\nA lack of threes attempted and half-court creation/playmaking does raise some questions, but it's difficult to nitpick Williams' highly productive and efficient start.\r\n\r\n10. San Antonio Spurs (via Raptors): Ryan Dunn\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 14\r\n \tSchool/Team: Virginia\r\n \tPosition: SF/PF\r\n \tAge: 20, Sophomore\r\n \tSize: 6-foot-8, 216 lbs\r\n \tPro Comparison: Herb Jones\r\n\r\nRyan Dunn is making defensive plays at a rate we've never seen. And at 6'8\" with elite-level explosion and foot speed, scouts are seeing translatable defensive playmaking and court coverage.\r\n\r\nThe question is how high it can push him up boards, since he's just 4-of-19 from three and hasn't demonstrated any real handle, creation or passing.\r\n\r\nIn the mid-first round, however, there aren't a lot of prospect who offer certainty. And Dunn does with his defensive versatility and play-finishing, a combination that can be valuable in a specific role for a team that gets enough scoring.\r\n\r\n11. Atlanta Hawks: Rob Dillingham\r\n\r\n\r\n\r\n\r\n \tStock Status: Up\r\n \tPrevious Mock Draft Spot: No. 25\r\n \tSchool/Team: Kentucky\r\n \tPosition: PG/SG\r\n \tAge: 18, Freshman\r\n \tSize: 6-foot-3, 176 lbs\r\n \tPro Comparison: Bones Hyland\r\n\r\nRob Dillingham has surprised scouts with his approach and willingness to move the ball. Averaging 5.4 assists to 1.6 turnovers, he's sold himself so far as a point guard, rather than an undersized scoring combo.\r\n\r\nFor the most part, he's picked the right times to showcase his self-creation and off-the-dribble shotmaking. And he's off to a scorching start from three (16-of-32), hitting both pull-ups and rhythm spot-ups.\r\n\r\nScouts will be eager to see how he measures, given the questions around his projected finishing and defense. But Dillingham has been gaining more and more support with his new mentality that's help lead to more efficient scoring and playmaking.\r\n\r\n\r\n12. Oklahoma City Thunder (via Rockets): Terrence Shannon Jr.\r\n\r\n\r\n\r\n \tStock Status: Up\r\n \tPrevious Mock Draft Spot: No. 51\r\n \tSchool/Team: Illinois\r\n \tPosition: SG/SF\r\n \tAge: 23, Senior\r\n \tSize: 6-foot-6, 215 lbs\r\n\r\nTerrence Shannon Jr. moved the needle on his draft stock against Rutgers with 33 points that highlighted his blazing burst with the ball. While his rim pressure has always been well-documented, he showed more ability to slow down and create with deceleration and body control or use his gravity to draw help and find teammates.\r\n\r\nSo far this season, he's also making 44.8% of his pull-ups and 38.7% of his catch-and-shoot chances.\r\n\r\nEven if his shooting comes and goes, teams could still see a pro and worthwhile first-round bet on Shannon's streaky shotmaking when paired with electric driving, strong defensive tools and secondary playmaking.\r\n\r\n13. Oklahoma City Thunder (via Clippers): Donovan Clingan\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 13\r\n \tSchool/Team: Connecticut\r\n \tPosition: C\r\n \tAge: 19, Sophomore\r\n \tSize: 7-foot-2, 280 lbs\r\n \tPro Comparison: Walker Kessler\r\n\r\nDonovan Clingan didn't earn any new fans after the Kansas game. Athletic limitations were exposed and held him back on some finishes, and he looked uncomfortable getting out to challenge Hunter Dickinson's three-ball.\r\n\r\nNBA teams should still figure they'll be able to bank on his 7-foot-2 size and anticipation in rim protection and his soft hands and 280-pound frame for easy baskets and boards. No versatility just may limit his suitors to teams that could use center depth, physicality and a shot-blocking presence.\r\n\r\n14. Houston Rockets (via Nets): Trevon Brazile\r\n\r\n\r\n\r\n\r\n \tStock Status: Up\r\n \tPrevious Mock Draft Spot: No. 27\r\n \tSchool/Team: Arkansas\r\n \tPosition: PF/C\r\n \tAge: 20, Sophomore\r\n \tSize: 6-foot-10\r\n\r\nTrevon Brazile's 19 points and 11 boards in a win over Duke highlighted the shotmaking and athleticism that are easy to picture fitting onto an NBA floor. His soft, high-arching 3-point stroke has become very convincing, while his tools and bounce around the basket create highly translatable finishing.\r\n\r\nContinuous flashes of drives past closeouts, body control off the dribble and touch shots should push Brazile in the first-round mix for most teams. As long as no post-ACL tear issues arise and his shot keeps falling, Arkansas should be sending another forward to the NBA.\r\n\r\n15. New Orleans Pelicans: Kevin McCullar Jr.\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 17\r\n \tSchool/Team: Kansas\r\n \tPosition: SG/SF\r\n \tAge: 22, Senior\r\n \tSize: 6-foot-7, 214 lbs\r\n\r\nA borderline draft pick in 2023, Kevin McCullar Jr. is altering previous evaluations and scouts' thoughts with his improved shooting, aggressive slashing, passing/defensive IQ and impact on winning.\r\n\r\nElevated aggression has led to more finishes and playmaking, with McCullar now averaging 18.5 points and 5.1 assists. And he's creating opportunities within Kansas' offense—not with extra ball screens or isolation—currently generating 1.5 points per possessions out of spot-ups (97th percentile) and consistently making himself available for cuts (13-of-15).\r\n\r\nA dangerous transition ball-handler and effective off-ball scorer with strong defensive tools/instincts, McCullar may just need an average/capable catch-and-shoot game to solidify first-round interest. He hit three 3-pointers in the final six minutes to propel Kansas over Connecticut on Friday.\r\n\r\n16. Cleveland Cavaliers: Carlton Carrington\r\n\r\n\r\n\r\n\r\n \tStock Status: Down\r\n \tPrevious Mock Draft Spot: No. 10\r\n \tSchool/Team: Pittsburgh\r\n \tPosition: PG/SG\r\n \tAge: 18, Freshman\r\n \tSize: 6-foot-5, 190 lbs\r\n \tPro Comparison: Tyrese Maxey\r\n\r\nCarlton Carrington has cooled off, and now scouts are starting question which aspects of his hot start were legitimate.\r\n\r\nThe combination of 6'5\" size, playmaking IQ and shotmaking versatility remain appealing. He's still making high-level deliveries off lives dribbles. And despite the fact his jumper isn't falling at the same rate as earlier, he's looked comfortable from deep, pulling up and stepping back.\r\n\r\nBut the fact that he's made just four shots at the rim and has three steals and zero blocks (eight games) is raising some worrisome questions about his athleticism and quickness.\r\n\r\n17. Miami Heat: Reed Sheppard\r\n\r\n\r\n\r\n\r\n \tStock Status: Up\r\n \tPrevious Mock Draft Spot: No. 36\r\n \tSchool/Team: Kentucky\r\n \tPosition: SG\r\n \tAge: 19, Freshman\r\n \tSize: 6-foot-3, 187 lbs\r\n\r\nNo player is generating more conversation and debate within scouting circles than Reed Sheppard.\r\n\r\nDespite Kentucky's loss to Miami, he added another gem to the early-season reel with 26 points, nine boards and six assists. He's now third in the NCAA in box plus-minus, consistently making positives plays while converting 63.0% of his twos, 61.1% of his threes, totaling 31 assists to seven turnovers and registering enormous defensive playmaking rates (6.1 STL percentage, 3.8 BLK percentage).\r\n\r\nThe numbers seemingly have to come back to earth at some point, but it's pretty clear that Sheppard possesses elite shotmaking skill, high-IQ passing and excellent defensive instincts. While scouts will be waiting early to find out his actual height and wingspan, poor physical tools shouldn't prevent his shooting, passing and reactions from translating in a connector role.\r\n\r\n18. Phoenix Suns: Kyle Filipowski\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 11\r\n \tSchool/Team: Duke\r\n \tPosition: PF/C\r\n \tAge: 20, Sophomore\r\n \tSize: 7 feet, 248 lbs\r\n\r\nKyle Filipowski has been more effective this year inside the arc (61.5%), using his strength and touch to finish more post-ups, rolls in traffic and putbacks. His passing has continued to pop as well and remains a selling point on the scouting report.\r\n\r\nHe hasn't appeared to make a jump this year with his three-ball, which continues to look capable but unreliable.\r\n\r\nThe big question with Filipowski asks whether his perimeter game can translate, which is what can help separate him from other 7-footers and NBA bench players. Filipowski clearly has range and body control handling in the open floor or beating bigs off the arc in space. But his shot has been inconsistent, and a high center of gravity makes it difficult to picture him blowing by NBA defenders.\r\n\r\nRegardless, in this draft, teams won't nitpick too much when considering Filipowski's size, skill level and NCAA impact/effectiveness.\r\n\r\n19. New York Knicks (via Mavs): Kel'el Ware\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 15\r\n \tSchool/Team: Indiana\r\n \tPosition: C\r\n \tAge: 19, Sophomore\r\n \tSize: 7 feet, 242 lbs\r\n \tPro Comparison: Jarrett Allen\r\n\r\nAveraging 17.7 points and 9.6 boards, Kel'el Ware has handled almost every opposing frontcourt, giving them problems with his verticality, post game and touch.\r\n\r\nHe did struggle offensively in his only real test against Connecticut's 280-pound center Donovan Clingan, who helped raise the importance that Ware continues to develop his shooting range to combat the stronger, interior-based centers.\r\n\r\nBut as long has he doesn't drift during conference play, Ware's combination of finishing, shot-blocking tools and shotmaking skill should prevent him from falling outside the top 20.\r\n\r\n20. Atlanta Hawks (via Kings): Dalton Knecht\r\n\r\n\r\n\r\n\r\n \tStock Status: Up\r\n \tPrevious Mock Draft Spot: No. 39\r\n \tSchool/team: Tennessee\r\n \tPosition: SF\r\n \tAge: 22, Senior\r\n \tSize: 6-foot-6, 204 lbs\r\n\r\nScouts were buzzing about Dalton Knecht's 37 points against North Carolina. They've already started to brainstorm about a pro comparison for the 6-foot-6\", 40.5% 3-point shooter who's also showcased some extra wiggle attacking the basket and explosion in the open floor.\r\n\r\nThere may be some questions about how much of his scoring will translate to the next level. But in a draft where there aren't as many enticing high-upside teenagers available, Knecht could start to look like a persuasive shotmaker and tough role player in the late first round.\r\n\r\n21. Indiana Pacers: Ajay Mitchell\r\n\r\n\r\n\r\n\r\n \tStock Status: Up\r\n \tPrevious Mock Draft Spot: Off the board\r\n \tSchool/Team: Santa Barbara\r\n \tPosition: PG\r\n \tAge: 21, Junior\r\n \tSize: 6-foot-5, 190 lbs\r\n\r\nAveraging 23.3 points and 4.3 assists on 72.3% true shooting, Ajay Mitchell has been getting to his spots, finishing with signature craft/touch and using his gravity to set up teammates.\r\n\r\nThe NBA is seeing many point guards succeed without athletic advantages for scouts to write off this shifty ball-handler. Scouts will want to see Mitchell continue creating and efficiently converting inside the arc against more credible opponents. And his 5-for-10 start from three is still small for a career 30.6% 3-point shooter.\r\n\r\nBut Mitchell is currently carving up defenses with the type of change of speed, shiftiness, footwork, layup adjustments, IQ and shotmaking for scouts to start looking past questions about separation ability or shooting numbers.\r\n\r\n22. New Orleans Pelicans (via Lakers): Bobi Klintman\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 24\r\n \tSchool/Team: Cairns Taipans\r\n \tPosition: SF/PF\r\n \tAge: 20\r\n \tSize: 6-foot-8, 225 lbs\r\n \tPro Comparison: De'Andre Hunter\r\n\r\nBobi Klintman's minutes and production have fluctuated lately, though the highlights should still outweigh the inconsistency and keep the 6-foot-8 forward in the first-round discussion\r\n\r\nThe flashes of open-floor ball-handling and passing, shooting, drives into runners and athletic finishing create appealing potential versatility from both forward spots. While he looked more like a stretch 4 at Wake Forest, Klintman has done a better job selling himself this year as a Swiss Army knife combo.\r\n\r\n23. New York Knicks: Caleb Foster\r\n\r\n\r\n\r\n\r\n \tStock Status: Up\r\n \tPrevious Mock Draft Spot: Off the board\r\n \tSchool/Team: Duke\r\n \tPosition: PG/SG\r\n \tAge: 19\r\n \tSize: 6-foot-5, 197 lbs\r\n\r\nTyrese Proctor's injury could open a door for Caleb Foster to receive more creation reps and ball screens. With just an 18.7% usage, the freshman has still given Duke an efficient source of bench offense in the form of rim pressure and three-level shotmaking.\r\n\r\nHe hasn't been able to showcase any playmaking, though he'll have a chance now if Proctor misses extended time.\r\n\r\nRegardless, Foster's signature function is scoring with decisive ball-handling and strength for driving, a mid-range game and spot-up shooting behind the arc.\r\n\r\n24. Philadelphia 76ers: Tyrese Proctor\r\n\r\n\r\n\r\n\r\n \tStock Status: Down\r\n \tPrevious Mock Draft Spot: No. 12\r\n \tSchool/Team: Duke\r\n \tPosition: PG\r\n \tAge: 19, Sophomore\r\n \tSize: 6-foot-5, 183 lbs\r\n\r\nTyrese Proctor has made some marginal improvement this year, mostly with his finishing off drives and playmaking IQ.\r\n\r\nUnderwhelming offensive games in highly scouted matchups against Arkansas (3-for-12), Michigan State (4-for-12) and Arizona (3-for-9) have mostly cast a cloud over his better two-point percentage and assist-to-turnover ratio. The bar was also higher coming in this season as a sophomore, so it's been difficult to get too excited about his 10.3 points and 4.8 dimes on 32.4% shooting from deep.\r\n\r\nAnd now he's in jeopardy of missing an extended period of time with a leg injury.\r\n\r\nFlashes of shotmaking versatility, self-creation into jumpers and playmaking will keep interest alive in a 6-foot-5, 19-year-old combo. But a lengthy absence after his start will make it tough for Proctor to win over more NBA teams.\r\n\r\n25. Denver Nuggets: D.J. Wagner\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 26\r\n \tSchool/Team: Kentucky\r\n \tPosition: PG/SG\r\n \tAge: 18, Freshman\r\n \tSize: 6-foot-4, 192 lbs\r\n\r\nAfter a forgettable game in a highly scouted matchup against Kansas, D.J. Wagner bounced back the following week to combine for 50 points in wins over Marshall and Saint Joseph's. An ankle injury suffered against Miami came at an unfortunate time, though it's not expected to keep the freshman out long.\r\n\r\nWagner does have questions to answer, some about his shooting, others about his tools/athleticism for finishing, and more regarding his projected NBA role. Rob Dillingham has been the more effective playmaker and shotmaker in Kentucky's backcourt, while Wagner has had more success putting pressure on the defense and rim with his driving.\r\n\r\nWagner is still likely a better shooter than the early numbers suggest, and despite missing practically every layup attempt against Kansas, he's converting 61.5% of his attempts around the basket.\r\n\r\nAside from attacking off his signature quick-dribble moves, Wagner hasn't looked highly proficient in any one area, which may make it difficult for lottery teams to fall in love, particularly for a prospect who doesn't pop physically or athletically.\r\n\r\n26. Indiana Pacers (via Thunder): Baba Miller\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 22\r\n \tSchool/Team: Florida State\r\n \tPosition: SF/PF\r\n \tAge: 19, Sophomore\r\n \tSize: 6-foot-11, 204 lbs\r\n\r\nWith the idea of a potential breakout coming after Baba Miller's promising World Cup, the lack of offense and aggression could be seen as a turnoff. But there have been clear signs of progression and elevated confidence, and Florida State's production is historically spread out.\r\n\r\nShooting 42.9% from deep, Miller already has more threes in seven games than he hit in 15 last year. With his long strides and fluidity at 6-foot-11, he's been effective attacking and finishing in the open floor, and his length and defensive activity have translated to 1.6 steals and 1.3 blocks in 23.0 minutes.\r\n\r\n27. Orlando Magic: Justin Edwards\r\n\r\n\r\n\r\n\r\n \tStock Status: Down\r\n \tPrevious Mock Draft Spot: No. 18\r\n \tSchool/Team: Kentucky\r\n \tPosition: SF\r\n \tAge: 19, Freshman\r\n \tSize: 6-foot-8, 203 lbs\r\n\r\nJustin Edwards has given Kentucky an efficient play-finisher, driving threat and capable spot-up shooter.\r\n\r\nScouts are still trying to determine what he'll give an NBA team, however. A limited ball-handler who's at 25.9% from three, averaging 1.0 assist per game, Edwards is starting to look like a vulnerable name on draft boards.\r\n\r\nBecoming a plus shotmaker seems like a must to justify going in the lottery or even mid-first round. It's still too early to write off more improvement. He's made strides over the past year, also showing some ability to pull up inside the arc. A competent jumper would give Edwards enough spot-up scoring skills for a 6-foot-8 wing who can cover defensive ground.\r\n\r\n28. Milwaukee Bucks: Tristan da Silva\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 29\r\n \tSchool/Team: Colorado\r\n \tPosition: SF/PF\r\n \tAge: 22, Senior\r\n \tSize: 6-foot-9, 220 lbs\r\n\r\nWhile scouts may question how much of Tristan da Silva's two-point scoring can translate, his shooting remains highly convincing. The 6-foot-9 forward is at 45.5% from three and 84.4% from the line.\r\n\r\nThough he may struggle to blow by or separate around the basket, he uses off-ball movement to free himself up, and he remains a threat to make shots out of the post.\r\n\r\n29. Boston Celtics: Adem Bona\r\n\r\n\r\n\r\n\r\n \tStock Status: Down\r\n \tPrevious Mock Draft Spot: No. 16\r\n \tSchool/Team: UCLA\r\n \tPosition: C\r\n \tAge: 20, Sophomore\r\n \tSize: 6-foot-10, 245 lbs\r\n\r\nAdem Bona's scoring rate is up this year, mostly because he looks more polished and in command playing with his back to the basket.\r\n\r\nStill, NBA teams will only be banking on his athleticism for play-finishing and shot-blocking. The question is whether he can create enough of a defensive impact in rim protection (at 6-foot-10 with fouling issues) to offset his lack of creating, shooting or passing.\r\n\r\n30. Minnesota Timberwolves: Tidjane Salaun\r\n\r\n\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 31\r\n \tSchool/Team: Cholet\r\n \tPosition: PF\r\n \tAge: 18\r\n \tSize: 6-foot-8, 212 lbs\r\n\r\nThough Tidjane Salaun has been struggling in Pro A, at 18 years old with an exciting mix of size, athleticism and shotmaking, NBA teams will put more stock into flashes than consistency or overall production. And he delivered some serious flashes on Tuesday with five 3-point makes to score 24 points for Cholet.\r\n\r\nHe's still more of an idea at this point, as he's shooting just 29.5% in Pro A. But the thought of an explosive 6-foot-8 forward with a jumper may be enough to draw first-round interest from teams willing to gamble on upside.\r\n\r\n\r\n\r\n31. New York Knicks (via Pistons): Tyler Smith\r\n\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 32\r\n \tSchool/Team: G League Ignite\r\n \tPosition: SF/PF\r\n \tAge: 19\r\n \tSize: 6-foot-11, 224 lbs\r\n\r\nFor a big, Tyler Smith's shooting has earned him mentions in the first-round conversation. He's also cooled off lately, and the rest of his game is mostly physical tools-dependent.\r\n\r\nThe combination of shooting and finishing should be enough for him to find a spot in the league. Encouraging passing flashes should create more margin for error as well. But he's not a high-level rim protector, and he doesn't project as a big who'll be putting the ball down often.\r\n\r\nHe'll sell teams on his jump shot and stretch-4 potential. As long as he gets back on track from behind the arc, where he's at 42.4% despite missing 12 of his last 14 attempts, Smith could be in play for teams in the 20s.\r\n\r\n32. Detroit Pistons (via Wizards): Oso Ighodaro\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 34\r\n \tSchool/Team: Marquette\r\n \tPosition: C\r\n \tAge: 21, Senior\r\n \tSize: 6-foot-11, 235 lbs\r\n\r\nNBA teams interested in Oso Ighodaro will be drawn to his ability to give the lineup a unique look with his ball-handling and passing from the center position. He's different for his ability to act as a 5 who offense can run through from the foul line or top of the key.\r\n\r\nThere doesn't appear to be big scoring or defensive upside, but his push/touch shots around the key should be effective, and his size and mobility should still translate to off-ball shot-blocking.\r\n\r\n33. San Antonio Spurs: Wooga Poplar\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 37\r\n \tSchool/Team: Miami\r\n \tPosition: SG\r\n \tAge: 20, Junior\r\n \tSize: 6-foot-5, 197 lbs\r\n\r\nScouts have started to pick up on Wooga Poplar's improvement this year with his shooting and overall shotmaking versatility.\r\n\r\nThough non-playmaking guards have limited margin for error, his explosiveness, pull-up game (12-for-25) and spot-up threes (11-for-21) suddenly point to some enticing scoring potential.\r\n\r\nConsistent athletic defensive plays should continue to help scouts look past the limited creation.\r\n\r\n34. Minnesota Timberwolves (via Grizzlies): Kylan Boswell\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 23\r\n \tSchool/Team: Arizona\r\n \tPosition: PG\r\n \tAge: 18, Sophomore\r\n \tSize: 6-foot-2, 195 lbs\r\n\r\nKylan Boswell has showcased high-level connector skills with his 54.3% 3-point shooting and passing IQ.\r\n\r\nHe just doesn't put much pressure on the rim, as he's converted one driving layup and attempted six free throws in seven games.\r\n\r\nHowever, NBA teams may still picture a reserve combo who can add value with his transition playmaking, shotmaking, decision-making and strength/low center of gravity defending ball-handlers.\r\n\r\n35. Milwaukee Bucks (via Blazers): Yves Missi\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 41\r\n \tSchool/Team: Baylor\r\n \tPosition: C\r\n \tAge: 19, Freshman\r\n \tSize: 7 feet, 235 lbs\r\n\r\nShooting 61.4% with a 19.8 rebounding percentage and 13.0 block percentage, Yves Missi has optimized his physical tools and athleticism around the basket.\r\n\r\nThere isn't anything sexy or versatile about his game, but easy-basket targets and rim protectors like the Baylor player are still coveted by teams looking for frontcourt depth.\r\n\r\n36. Boston Celtics (via Bucks): Izan Almansa\r\n\r\n\r\n \tStock Status: Down\r\n \tPrevious Mock Draft Spot: No. 19\r\n \tSchool/Team: G League Ignite\r\n \tPosition: PF\r\n \tAge: 18\r\n \tSize: 6-foot-10, 216 lbs\r\n\r\nThe draw to Izan Almansa stems from his instincts and hands for play-finishing off the ball and rebounding. Occasionally, he surprises with some open-floor ball-handling, drives past closeouts and threes.\r\n\r\nThe fear with Almansa is that he doesn't have any go-to method for scoring, which we're seeing in the G League. He's not making jumpers, and a lack of face-up game and athleticism limit him.\r\n\r\nAlmansa is ultimately the type of big who'll make plays without needing any called for him. And at 18 years old, he has time to improve his shot and slim down to become a bit quicker off the bounce and floor.\r\n\r\n\r\n37. Portland Trail Blazers (via Hornets): KJ Lewis\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 28\r\n \tSchool/Team: Arizona\r\n \tPosition: SG\r\n \tAge: 19, Freshman\r\n \tSize: 6-foot-4, 205 lbs\r\n\r\nIt may be premature to project KJ Lewis to the 2024 draft, but with Arizona No. 1 in the AP poll, the national spotlight seems bound to start illuminating his athleticism, defense, passing and impact.\r\n\r\nStarting to make threes would really jump-start the hype, but he doesn't project as a player who'll be valued for scoring. So, while the lack of creation, shotmaking and production does suggest limited upside, it shouldn't kill NBA interest.\r\n\r\nWith quickness, strength and energy, Lewis leads the Wildcats' rotation in defensive box plus-minus while adding play-finishing and ball-moving.\r\n\r\n\r\n38. New York Knicks (via Jazz): Trey Alexander\r\n\r\n \tStock Status: Down\r\n \tPrevious Mock Draft Spot: No. 21\r\n \tSchool/Team: Creighton\r\n \tPosition: SG\r\n \tAge: 20, Junior\r\n \tSize: 6-foot-4, 190 lbs\r\n\r\nIronically, the area where Trey Alexander has struggled most this year is what NBA teams should feel most confident in. He's been off so far from three, but last year's season and his shooting versatility still point to promising shotmaking potential.\r\n\r\nThe increase in assist rate this year has been promising, as teams wanted to see more on-ball creation. There are just questions how effective he'll be blowing by or separating against NBA defenders.\r\n\r\n\r\n39. LA Clippers (via Raptors): Hunter Sallis\r\n\r\n \tStock Status: Up\r\n \tPrevious Mock Draft Spot: No. 54\r\n \tSchool/Team: Wake Forest\r\n \tPosition: SG\r\n \tAge: 21, Junior\r\n \tSize: 6-foot-5, 185 lbs\r\n\r\nScouts should start to take Hunter Sallis seriously if he carries November's flashes of creation, three-level shotmaking and athletic finishing into conference play.\r\n\r\nThey've seemingly come out of nowhere, given his limited role at Gonzaga the past two seasons. But he is now averaging 19.1 points, shooting 54.5% inside the arc and 44.2% from three.\r\n\r\n40. Houston Rockets (via Warriors): Kobe Johnson\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 48\r\n \tSchool/Team: USC\r\n \tPosition: SG/SF\r\n \tAge: 20, Junior\r\n \tSize: 6-foot-6, 200 lbs\r\n\r\nKobe Johnson continues to give off NBA role-player vibes with his passing, defense and improved shotmaking. Showing he can make threes was a key entering the season, and so far he's hitting a respectable 1.7 per game.\r\n\r\nRegardless, athleticism, instincts and positional tools will remain the key draws to Johnson, who isn't the highest level creator, scorer or shooter.\r\n\r\n41. Oklahoma City Thunder (via Rockets): Melvin Ajinca\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 40\r\n \tSchool/Team: Saint-Quentin\r\n \tPosition: SG/SF\r\n \tAge: 19\r\n \tSize: 6-foot-7\r\n\r\nMevlin Ajinca just had his best game of the year on Monday, hitting four-of-five threes and bringing us back to the shotmaking clinic he put on at the U19 World Cup.\r\n\r\nHe hasn't showcased too much outside of shooting this season, but when it's paired with a strong 6'7\" frame at 19 years old, teams could picture a high floor that has room to rise.\r\n\r\n42. Los Angeles Lakers (via Clippers): Alex Karaban\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 45\r\n \tSchool/Team: Connecticut\r\n \tPosition: PF\r\n \tAge: 21, Sophomore\r\n \tSize: 6-foot-8, 220 lbs\r\n\r\nA recent cold streak has brought down Alex Karaban's 3-point percentage, but the eye test sees a legit shooter and bonus versatility tied to his passing, floater touch and defensive foot speed.\r\n\r\nTeams more interested in finding the right fit than upside could target him as a rotational stretch 4.\r\n\r\n43. Portland Trail Blazers (via Hawks): Tyler Kolek\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 49\r\n \tSchool/Team: Marquette\r\n \tPosition: PG\r\n \tAge: 22, Junior\r\n \tSize: 6-foot-3, 195 lbs\r\n\r\nThere isn't any mystery of Tyler Kolek's strengths, weaknesses or projected NBA role. He's highly advanced in ball-screen situations with his pace and playmaking feel. And the ability to catch-and-shoot (10-of-18) creates some versatility for him to slide off the ball and stretch the floor.\r\n\r\nOn the other hand, he struggles to blow by without a screen, and he continues to struggle shooting off the dribble.\r\n\r\nKolek should still get looks from teams who could use an extra pick-and-roll ball-handler with some shotmaking appeal.\r\n\r\n44. Houston Rockets (via Nets): Aday Mara\r\n\r\n\r\n \tStock Status: Down\r\n \tPrevious Mock Draft Spot: No 20\r\n \tSchool/Team: UCLA\r\n \tPosition: C\r\n \tAge: 18, Freshman\r\n \tSize: 7-foot-3, 240 lbs\r\n\r\nAday Mara remains appealing for his size, touch around the key, post skill and shot-blocking tools. But coach Mick Cronin played him six minutes against Maquette, and he picked up three fouls in three minutes against Gonzaga.\r\n\r\nSlow feet and an old-school game won't help teams picture too much upside. He's starting to look more like an appealing second-round pick who could give a team some more interior help, passing from the center position and a secondary scoring option in the mid-to-short range.\r\n\r\n45. New Orleans Pelicans: Judah Mintz\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 43\r\n \tSchool/Team: Syracuse\r\n \tPosition: PG/SG\r\n \tAge: 20, Sophomore\r\n \tSize: 6-foot-4, 185 lbs\r\n\r\nFor the most part, the scouting report on Judah Mintz has remained the same, as he's at his best attacking the rim or using ball screens and gravity to set up teammates.\r\n\r\nBut he's coming off a career-best five made threes against Cornell, raising his mark to 46.7%. More volume shooting and shotmaking will make it easier for scouts to picture a pro.\r\n\r\nMintz still relies heavily on penetrating and drawing fouls (8.1 FTA per game), which may generate mixed reactions.\r\n\r\n46. LA Clippers (via Cavs): Trentyn Flowers\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 44\r\n \tSchool/Team: Adelaide 36ers\r\n \tPosition: SG\r\n \tAge: 18\r\n \tSize: 6-foot-8, 205 lbs\r\n\r\nThe NBL game has slowed down for Trentyn Flowers, as he's now at 46.5% from the floor and 43.5% from three on the season.\r\n\r\nThe point guard experiment didn't go well, but his shooting stroke is highly convincing, and that combination of 6-foot-8 size, shotmaking and athleticism doesn't require high-level creation or decision-making for an off-ball scoring role.\r\n\r\n47. Miami Heat: Aaron Bradshaw\r\n\r\n\r\n \tStock Status: Down\r\n \tPrevious Mock Draft Spot: No 30\r\n \tSchool/Team: Kentucky\r\n \tPosition: C\r\n \tAge: 19, Freshman\r\n \tSize: 7-foot-1, 226 lbs\r\n\r\nBack from a foot injury, Aaron Bradshaw made his debut during Kentucky's loss to UNC Wilmington. He wasn't involved much in 13 minutes, and scouts will need time to fairly assess the big man's rim protection, switchability, shooting and feel.\r\n\r\nIdeally, he is able to showcase some of the shotmaking he's added to his bag over the years while making Kentucky tougher defensively.\r\n\r\nAt first glance, though, he didn't move super gracefully or quickly. And given the Wildcats' guard-heavy rotation, it's difficult to picture Bradshaw having much freedom to make plays outside the paint.\r\n\r\n48. Washington Wizards (via Suns): Riley Kugel\r\n\r\n\r\n \tStock Status: Down\r\n \tPrevious Mock Draft Spot: No. 38\r\n \tSchool/Team: Florida\r\n \tPosition: SG\r\n \tAge: 19, Sophomore\r\n \tSize: 6-foot-5, 207 lbs\r\n\r\nAfter shooting just 36.2% through five games, Riley Kugel bounced back with 49 points on 8-for-12 shooting from three in losses to Wake Forest and Baylor.\r\n\r\nShotmaking consistency and decision-making will be key for his draft stock, as it's unlikely he'll offer much outside of scoring. But there can be some tempting potential tied to his slashing athleticism, self-creation and dribble-jumper game.\r\n\r\n49. Indiana Pacers: Dillon Jones\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 46\r\n \tSchool/Team: Weber State\r\n \tPosition: SG/SF\r\n \tAge: 22, Junior\r\n \tSize: 6-foot-6, 235 lbs\r\n\r\nWhile some NBA teams may question Dillon Jones' position and fit, one is bound to think out of the box and gamble on unique versatility.\r\n\r\nConsistently a ball-handling threat, a plus passer, double-digit rebounder and excellent free-throw shooter, he has also started 6-of-15 from three.\r\n\r\nThe obvious question asks whether he's effective enough to use on the ball, and if he'll have the skill set to play off it on the wing.\r\n\r\n50. Sacramento Kings: Reece Beekman\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 52\r\n \tSchool/Team: Virginia\r\n \tPosition: PG\r\n \tAge: 22, Senior\r\n \tSize: 6-foot-3, 194 lbs\r\n\r\nMoving up boards will be difficult for Reece Beekman without him showing any noticeable improvement as a shooter.\r\n\r\nHe could be a popular second-round target from teams that see a serviceable bench guard who'll add value with defensive ball pressure and the ability to run offense and pass.\r\n\r\n51. Boston Celtics (via Mavs): Zvonimir Ivisic\r\n\r\n\r\n \tStock Status: Down\r\n \tPrevious Mock Draft Spot: No. 35\r\n \tSchool/Team: Kentucky\r\n \tPosition: PF/C\r\n \tAge: 20, Freshman\r\n \tSize: 7-foot-2, 234 lbs\r\n\r\nScouts and Kentucky are still waiting on the debut of Zvonimir Ivišić, who's missed time due to sickness after eligibility issues initially caused a delay. The fact that he came out for pregame warmups over the weekend was seen as a positive sign.\r\n\r\nThere has been a buildup of anticipation after he averaged 11.4 points, 3.4 blocks and 1.6 threes for Croatia at the U20 European Championship. At 7-foot-2, his flashes of open-floor ball-handling, drives from the arc and shooting point to enticing upside.\r\n\r\nScouts just want a better feel for how realistic it is, and how legitimate his range, defensive mobility and feel for the game are.\r\n\r\n52. San Antonio Spurs (via Lakers): Zach Edey\r\n\r\n\r\n\r\n \tStock Status: Up\r\n \tPrevious Mock Draft Spot: No. 57\r\n \tSchool/Team: Purdue\r\n \tPosition: C\r\n \tAge: 21, Senior\r\n \tSize: 7-foot-4, 300lbs\r\n\r\nAveraging 25.6 points and 11.7 boards over Purdue's last seven games, Zach Edey has become dominant enough with his size, touch and footwork for teams to see a worthwhile second-round game.\r\n\r\nMaking 73.3% of his free-throws should be considered a key plus as well. And he's blocking a career-best 10.5% of his opponents' shots.\r\n\r\n53. Philadelphia 76ers (via Knicks): Matthew Cleveland\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 42\r\n \tSchool/Team: Miami\r\n \tPosition: SF\r\n \tAge: 21, Junior\r\n \tSize: 6-foot-7, 208 lbs\r\n\r\nShooting will always be Matthew Cleveland's key swing skill, given his lack of self-creation and playmaking. Now 8-for-17 from three, he's off to the best start of his career while continuing to produce off athletic plays, instincts and mid-range shotmaking (70.5% 2PT).\r\n\r\n54. Houston Rockets (via Thunder): Nikola Djurisic\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 50\r\n \tSchool/Team: Mega MIS\r\n \tPosition: SG/SF\r\n \tAge: 19\r\n \tSize: 6-foot-7, 214 lbs\r\n\r\nNikola Djurisic is still struggling with shooting consistency, but there aren't any questions about his shotmaking capability. And he's still providing impressive playmaking ability that helps separate him from other 6-foot-8 wings.\r\n\r\nThough it would be difficult to draw first-round interest after another season shooting below 30.0% from three, a 19-year-old with potential shoot-dribble-pass connector skills should still seem like an appealing second-round gamble.\r\n\r\n55. Orlando Magic: Harrison Ingram\r\n\r\n\r\n \tStock Status: Up\r\n \tPrevious Mock Draft Spot: Off the board\r\n \tSchool/Team: North Carolina\r\n \tPosition: SF\r\n \tAge: 21, Junior\r\n \tSize: 6-foot-7, 235lbs\r\n\r\nAfter two years underachieving at Stanford, Harrison Ingram is shooting 48.5% with North Carolina, making 2.1 threes at a 46.3% clip.\r\n\r\nVersatility was always the main draw to the wide-framed Ingram, who could handle in pick-and-rolls and play-make with power forward size.\r\n\r\nA consistent shot, which he hasn't shown until now, could be enough to give him connector potential for the next level.\r\n\r\n56. Indiana Pacers (via Bucks): Dillon Mitchell\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 55\r\n \tSchool/Team: Texas\r\n \tPosition: PF\r\n \tAge: 20, Sophomore\r\n \tSize: 6-foot-8, 205 lbs\r\n\r\nDillon Mitchell still can't shoot, but it's worth thinking about his athleticism and activity for finishing, putbacks and defensive playmaking.\r\n\r\nThe flashes of mid-range or post shot-making can also be tempting, but any NBA role would strictly value his ability to make plays from off the ball.\r\n\r\n57. Charlotte Hornets (vua Bucks): Pacome Dadiet\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: Off the board\r\n \tSchool/Team: Ratiopharm Ulm\r\n \tPosition: SF\r\n \tAge: 18\r\n \tSize: 6-foot-6, 187lbs\r\n\r\nTeams looking for late draft-and-stash or sleeper options will highlight Pacome Dadiet, a 6-foot-8 wing who's combined to shoot 36.6% from three.\r\n\r\nHe's been scouted at FIBA and Basketball Without Borders before this season, and despite his limited role in the German BBL and EuroCup, flashes of finishing, defensive movement and shotmaking potential could entice a team in the second round.\r\n\r\n58. Denver Nuggets (via Timberwolves): Antonio Reeves\r\n\r\n\r\n \tStock Status: Steady\r\n \tPrevious Mock Draft Spot: No. 56\r\n \tSchool/Team: Kentucky\r\n \tPosition: SG\r\n \tAge: 23, Senior\r\n \tSize: 6-foot-6, 195 lbs\r\n\r\nAveraging 18.3 points on 44.2% from three, Antonio Reeves could sell a team on his 6-foot-6 size, scoring instincts and shotmaking.\r\n\r\nBeing a 23-year-old non-passer shouldn't matter too much in the 50s for a front office that sees a potential a guard with enough size and shooting ability to continue putting the ball in the hoop.\r\n\r\n* * *\r\n\r\nJonathan Wasserman is the lead scout and NBA Draft analyst for Bleacher Report. You can follow him on X, formerly known as Twitter.The views on this page do not necessarily reflect the views of the NBA, its clubs or Warner Brothers Discovery.\r\n\r\nStats courtesy of Synergy Sports and Sports Reference.","dateCreated":"2023-12-12T21:02:36Z","thumbnailUrl":"https://cdn.nba.com/manage/2023/12/alexandre-sarr-iso-looks.jpg","articleSection":"2024 NBA Draft on B/R","creator":{"@type":"Person","name":"Jonathan Wasserman, Bleacher Report"},"author":{"@type":"Person","name":"Jonathan Wasserman, Bleacher Report"},"datePublished":"2023-12-12T21:02:36Z","image":"https://cdn.nba.com/manage/2023/12/alexandre-sarr-iso-looks.jpg","publisher":{"@type":"Organization","name":"NBA.com","logo":{"@type":"ImageObject","url":"https://cdn.nba.com/logos/leagues/logo-nba.svg","Width":"30","Height":"50"}},"dateModified":"2023-12-13T13:23:10Z","mainEntityOfPage":"https://www.nba.com/news/bleacher-report-nba-mock-draft-full-risers-fallers-dec-12-2023"}</script><script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":" https://www.nba.com"},{"@type":"ListItem","position":2,"name":"NBA News","item":" https://www.nba.com/news"},{"@type":"ListItem","position":3,"name":"Bleacher Report: Latest Mock Draft + biggest risers and fallers","item":" https://www.nba.com/news/bleacher-report-nba-mock-draft-full-risers-fallers-dec-12-2023"}]}</script><div class="Layout_base__6IeUC Layout_justNav__2H4H0 Layout_withSubNav__ByKRF" data-with-subnav-banner="false"><div class="Layout_fixedContent__kWFtM" data-has-draft-tracker="false"><div class="NavBar_wrapper__kwo09"><nav class="NavBar_nav__U9xyc" data-is-extra-height="false"><div class="NavBar_topGroupWrapper__Bb2Vc"><button class="NavHamburger_hamburger__kqDDP NavHamburger_squeeze__F9qaj" data-is-open="false" type="button" title="Global Navigation Toggle" data-track="click" data-type="icon" data-id="nba:navigation:menu-hamburger:icon" data-content="menu-hamburger"><span class="NavHamburger_box__r0p_S"><span class="NavHamburger_inner__whZdg"><span class="NavHamburger_navToggle__nOZPv">Navigation Toggle</span></span></span></button><a href="/" class="Anchor_anchor__cSc3P NavLogo_nl__b4Mct" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="logo" data-id="nba:navigation:home:logo" data-content="home" title="NBA Logo Homepage Button" data-large-icon="false"><img src="https://cdn.nba.com/logos/leagues/logo-nba.svg" alt="NBA Logo" title="NBA Logo"><span class="sr-only">NBA</span></a><ul id="nav-ul" class="NavBar_menu__yO4Am" data-is-open="false"><li class="NavItem_item__Gokj_" data-dropdown="true" data-is-hidden="false" aria-haspopup="true" aria-expanded="false"><a href="/games" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="1/16" data-id="nba:navigation:category:link" data-content="Games" data-text="Games" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">Games</span></a><div data-active="false" data-subnav="false" data-team="false" data-affil="false" class="NavDropdown_dropdown__HuIep"><ul class="NavDropdown_list__Phy7G"><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/games" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Home" data-content="Games" data-section="navbar">Home</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://nbatickets.nba.com/?cid=nba:tickets:institutional:nbacom:domsites:rd" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Tickets" data-content="Games" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Tickets</a></li></ul></div></li><li class="NavItem_item__Gokj_" data-dropdown="true" data-is-hidden="false" aria-haspopup="true" aria-expanded="false"><a href="/schedule" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="2/16" data-id="nba:navigation:category:link" data-content="Schedule" data-text="Schedule" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">Schedule</span></a><div data-active="false" data-subnav="false" data-team="false" data-affil="false" class="NavDropdown_dropdown__HuIep"><ul class="NavDropdown_list__Phy7G"><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/schedule" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="2023-24 Season Schedule" data-content="Schedule" data-section="navbar">2023-24 Season Schedule</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/schedule?bc=LP&cal=all&region=1" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="League Pass Schedule" data-content="Schedule" data-section="navbar">League Pass Schedule</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/news/livestream-event-schedule" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Livestream Schedule" data-content="Schedule" data-section="navbar">Livestream Schedule</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/in-season-tournament/2023/schedule" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="In-Season Tournament Schedule" data-content="Schedule" data-section="navbar">In-Season Tournament Schedule</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/news/nba-crunchtime-how-to-watch-nba-app" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="NBA Crunchtime" data-content="Schedule" data-section="navbar">NBA Crunchtime</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/news/key-dates" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Key Dates" data-content="Schedule" data-section="navbar">Key Dates</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://nbatickets.nba.com/?cid=nba:tickets:institutional:nbacom:domsites:rd" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Tickets" data-content="Schedule" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Tickets</a></li></ul></div></li><li class="NavItem_item__Gokj_" data-dropdown="true" data-is-hidden="false" aria-haspopup="true" aria-expanded="false"><a href="/watch/featured" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="3/16" data-id="nba:navigation:category:link" data-content="Watch" data-text="Watch" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">Watch</span></a><div data-active="false" data-subnav="false" data-team="false" data-affil="false" class="NavDropdown_dropdown__HuIep"><ul class="NavDropdown_list__Phy7G"><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/watch/featured" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Featured" data-content="Watch" data-section="navbar">Featured</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/watch/nba-tv" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="NBA TV" data-content="Watch" data-section="navbar">NBA TV</a></li></ul></div></li><li class="NavItem_item__Gokj_" data-dropdown="true" data-is-hidden="false" aria-haspopup="true" aria-expanded="false"><a href="/news" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="4/16" data-id="nba:navigation:category:link" data-content="News" data-text="News" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">News</span></a><div data-active="false" data-subnav="false" data-team="false" data-affil="false" class="NavDropdown_dropdown__HuIep"><ul class="NavDropdown_list__Phy7G"><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/news" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Home" data-content="News" data-section="navbar">Home</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/news/category/top-stories" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Top Stories" data-content="News" data-section="navbar">Top Stories</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/christmas" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="NBA on Christmas Day" data-content="News" data-section="navbar">NBA on Christmas Day</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/news/category/power-rankings" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Power Rankings" data-content="News" data-section="navbar">Power Rankings</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/players/transactions" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Transactions" data-content="News" data-section="navbar">Transactions</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/in-season-tournament/2023" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="In-Season Tournament" data-content="News" data-section="navbar">In-Season Tournament</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/news" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Features" data-content="News" data-section="navbar">Features</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/history" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="History" data-content="News" data-section="navbar">History</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/news/writers-archive" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Writer Archive" data-content="News" data-section="navbar">Writer Archive</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/news" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="More" data-content="News" data-section="navbar">More</a></li></ul></div></li><li class="NavItem_item__Gokj_" data-dropdown="true" data-is-hidden="false" aria-haspopup="true" aria-expanded="false"><a href="/stats" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="5/16" data-id="nba:navigation:category:link" data-content="Stats" data-text="Stats" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">Stats</span></a><div data-active="false" data-subnav="false" data-team="false" data-affil="false" class="NavDropdown_dropdown__HuIep"><ul class="NavDropdown_list__Phy7G"><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Stats Home" data-content="Stats" data-section="navbar">Stats Home</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats/players" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Players" data-content="Stats" data-section="navbar">Players</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats/teams" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Teams" data-content="Stats" data-section="navbar">Teams</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats/leaders" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Leaders" data-content="Stats" data-section="navbar">Leaders</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats/help/glossary" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Stats 101" data-content="Stats" data-section="navbar">Stats 101</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats/cumestats" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Cume Stats" data-content="Stats" data-section="navbar">Cume Stats</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats/lineups/lineups-tool" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Lineups Tool" data-content="Stats" data-section="navbar">Lineups Tool</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats/tools/media-central-game-stats" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Media Central Game Stats" data-content="Stats" data-section="navbar">Media Central Game Stats</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats/draft/combine" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Draft" data-content="Stats" data-section="navbar">Draft</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats/quicklinks" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Quick Links" data-content="Stats" data-section="navbar">Quick Links</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats/help" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Contact Us" data-content="Stats" data-section="navbar">Contact Us</a></li></ul></div></li><li class="NavItem_item__Gokj_" data-dropdown="false" data-is-hidden="false" aria-haspopup="false" aria-expanded="false"><a href="/standings" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="6/16" data-id="nba:navigation:category:link" data-content="Standings" data-text="Standings" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">Standings</span></a></li><li class="NavItem_item__Gokj_" data-dropdown="true" data-is-hidden="false" aria-haspopup="true" aria-expanded="false"><a href="/teams" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="7/16" data-id="nba:navigation:category:link" data-content="Teams" data-text="Teams" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">Teams</span></a><div data-active="false" data-subnav="false" data-team="true" data-affil="false" class="NavDropdown_dropdown__HuIep"><div class="NavTeamList_ntl__j2fg7"><div class="NavTeamList_ntlContainer__YXa1P"><div class="NavTeamList_ntlDivision__lJFro"><div class="NavTeamList_ntlDivTitle__IJaJy">Atlantic</div><a href="/celtics/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="BOS" data-text="Boston Celtics" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612738/primary/L/logo.svg" title="Boston Celtics Logo" alt="Boston Celtics Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Boston Celtics</span></a><a href="/nets/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="BKN" data-text="Brooklyn Nets" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612751/primary/L/logo.svg" title="Brooklyn Nets Logo" alt="Brooklyn Nets Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Brooklyn Nets</span></a><a href="/knicks/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="NYK" data-text="New York Knicks" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612752/primary/L/logo.svg" title="New York Knicks Logo" alt="New York Knicks Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">New York Knicks</span></a><a href="/sixers/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="PHI" data-text="Philadelphia 76ers" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612755/primary/L/logo.svg" title="Philadelphia 76ers Logo" alt="Philadelphia 76ers Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Philadelphia 76ers</span></a><a href="/raptors/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="TOR" data-text="Toronto Raptors" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612761/primary/L/logo.svg" title="Toronto Raptors Logo" alt="Toronto Raptors Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Toronto Raptors</span></a></div><div class="NavTeamList_ntlDivision__lJFro"><div class="NavTeamList_ntlDivTitle__IJaJy">Central</div><a href="/bulls/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="CHI" data-text="Chicago Bulls" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612741/primary/L/logo.svg" title="Chicago Bulls Logo" alt="Chicago Bulls Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Chicago Bulls</span></a><a href="/cavaliers/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="CLE" data-text="Cleveland Cavaliers" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612739/primary/L/logo.svg" title="Cleveland Cavaliers Logo" alt="Cleveland Cavaliers Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Cleveland Cavaliers</span></a><a href="/pistons/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="DET" data-text="Detroit Pistons" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612765/primary/L/logo.svg" title="Detroit Pistons Logo" alt="Detroit Pistons Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Detroit Pistons</span></a><a href="/pacers/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="IND" data-text="Indiana Pacers" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612754/primary/L/logo.svg" title="Indiana Pacers Logo" alt="Indiana Pacers Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Indiana Pacers</span></a><a href="/bucks/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="MIL" data-text="Milwaukee Bucks" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612749/primary/L/logo.svg" title="Milwaukee Bucks Logo" alt="Milwaukee Bucks Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Milwaukee Bucks</span></a></div><div class="NavTeamList_ntlDivision__lJFro"><div class="NavTeamList_ntlDivTitle__IJaJy">Southeast</div><a href="/hawks/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="ATL" data-text="Atlanta Hawks" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612737/primary/L/logo.svg" title="Atlanta Hawks Logo" alt="Atlanta Hawks Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Atlanta Hawks</span></a><a href="/hornets/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="CHA" data-text="Charlotte Hornets" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612766/primary/L/logo.svg" title="Charlotte Hornets Logo" alt="Charlotte Hornets Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Charlotte Hornets</span></a><a href="/heat/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="MIA" data-text="Miami Heat" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612748/primary/L/logo.svg" title="Miami Heat Logo" alt="Miami Heat Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Miami Heat</span></a><a href="/magic/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="ORL" data-text="Orlando Magic" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612753/primary/L/logo.svg" title="Orlando Magic Logo" alt="Orlando Magic Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Orlando Magic</span></a><a href="/wizards/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="WAS" data-text="Washington Wizards" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612764/primary/L/logo.svg" title="Washington Wizards Logo" alt="Washington Wizards Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Washington Wizards</span></a></div><div class="NavTeamList_ntlDivision__lJFro"><div class="NavTeamList_ntlDivTitle__IJaJy">Northwest</div><a href="/nuggets/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="DEN" data-text="Denver Nuggets" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612743/primary/L/logo.svg" title="Denver Nuggets Logo" alt="Denver Nuggets Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Denver Nuggets</span></a><a href="/timberwolves/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="MIN" data-text="Minnesota Timberwolves" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612750/primary/L/logo.svg" title="Minnesota Timberwolves Logo" alt="Minnesota Timberwolves Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Minnesota Timberwolves</span></a><a href="/thunder/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="OKC" data-text="Oklahoma City Thunder" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612760/primary/L/logo.svg" title="Oklahoma City Thunder Logo" alt="Oklahoma City Thunder Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Oklahoma City Thunder</span></a><a href="/blazers/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="POR" data-text="Portland Trail Blazers" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612757/primary/L/logo.svg" title="Portland Trail Blazers Logo" alt="Portland Trail Blazers Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Portland Trail Blazers</span></a><a href="/jazz/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="UTA" data-text="Utah Jazz" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612762/primary/L/logo.svg" title="Utah Jazz Logo" alt="Utah Jazz Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Utah Jazz</span></a></div><div class="NavTeamList_ntlDivision__lJFro"><div class="NavTeamList_ntlDivTitle__IJaJy">Pacific</div><a href="/warriors/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="GSW" data-text="Golden State Warriors" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612744/primary/L/logo.svg" title="Golden State Warriors Logo" alt="Golden State Warriors Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Golden State Warriors</span></a><a href="/clippers/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="LAC" data-text="LA Clippers" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612746/primary/L/logo.svg" title="LA Clippers Logo" alt="LA Clippers Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">LA Clippers</span></a><a href="/lakers/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="LAL" data-text="Los Angeles Lakers" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612747/primary/L/logo.svg" title="Los Angeles Lakers Logo" alt="Los Angeles Lakers Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Los Angeles Lakers</span></a><a href="/suns/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="PHX" data-text="Phoenix Suns" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612756/primary/L/logo.svg" title="Phoenix Suns Logo" alt="Phoenix Suns Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Phoenix Suns</span></a><a href="/kings/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="SAC" data-text="Sacramento Kings" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612758/primary/L/logo.svg" title="Sacramento Kings Logo" alt="Sacramento Kings Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Sacramento Kings</span></a></div><div class="NavTeamList_ntlDivision__lJFro"><div class="NavTeamList_ntlDivTitle__IJaJy">Southwest</div><a href="/mavericks/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="DAL" data-text="Dallas Mavericks" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612742/primary/L/logo.svg" title="Dallas Mavericks Logo" alt="Dallas Mavericks Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Dallas Mavericks</span></a><a href="/rockets/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="HOU" data-text="Houston Rockets" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612745/primary/L/logo.svg" title="Houston Rockets Logo" alt="Houston Rockets Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Houston Rockets</span></a><a href="/grizzlies/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="MEM" data-text="Memphis Grizzlies" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612763/primary/L/logo.svg" title="Memphis Grizzlies Logo" alt="Memphis Grizzlies Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">Memphis Grizzlies</span></a><a href="/pelicans/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="NOP" data-text="New Orleans Pelicans" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612740/primary/L/logo.svg" title="New Orleans Pelicans Logo" alt="New Orleans Pelicans Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">New Orleans Pelicans</span></a><a href="/spurs/" class="Anchor_anchor__cSc3P NavTeamList_ntlTeam__9K_aX" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="card" data-id="nba:navigation:subcategory:team:card" data-content="SAS" data-text="San Antonio Spurs" data-section="navbar"><figure class="NavTeamList_ntlLogo__OfRHe"><div class="TeamLogo_block__rSWmO"><img src="https://cdn.nba.com/logos/nba/1610612759/primary/L/logo.svg" title="San Antonio Spurs Logo" alt="San Antonio Spurs Logo" class="TeamLogo_logo__PclAJ" loading="lazy"></div></figure><span class="NavTeamList_ntlName__Mzr6q">San Antonio Spurs</span></a></div></div></div></div></li><li class="NavItem_item__Gokj_" data-dropdown="true" data-is-hidden="false" aria-haspopup="true" aria-expanded="false"><a href="/players" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="8/16" data-id="nba:navigation:category:link" data-content="Players" data-text="Players" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">Players</span></a><div data-active="false" data-subnav="false" data-team="false" data-affil="false" class="NavDropdown_dropdown__HuIep"><ul class="NavDropdown_list__Phy7G"><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/players" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Players Home" data-content="Players" data-section="navbar">Players Home</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats/players" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Player Stats" data-content="Players" data-section="navbar">Player Stats</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/players/todays-lineups" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Starting Lineups" data-content="Players" data-section="navbar">Starting Lineups</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/players/free-agent-tracker/2023" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Free Agent Tracker" data-content="Players" data-section="navbar">Free Agent Tracker</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/players/transactions" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Transactions" data-content="Players" data-section="navbar">Transactions</a></li></ul></div></li><li class="NavItem_item__Gokj_" data-dropdown="false" data-is-hidden="false" aria-haspopup="false" aria-expanded="false"><a href="/allstar/2024" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="9/16" data-id="nba:navigation:category:link" data-content="All-Star" data-text="All-Star" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">All-Star</span></a></li><li class="NavItem_item__Gokj_" data-dropdown="false" data-is-hidden="false" aria-haspopup="false" aria-expanded="false"><a href="/future-starts-now" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="10/16" data-id="nba:navigation:category:link" data-content="Future Starts Now" data-text="Future Starts Now" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">Future Starts Now</span></a></li><li class="NavItem_item__Gokj_" data-dropdown="false" data-is-hidden="false" aria-haspopup="false" aria-expanded="false"><a href="/nba-fitness" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="11/16" data-id="nba:navigation:category:link" data-content="NBA Fitness" data-text="NBA Fitness" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">NBA Fitness</span></a></li><li class="NavItem_item__Gokj_" data-dropdown="true" data-is-hidden="false" aria-haspopup="true" aria-expanded="false"><a href="/fantasy" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="12/16" data-id="nba:navigation:category:link" data-content="Fantasy" data-text="Fantasy" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">Fantasy</span></a><div data-active="false" data-subnav="false" data-team="false" data-affil="false" class="NavDropdown_dropdown__HuIep"><ul class="NavDropdown_list__Phy7G"><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/fantasy" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Fantasy Home" data-content="Fantasy" data-section="navbar">Fantasy Home</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/stats/fantasynews" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Fantasy News" data-content="Fantasy" data-section="navbar">Fantasy News</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://picks.nba.com/pickem" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="NBA Pick'Em" data-content="Fantasy" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">NBA Pick'Em</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://sorare.com/nba?utm_source=partnerships&utm_medium=social&utm_campaign=nba_website_link&utm_term=nba" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Play Sorare NBA" data-content="Fantasy" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Play Sorare NBA</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://ad.doubleclick.net/ddm/trackclk/N360801.1913355YAHOOADMANAGER/B23659549.286628993;dc_trk_aid=460811235;dc_trk_cid=127759645;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;gdpr=$GDPR;gdpr_consent=$GDPR_CONSENT_755" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Yahoo Fantasy Sports" data-content="Fantasy" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Yahoo Fantasy Sports</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://www.fanduel.com/contests/nba" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="FanDuel DFS" data-content="Fantasy" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">FanDuel DFS</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://www.draftkings.com/fantasy-basketball" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="DraftKings DFS" data-content="Fantasy" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">DraftKings DFS</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/nbabet" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="NBABet Home" data-content="Fantasy" data-section="navbar">NBABet Home</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/fantasy/authorized-gaming-operators" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Authorized Gaming Operators" data-content="Fantasy" data-section="navbar">Authorized Gaming Operators</a></li></ul></div></li><li class="NavItem_spacer__S_yA4"></li><li class="NavItem_item__Gokj_" data-dropdown="false" data-is-hidden="false" aria-haspopup="false" aria-expanded="false"><a href="/watch/league-pass-stream" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="14/16" data-id="nba:navigation:category:link" data-content="League Pass" data-text="League Pass" data-section="navbar"><span data-has-icon="false" class="NavItem_text__JoCLX">League Pass</span></a></li><li class="NavItem_item__Gokj_" data-dropdown="true" data-is-hidden="false" aria-haspopup="true" aria-expanded="false"><a href="https://global.nba.com/store-link-handler" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="15/16" data-id="nba:navigation:category:link" data-content="Store" data-text="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank"><span data-has-icon="false" class="NavItem_text__JoCLX">Store</span></a><div data-active="false" data-subnav="false" data-team="false" data-affil="false" class="NavDropdown_dropdown__HuIep"><ul class="NavDropdown_list__Phy7G"><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://global.nba.com/store-link-handler" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="Logo Link to NBA Store" data-track="click" data-type="logo" data-id="nba:navigation:subcategory:logo" data-text="NBA Store" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank"><img src="https://cdn.nba.com/logos/leagues/logo-nbastore.svg" alt="NBA Store Icon" title="NBA Store Icon"><span class="sr-only">NBA Store</span></a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://store.nba.com/jerseys/d-2338402972+z-930066-3838517996?_s=bm-nbacom-hp-jerseys" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Jerseys" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Jerseys</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://store.nba.com/men/ga-12+z-9834227610-3678762441?_s=bm-nbacom-hp-mens" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Men" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Men</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://store.nba.com/women/ga-13+z-9992883065-944190737?_s=bm-nbacom-hp-womens" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Women" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Women</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://store.nba.com/kids/ga-69+z-851589194-1574389178?_s=bm-nbacom-hp-kids" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Kids" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Kids</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://store.nba.com/custom-shop/c-2642?_s=bm-nbacom-hp-customshop" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Custom Shop" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Custom Shop</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://store.nba.com/hardwood-classics/c-48147129+z-9352503-894010671?_s=bm-nbacom-hp-hardwoodclassics" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Hardwood Classics" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Hardwood Classics</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://store.nba.com/hats/d-1238400306+z-933233-2567195697?_s=bm-nbacom-hp-hats" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Hats" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Hats</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://store.nba.com/footwear/d-1294282497+z-957317-2506523281?_s=bm-nbacom-hp-footwear" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Footwear" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Footwear</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://auctions.nba.com/iSynApp/showHomePage.action?sid=1101461" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Auctions" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Auctions</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://nbagameworn.nba.com/iSynApp/showHomePage.action?sid=1101561" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="NBA Game Worn" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">NBA Game Worn</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://store.nba.com/nyc-store/x-265968+z-785787-1605852944" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="NYC Store" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">NYC Store</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://photostore.nba.com" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="NBA Photo Store" data-content="Store" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">NBA Photo Store</a></li></ul></div></li><li class="NavItem_item__Gokj_" data-dropdown="true" data-is-hidden="false" aria-haspopup="true" aria-expanded="false"><a href="https://nbatickets.nba.com/?cid=nba:tickets:institutional:nbacom:domsites:rd" class="Anchor_anchor__cSc3P NavItem_link__ZBDtq" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="link" data-pos="16/16" data-id="nba:navigation:category:link" data-content="Tickets" data-text="Tickets" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank"><span data-has-icon="false" class="NavItem_text__JoCLX">Tickets</span></a><div data-active="false" data-subnav="false" data-team="false" data-affil="false" class="NavDropdown_dropdown__HuIep"><ul class="NavDropdown_list__Phy7G"><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://nbatickets.nba.com/?cid=nba:tickets:institutional:nbacom:domsites:rd" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="NBATickets.com" data-content="Tickets" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">NBATickets.com</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="https://www.ticketmaster.com/nba?brand=nba&wt.mc_id=NBA_LEAGUE_NBA_TICKET_NAV_DROPDOWN&utm_source=NBA.com&utm_medium=client&utm_campaign=NBA_LEAGUE&utm_content=NBA_TICKET_NAV_DROPDOWN" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Official Tickets by Ticketmaster" data-content="Tickets" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Official Tickets by Ticketmaster</a></li></ul></div></li><li class="NavItem_item__Gokj_" data-dropdown="true" data-is-hidden="false" aria-haspopup="true" aria-expanded="false"><button type="button" class="NavItem_link__ZBDtq"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" alt="Affiliates" class="NavItem_icon__s8dkI" data-no-icon="true" role="presentation" title="Other Professional Leagues Button"><path fill="currentColor" fill-rule="evenodd" d="M4 12v4H0v-4h4zm6 0v4H6v-4h4zm6 0v4h-4v-4h4zM4 6v4H0V6h4zm6 0v4H6V6h4zm6 0v4h-4V6h4zM4 0v4H0V0h4zm6 0v4H6V0h4zm6 0v4h-4V0h4z"></path></svg><span data-has-icon="true" class="NavItem_text__JoCLX">Affiliates</span></button><div data-active="false" data-subnav="false" data-team="false" data-affil="true" class="NavDropdown_dropdown__HuIep"><ul data-is-drawer="false" class="NavAffiliateList_list__3SAN_"><li data-drawer="false" class="NavAffiliateItem_li__Hx6R_"><a href="https://gleague.nba.com" class="Anchor_anchor__cSc3P NavAffiliateItem_link__bX3dZ" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="logo" data-id="nba:navigation:subcategory:logo" data-content="Leagues" data-text="NBA G League" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank"><figure class="NavAffiliateItem_figure__LxDML"><div class="NavAffiliateItem_logoContainer__z_TEp"><img src="https://cdn.nba.com/logos/leagues/logo-gleague.svg" class="NavAffiliateItem_logo__pHDgh" role="presentation" alt="NBA G-League Icon" title="NBA G-League Icon"></div><figcaption class="NavAffiliateItem_figCaption__i90V2">NBA G League</figcaption></figure></a></li><li data-drawer="false" class="NavAffiliateItem_li__Hx6R_"><a href="https://www.wnba.com" class="Anchor_anchor__cSc3P NavAffiliateItem_link__bX3dZ" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="logo" data-id="nba:navigation:subcategory:logo" data-content="Leagues" data-text="WNBA" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank"><figure class="NavAffiliateItem_figure__LxDML"><div class="NavAffiliateItem_logoContainer__z_TEp"><img src="https://cdn.nba.com/logos/leagues/logo-wnba.svg" class="NavAffiliateItem_logo__pHDgh" role="presentation" alt="WNBA Icon" title="WNBA Icon"></div><figcaption class="NavAffiliateItem_figCaption__i90V2">WNBA</figcaption></figure></a></li><li data-drawer="false" class="NavAffiliateItem_li__Hx6R_"><a href="https://2kleague.nba.com/" class="Anchor_anchor__cSc3P NavAffiliateItem_link__bX3dZ" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="logo" data-id="nba:navigation:subcategory:logo" data-content="Leagues" data-text="NBA 2K League" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank"><figure class="NavAffiliateItem_figure__LxDML"><div class="NavAffiliateItem_logoContainer__z_TEp"><img src="https://cdn.nba.com/logos/leagues/logo-2k.svg" class="NavAffiliateItem_logo__pHDgh" role="presentation" alt="NBA 2K Icon" title="NBA 2K Icon"></div><figcaption class="NavAffiliateItem_figCaption__i90V2">NBA 2K League</figcaption></figure></a></li><li data-drawer="false" class="NavAffiliateItem_li__Hx6R_"><a href="https://www.thebal.com/" class="Anchor_anchor__cSc3P NavAffiliateItem_link__bX3dZ" data-is-external="false" data-has-more="false" data-has-children="true" data-track="click" data-type="logo" data-id="nba:navigation:subcategory:logo" data-content="Leagues" data-text="Basketball Africa League" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank"><figure class="NavAffiliateItem_figure__LxDML"><div class="NavAffiliateItem_logoContainer__z_TEp"><img src="https://cdn.nba.com/logos/leagues/logo-bal.svg" class="NavAffiliateItem_logo__pHDgh" role="presentation" alt="NBA BAL Icon" title="NBA BAL Icon"></div><figcaption class="NavAffiliateItem_figCaption__i90V2">Basketball Africa League</figcaption></figure></a></li></ul></div></li></ul><div class="NavBar_div__74CVO"><div class="NavControls_nc__2yQgE" data-is-open="false" id="nav-controls"><ul><li class="NavItem_item__Gokj_" data-dropdown="true" data-is-hidden="false" aria-haspopup="true" aria-expanded="false"><button type="button" class="NavItem_link__ZBDtq"><span data-has-icon="false" class="NavItem_text__JoCLX">Sign In</span></button><div data-active="false" data-subnav="false" data-team="false" data-affil="true" class="NavDropdown_dropdown__HuIep"><div data-testid="accountNav" class="AccountNavItem_accountNav__r4pxO"><ul class="AccountNavItem_list__tIoWH"><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><a href="/account/sign-in" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:nba-sign-in:link" data-section="navigation" data-text="Sign in with NBA ID" data-content="">Sign in with NBA ID</a></li><hr class="AccountNavItem_divider__nz7vF"><li class="NavDropdownChild_item__k5Oea" data-is-drawer="false"><span data-link-enabled="false" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-content="" data-section="navbar" class="NavDropdownChild_link__NSYfR"><button data-testid="setHideScores" class="AccountNavItem_toggleButton__2Tn_n" type="button"><span class="AccountNavItem_toggleText__LFfm_">Hide Scores</span><label class="Toggle_toggle__2_SBA" data-is-active="false"><div class="Toggle_switch__kRCjc"><input class="Toggle_input__4dsrR" type="checkbox" name=""><span class="Toggle_slider__ln3dZ"></span></div></label></button></span></li><li class="NavDropdownChild_item__k5Oea AccountNavItem_helpLink__tQ2XK" data-is-drawer="false"><a href="https://support.watch.nba.com" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Help" data-content="" data-section="navbar" rel="noopener noreferrer nofollow" target="_blank">Help</a></li></ul></div></div></li></ul></div></div></div></nav></div><div data-visible="false" data-extra-height="false" class="NavDrawer_drawer__1LK1k"><div class="NavDrawer_content__A8Sxu"><div id="search-container-mobile" class="NavDrawer_search__KiYiF"><form><div class="NavSearch_navSearch__bESGd" data-results="false"><div class=""><input type="search" class="Input_input__7s5ug NavSearch_searchInput__rHOG4" placeholder="Search Players or Teams" title="Search Bar for Players & Teams"></div><button type="button" class="NavSearch_close__FO72w" title="Close Natural Search Bar Button"><svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" viewBox="0 0 16 16" class="NavSearch_closeIcon__RwLgQ" data-no-icon="true" role="presentation" title="Close Natural Search Bar Button"><g fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"><line class="st0" x1="1" y1="1" x2="15" y2="15"></line><line class="st0" x1="15" y1="1" x2="1" y2="15"></line></g></svg></button><svg xmlns="http://www.w3.org/2000/svg" width="23" height="22" viewBox="0 0 23 22" class="NavSearch_searchIcon__4MsLV" data-no-icon="true" role="presentation" date-type="image" data-track="click"><path fill="currentColor" fill-rule="nonzero" d="M9.245 0a9.192 9.192 0 0 1 3.6.728 9.25 9.25 0 0 1 3.608 14.214l5.692 5.693L20.78 22l-5.674-5.673a9.249 9.249 0 0 1-9.46 1.44A9.25 9.25 0 0 1 9.245 0zm0 1.93a7.317 7.317 0 1 0 0 14.635 7.317 7.317 0 0 0 0-14.634z"></path></svg></div></form></div><div class="NavDrawer_panel__xGAX0"><ul class="DrawerMenu_ul__vAklr"><li class="DrawerMenu_li__X_g5t" data-is-active="false"><button type="button" class="DrawerMenu_button__qYi9a" aria-haspopup="menu" aria-expanded="false" data-track="click" data-pos="1/17" data-content="Games" data-text="Games" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">Games</button></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><button type="button" class="DrawerMenu_button__qYi9a" aria-haspopup="menu" aria-expanded="false" data-track="click" data-pos="2/17" data-content="Schedule" data-text="Schedule" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">Schedule</button></li><li class="DrawerMenu_li__X_g5t" data-is-active="true"><button type="button" class="DrawerMenu_button__qYi9a" aria-haspopup="menu" aria-expanded="true" data-track="click" data-pos="3/17" data-content="Watch" data-text="Watch" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">Watch</button></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><button type="button" class="DrawerMenu_button__qYi9a" aria-haspopup="menu" aria-expanded="false" data-track="click" data-pos="4/17" data-content="News" data-text="News" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">News</button></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><button type="button" class="DrawerMenu_button__qYi9a" aria-haspopup="menu" aria-expanded="false" data-track="click" data-pos="5/17" data-content="Stats" data-text="Stats" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">Stats</button></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><a href="/standings" class="Anchor_anchor__cSc3P DrawerMenu_button__qYi9a" data-is-external="false" data-has-more="false" data-has-children="false" data-track="click" data-pos="6/17" data-content="Standings" data-text="Standings" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">Standings</a></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><a href="/teams" class="Anchor_anchor__cSc3P DrawerMenu_button__qYi9a" data-is-external="false" data-has-more="false" data-has-children="false" data-track="click" data-pos="7/17" data-content="Teams" data-text="Teams" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">Teams</a></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><button type="button" class="DrawerMenu_button__qYi9a" aria-haspopup="menu" aria-expanded="false" data-track="click" data-pos="8/17" data-content="Players" data-text="Players" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">Players</button></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><a href="/allstar/2024" class="Anchor_anchor__cSc3P DrawerMenu_button__qYi9a" data-is-external="false" data-has-more="false" data-has-children="false" data-track="click" data-pos="9/17" data-content="All-Star" data-text="All-Star" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">All-Star</a></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><a href="/future-starts-now" class="Anchor_anchor__cSc3P DrawerMenu_button__qYi9a" data-is-external="false" data-has-more="false" data-has-children="false" data-track="click" data-pos="10/17" data-content="Future Starts Now" data-text="Future Starts Now" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">Future Starts Now</a></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><a href="/nba-fitness" class="Anchor_anchor__cSc3P DrawerMenu_button__qYi9a" data-is-external="false" data-has-more="false" data-has-children="false" data-track="click" data-pos="11/17" data-content="NBA Fitness" data-text="NBA Fitness" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">NBA Fitness</a></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><button type="button" class="DrawerMenu_button__qYi9a" aria-haspopup="menu" aria-expanded="false" data-track="click" data-pos="12/17" data-content="Fantasy" data-text="Fantasy" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">Fantasy</button></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><a href="/watch/league-pass-stream" class="Anchor_anchor__cSc3P DrawerMenu_button__qYi9a" data-is-external="false" data-has-more="false" data-has-children="false" data-track="click" data-pos="14/17" data-content="League Pass" data-text="League Pass" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">League Pass</a></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><button type="button" class="DrawerMenu_button__qYi9a" aria-haspopup="menu" aria-expanded="false" data-track="click" data-pos="15/17" data-content="Store" data-text="Store" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">Store</button></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><button type="button" class="DrawerMenu_button__qYi9a" aria-haspopup="menu" aria-expanded="false" data-track="click" data-pos="16/17" data-content="Tickets" data-text="Tickets" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">Tickets</button></li><li class="DrawerMenu_li__X_g5t" data-is-active="false"><button type="button" class="DrawerMenu_button__qYi9a" aria-haspopup="menu" aria-expanded="false" data-track="click" data-pos="17/17" data-content="Affiliates" data-text="Affiliates" data-section="drawer" data-id="nba:navigation:category:link" data-type="link">Affiliates</button></li></ul><div class="DrawerPopup_div__dgj6R"><ul class="DrawerPopup_list__JP85n"><li class="NavDropdownChild_item__k5Oea" data-is-drawer="true"><a href="/watch/featured" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="Featured" data-content="Watch" data-section="drawer">Featured</a></li><li class="NavDropdownChild_item__k5Oea" data-is-drawer="true"><a href="/watch/nba-tv" class="Anchor_anchor__cSc3P NavDropdownChild_link__NSYfR" data-is-external="false" data-has-more="false" data-has-children="true" data-link-enabled="true" title="" data-track="click" data-type="link" data-id="nba:navigation:subcategory:link" data-text="NBA TV" data-content="Watch" data-section="drawer">NBA TV</a></li></ul></div></div></div></div><div class="SubNav_snMain__Y5P_b"><nav class="SubNav_snNav__fCv29"><ul class="SubNav_snList__CKik_"><li class="SubNav_snListTitle__0HDLS">2024 NBA Draft (B/R)</li><li aria-haspopup="false" aria-expanded="false" data-is-active="false" class="SubNavItem_subnavList__grwPV"><a href="/draft/2024" class="Anchor_anchor__cSc3P SubNavItem_subnavLink__pF1m7" data-is-external="false" data-has-more="false" data-has-children="false">Latest</a></li><li aria-haspopup="false" aria-expanded="false" data-is-active="false" class="SubNavItem_subnavList__grwPV"><a href="https://bleacherreport.com/nba-draft" class="Anchor_anchor__cSc3P SubNavItem_subnavLink__pF1m7" data-is-external="false" data-has-more="false" data-has-children="false" rel="noopener noreferrer nofollow" target="_blank">Bleacher Report: Draft Features</a></li><li aria-haspopup="false" aria-expanded="false" data-is-active="false" class="SubNavItem_subnavList__grwPV"><a href="/news/category/2024-nba-draft" class="Anchor_anchor__cSc3P SubNavItem_subnavLink__pF1m7" data-is-external="false" data-has-more="false" data-has-children="false">Draft News</a></li><li aria-haspopup="false" aria-expanded="false" data-is-active="false" class="SubNavItem_subnavList__grwPV"><a href="/stats/draft/history" class="Anchor_anchor__cSc3P SubNavItem_subnavLink__pF1m7" data-is-external="false" data-has-more="false" data-has-children="false">Every Pick: 1947-2023</a></li><li aria-haspopup="false" aria-expanded="false" data-is-active="false" class="SubNavItem_subnavList__grwPV"><a href="/news/history-draft" class="Anchor_anchor__cSc3P SubNavItem_subnavLink__pF1m7" data-is-external="false" data-has-more="false" data-has-children="false">Draft History</a></li></ul></nav></div></div><div class="Layout_mainContent__jXliI"><div class="NewsArticleView_bannerHolder__8i1Ga"><div class="NewsArticleView_banner__d6Xy0"><div data-testid="page-banner" class="PageBanner_banner__t0EWb" style="background-image:url(https://cdn.nba.com/manage/2022/11/bleacher-report-article-header-desktop-v2-scaled.jpg)"><div><div class="DisplayAd_ad__YpTBs" data-centered="false" data-ad-type="sponsor"><div id="article_ad_r_1" class="DisplayAd_placement__gO0o0" data-full-width="false" data-lazy="false"></div></div></div></div></div></div><div class="MaxWidthContainer_mwc__ID5AG" data-padding="true" data-ad-slot="false" data-max-width="xl"><div class="DisplayAd_ad__YpTBs NewsArticleView_ad__CiJd4" data-centered="true" data-ad-type="banner"><div id="article_ad_b_1" class="DisplayAd_placement__gO0o0" data-full-width="true" data-lazy="false"></div><div class="DisplayAd_singleton___iXtO" id="ad_mod_baa3571cc"></div></div><section class="Block_block__62M07" data-has-container="false" data-has-carousel="false" data-has-logo="false" data-has-ad-container="false" data-has-title="false" data-has-nested-blocks="false" data-is-nested-block="false"><div class="Block_blockContent__6iJ_n Article_arBlock__s35Il"><article class="Article_arContainer__18r3N"><div class="ArticleHeader_ah__BBZ33"><div class="ArticleHeader_ahBlock__aoXAL"><div class="ArticleHeader_ahCategory__txfsx"><h3 class="ArticleHeader_ahCattext__ukmoa">2024 NBA Draft on B/R</h3><div class="DisplayAd_ad__YpTBs" data-centered="false" data-ad-type="sponsor"><div id="article_ad_r_1" class="DisplayAd_placement__gO0o0" data-full-width="false" data-lazy="false"></div></div></div><h1 class="ArticleHeader_ahTitle__mIo92">Bleacher Report: Latest Mock Draft + biggest risers and fallers</h1><p class="ArticleHeader_ahSubtitle__4qa5C">Bleacher Report's Jonathan Wasserman tracks which players are rising and falling the most in his latest mock draft for 2024.</p></div><div class="ArticleHeader_ahBy__2ddjx"><div class="ArticleHeader_ahAuthor__NbBw0"><div class="ArticleAuthor_base__LYqxf"><div class="ArticleAuthor_bio__f9ODF"><div><p class="ArticleAuthor_authorName___AnQD">Jonathan Wasserman, Bleacher Report</p></div><div class="ArticleAuthor_authorSocial__dBwO2"></div></div></div><time class="ArticleHeader_ahDate__J3fwr">Updated on December 13, 2023 1:23 PM</time></div></div></div><div class="Columns_col__wZTNG"><div class="Columns_left__XkWXE"><div class="ArticleContent_article__NBhQ8"><div id="attachment_1239171" style="width: 1930px" class="wp-caption alignnone"><img aria-describedby="caption-attachment-1239171" decoding="async" loading="lazy" class="wp-image-1239171 size-full" src="https://cdn.nba.com/manage/2023/12/rod-dillingham-reed-sheppard-loose-ball.jpg" alt="" width="1920" height="1080" srcset="https://cdn.nba.com/manage/2023/12/rod-dillingham-reed-sheppard-loose-ball.jpg 1920w, https://cdn.nba.com/manage/2023/12/rod-dillingham-reed-sheppard-loose-ball-784x441.jpg 784w, https://cdn.nba.com/manage/2023/12/rod-dillingham-reed-sheppard-loose-ball-1568x882.jpg 1568w, https://cdn.nba.com/manage/2023/12/rod-dillingham-reed-sheppard-loose-ball-768x432.jpg 768w, https://cdn.nba.com/manage/2023/12/rod-dillingham-reed-sheppard-loose-ball-1536x864.jpg 1536w" sizes="(max-width: 1920px) 100vw, 1920px"><p id="caption-attachment-1239171" class="wp-caption-text">Kentucky’s Reed Sheppard (left) and Rob Dillingham are rising the ranks in Bleacher Report’s latest mock draft.</p></div>
<p><strong><em>Editor’s Note: Find more of Jonathan Wasserman’s coverage of the 2024 Draft on <a href="https://bleacherreport.com/nba-draft">Bleacher Report</a> or to read this article on BleacherReport.com, click <a href="https://bleacherreport.com/articles/10099402-2024-nba-mock-draft-full-two-round-predictions-biggest-risers-and-fallers">here</a>.</em></strong></p>
<hr>
<p><strong>(B/R) — </strong>The top of 2024 NBA draft boards are fuzzier than any in recent memory heading into the holiday break.</p>
<p>There still isn’t a true No. 1 overall favorite, which means the lottery order and team needs could play a bigger role in who goes first than usual. Right now, our projected first pick could change each mock draft depending on the NBA standings and odds.</p>
<p>While several top NCAA prospects have underwhelmed early, the top names overseas have exceeded expectations. At this current rate, three of the top five picks may be international.</p>
<p>The upcoming draft may be receiving some needed boosts from surprise college freshmen and breakout upperclassmen. But unless one of the high-profile prospects starts to separate from the pack, there could be a lot of trade chatter at No. 1 after the lottery.</p>
<p><i>Draft order based on standings heading into Wednesday’s games.</i></p>
<p><span style="font-size: 14pt;"><strong>Biggest Risers and Fallers Since <a href="https://www.nba.com/news/bleacher-report-mock-draft-round-1-nba-comparisons-nov-28-2023">Last Mock Draft</a></strong></span></p>
<div id="slide1" class="organism contentStream slide">
<p><b><u>Risers</u></b></p>
<p>Reed Sheppard, Kentucky<br>
Rob Dillingham, Kentucky<br>
Trevon Brazile, Arkansas<br>
Ajay Mitchell, Santa Barbara<br>
Dalton Knecht, Tennessee<br>
Terrence Shannon Jr., Illinois</p>
<p><b><u>Fallers</u></b></p>
<p>Tyrese Proctor, Duke<br>
Justin Edwards, Kentucky<br>
Aday Mara, UCLA<br>
Carlton Carrington, Pittsburgh<br>
Aaron Bradshaw, Kentucky</p>
<div id="slide2" class="organism contentStream slide">
<p><span style="font-size: 18pt;"><strong>Biggest Risers and Fallers This Season</strong></span></p>
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<p><b><u class="cdx-underline">Risers</u></b></p>
<p>Nikola Topić, Mega MIS<br>
Carlton Carrington, Pittsburgh<br>
Reed Sheppard, Kentucky<br>
Ryan Dunn, Virginia<br>
Hunter Sallis, Wake Forest<br>
Kevin McCullar Jr., Kansas<br>
Dalton Knecht, Tennessee<br>
Ajay Mitchell, Santa Barbara</p>
<p><b><u class="cdx-underline">Fallers</u></b></p>
<p>Aaron Bradshaw, Kentucky<br>
Justin Edwards, Kentucky<br>
D.J. Wagner, Kentucky<br>
Mark Mitchell, Duke</p>
<hr>
<p><span style="font-size: 18pt;"><strong>1. Detroit Pistons: Alexandre Sarr</strong></span></p>
<ul>
<li><b>Stock Status:</b> Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 4</li>
<li><b>School/Team: </b>Perth Wildcats</li>
<li><b>Position</b>: PF/C</li>
<li><b>Age:</b> 18</li>
<li><b>Size:</b> 7-foot-1, 216 lbs</li>
<li><b>Pro Comparison:</b> Jaren Jackson Jr.</li>
</ul>
<p>Alexandre Sarr’s flashes at both ends have created visions of a 7-foot-1 power forward/center who’s a switchable rim protector and 3-point threat, capable of driving past closeouts and scoring with touch around the key.</p>
<p>And for an 18-year-old, those visions give Sarr some wiggle room with his consistency and polish. Reminders of his lack of strength, shooting reliability and handle are served regularly. But scouts will be patient due to his coveted archetype and his NBL production as a teenager.</p>
<p>He’s making an impact at his absolute floor with play-finishing, occasional shotmaking and defensive contests. There may be a wide variety of potential outcomes when dealing with Sarr’s trajectory, but there is top-player-in-the-class upside if a best-case scenario plays out with his development, while Sarr still figures to improve a rotation if he winds up plateauing as an athletic two-way energizer.</p>
<p><span style="font-size: 18pt;"><strong>2. San Antonio Spurs: Nikola Topić</strong></span></p>
<div id="slide4" class="organism contentStream slide">
<div class="slideData">
<div class="youtubeEmbed molecule">
<div class="iframe atom">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 2</li>
<li><b>School/Team</b>: Mega MIS</li>
<li><b>Position</b>: PG</li>
<li><b>Age:</b> 18</li>
<li><b>Size:</b> 6-foot-6, 198 lbs</li>
<li><b>Pro Comparison:</b> Shai Gilgeous-Alexander</li>
</ul>
<p>Potentially the youngest 2024 draft prospect, Nikola Topić leads the Adriatic League in assists and ranks second in scoring.</p>
<p>Questions over his athleticism aren’t setting off alarms thanks to his 6-foot-6 size, a 61.6 two-point percentage and surge in NBA star guards (Shai Gilgeous-Alexander, Tyrese Haliburton, Jalen Brunson, Luka Dončić) who’ve excelled with shiftiness, footwork, IQ and skill over speed and explosion.</p>
<p>He’s demonstrated a special knack for beating defenders with timely moves, change of speed, surprise bursts and low ball-handling moves. And he’s outstanding off the dribble with his vision, passing feel and finishing craft.</p>
<p>Topić would have a stronger first-pick case if he was shooting better from deep, but he’s still hit 17 threes in 12 games, and historically, he’s always been capable from behind the arc and over 80.0% from the free-throw line.</p>
<p><span style="font-size: 18pt;"><strong>3. Washington Wizards: Isaiah Collier</strong></span></p>
<div id="slide5" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 3</li>
<li><b>School/Team:</b> USC</li>
<li><b>Position: </b>PG</li>
<li><b>Age: </b>19, Freshman</li>
<li><b>Size: </b>6-foot-5, 210 lbs</li>
<li><b>Pro Comparison:</b> Baron Davis</li>
</ul>
<p>The biggest draws to Isaiah Collier right now are his shifty ball-handling and strength for attacking and finishing at the rim, along with his ability to create shots for teammates. These are aspects of his game that seem translatable, given his NBA positional tools/burst and how passing transitionally carries over.</p>
<p>Washington should feel it can bank on Collier for rim pressure and playmaking at the least.</p>
<p>He’s also shot well early, both off the catch and with his mid-range pull-up. His jump shot still isn’t highly convincing, however, given the low-volume attempts and a borderline set shot that doesn’t seem super conducive for consistent long-range shooting.</p>
<p>Collier’s decision-making is the most discussed flaw. He’s averaging 4.6 turnovers per game, coughing it up 34.4% of the time in ball-screen situations. Despite USC’s talented roster, it has lost three of eight games, and Collier ranks fifth on the team in <a href="https://www.sports-reference.com/cbb/schools/southern-california/men/2024.html" target="_blank" rel="noopener">box plus-minus</a>.</p>
<p>I’s also a difficult draft to nitpick a highly productive freshman, particularly one with outstanding physical tools, valuable creativity, obvious passing vision and a capable shot.</p>
<p><span style="font-size: 18pt;"><strong>4. Memphis Grizzlies: Zaccharie Risacher</strong></span></p>
<div id="slide6" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 5</li>
<li><b>School/Team: </b>JL Bourg</li>
<li><b>Position: </b>SF</li>
<li><b>Age: </b>18</li>
<li><b>Size:</b> 6-foot-8, 204 lbs</li>
<li><b>Pro Comparison:</b> Harrison Barnes</li>
</ul>
<p>In a class that’s missing convincing All-Star prospects, Zaccharie Risacher is building a case around a high floor.</p>
<p>He’s been on a heater over the past month, raising his 3-point mark to 45.6% between LNB Pro A and Eurocup. It’s illuminated some exciting shotmaking ability to complement his 6-foot-8 size, explosiveness, open-floor ball-handling and defensive versatility.</p>
<p>The case against Risacher as a top pick focuses on his current archetype and the unlikelihood he’ll operate as an offensive initiator in the half court. But at 18 years old with plenty of time/room to grow, his three-and-D floor and flashes of passing (at lower levels) should be enough to justify looking at Risacher in the top three of this particular draft.</p>
<p><span style="font-size: 18pt;"><strong>5. Portland Trail Blazers: Matas Buzelis</strong></span></p>
<div id="slide7" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status:</b> Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 6</li>
<li><b>School/Team:</b> G League Ignite</li>
<li><b>Position: </b>SG/SF</li>
<li><b>Age:</b> 19</li>
<li><b>Size: </b>6-foot-8, 209 lbs</li>
<li><b>Pro Comparison: </b>Franz Wagner</li>
</ul>
<p>Back from an ankle injury, Matas Buzelis showcased his jumbo-guard skills and athleticism in two games for Ignite with open-floor ball-handling, fluid slashing, above-the-rim finishing and defensive contests.</p>
<p>He’s missed six of his first seven threes, but shooting isn’t a concern for Buzelis. He’s a comfortable three-level shot-maker with range, though the upside pops most when he’s creating into smooth drives and mid-range jumpers or fallaways.</p>
<p>He isn’t tight enough with the ball yet to consistently get to his spots in the half court. He’s looked vulnerable when pressured. A stronger frame and tighter handle should eventually help, and at 19 years old, scouts could think Buzelis can eventually achieve both.</p>
<p><span style="font-size: 18pt;"><strong>6. Chicago Bulls: Ron Holland</strong></span></p>
<div id="slide8" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status:</b> Down</li>
<li><b>Previous Mock Draft Spot: </b>No. 1</li>
<li><b>School/Team:</b> G League Ignite</li>
<li><b>Position: </b>SF</li>
<li><b>Age:</b> 18</li>
<li><b>Size: </b>6-foot-6, 204 lbs</li>
<li><b>Pro Comparison: </b>Shawn Marion</li>
</ul>
<p>Back on track after a brief slump in November, Ron Holland has averaged 23.2 points on 52.7% over Ignite’s last five games.</p>
<p>He’s seemingly activated a different level of focus with his determination to attack defenders and cut down on turnovers. His explosiveness in the open floor is tough to top. And in the half court, he’s turning the corner, playing through contract until he’s gotten to the hoop or he’s putting back his own misses.</p>
<p>Though his self-creation still isn’t great for a potential No. 1 overall wing prospect, he has still delivered some encouraging flashes, changing speeds and directions to shake free.</p>
<p>At this point, his 23.5 3-point percentage, 57.7 free-throw percentage and decision-making raise the most red flags, particularly for a limited creator and playmaker in the No. 1 overall mix. It’s almost becoming safer for teams to project more of an energizer type than a top option.</p>
<p>On the other hand, the fact that he’s still scoring at a strong clip in the G League at 18 years old—without an advanced bag or jump shot—suggests Holland offers both a high floor and pathway to upside.</p>
<p><span style="font-size: 18pt;"><strong>7. Charlotte Hornets: Stephon Castle</strong></span></p>
<div id="slide9" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 7</li>
<li><b>School/Team:</b> Connecticut</li>
<li><b>Position: </b>SG</li>
<li><b>Age:</b> 19, Freshman</li>
<li><b>Size:</b> 6-foot-6, 215 lbs</li>
<li><b>Pro Comparison</b>: Jimmy Butler</li>
</ul>
<p>Stephon Castle’s return from a knee injury against North Carolina was mostly uneventful. Scouts are just pleased he’s back in the lineup, given the draft’s need for more star power and Castle’s promising start in November.</p>
<p>Scouts figure to be patient with the freshman, given the missed time, Connecticut’s depth and the long-term appeal of a 6’6″ point-wing and strong, versatile defender.</p>
<p>Concerns may pop up around his 3-point shooting and lack of explosion for creating separation. However, Castle plays at his own, slower pace that allows him to control possessions and defenders. And he’s showcased enough three-level shotmaking over the years to give him some wiggle room with his percentages.</p>
<p><span style="font-size: 18pt;"><strong>8. Utah Jazz: Ja’Kobe Walter</strong></span></p>
<div id="slide10" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 8</li>
<li><b>School/Team:</b> Baylor</li>
<li><b>Position: </b>SG</li>
<li><b>Age:</b> 19, Freshman</li>
<li><b>Size:</b> 6-foot-5, 195 lbs</li>
<li><b>Pro Comparison</b>: Kentavious Caldwell-Pope</li>
</ul>
<p>Though Ja’Kobe Walter has been streaky this season, age, physical tools, obvious shotmaking skill and a weak lottery will earn him a pass.</p>
<p>Limited creativity has been the biggest problem that’s led to difficult shots and no translatable playmaking (seven assists, eight games).</p>
<p>Still, at 6-foot-5 with a strong frame, deep range, a runner/floater and the ability to shoot off movement, he should have the right skill set and body for three-level off-ball scoring.</p>
<p><span style="font-size: 18pt;"><strong>9. Portland Trail Blazers (via Warriors): Cody Williams</strong></span></p>
<div id="slide11" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 9</li>
<li><b>School/Team:</b> Colorado</li>
<li><b>Position: </b>SF</li>
<li><b>Age: </b>19, Freshman</li>
<li><b>Size: </b>6-foot-8, 190 lbs</li>
<li><b>Pro Comparison:</b> Jerami Grant</li>
</ul>
<p>Despite performances at the Nike Hoop Summit, McDonalds All-American week and World Cup that painted Cody Williams as raw and unpolished, he’s averaging 14.0 points on 62.3% shooting.</p>
<p>Even without any advanced creation or a high-usage jumper, he’s scoring efficiently, mostly by optimizing his positional height for separating and using footwork and touch around the paint.</p>
<p>Flashes of 3-point shooting (6-of-10) and defensive effort have led to one of the most promising starts among freshmen.</p>
<p>A lack of threes attempted and half-court creation/playmaking does raise some questions, but it’s difficult to nitpick Williams’ highly productive and efficient start.</p>
<p><span style="font-size: 18pt;"><strong>10. San Antonio Spurs (via Raptors): Ryan Dunn</strong></span></p>
<div id="slide12" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 14</li>
<li><b>School/Team: </b>Virginia</li>
<li><b>Position:</b> SF/PF</li>
<li><b>Age: </b>20, Sophomore</li>
<li><b>Size: </b>6-foot-8, 216 lbs</li>
<li><b>Pro Comparison:</b> Herb Jones</li>
</ul>
<p>Ryan Dunn is making defensive plays at a rate we’ve never seen. And at 6’8″ with elite-level explosion and foot speed, scouts are seeing translatable defensive playmaking and court coverage.</p>
<p>The question is how high it can push him up boards, since he’s just 4-of-19 from three and hasn’t demonstrated any real handle, creation or passing.</p>
<p>In the mid-first round, however, there aren’t a lot of prospect who offer certainty. And Dunn does with his defensive versatility and play-finishing, a combination that can be valuable in a specific role for a team that gets enough scoring.</p>
<p><span style="font-size: 18pt;"><strong>11. Atlanta Hawks: Rob Dillingham</strong></span></p>
<div id="slide13" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Up</li>
<li><b>Previous Mock Draft Spot: </b>No. 25</li>
<li><b>School/Team: </b>Kentucky</li>
<li><b>Position: </b>PG/SG</li>
<li><b>Age: </b>18, Freshman</li>
<li><b>Size:</b> 6-foot-3, 176 lbs</li>
<li><b>Pro Comparison</b>: Bones Hyland</li>
</ul>
<p>Rob Dillingham has surprised scouts with his approach and willingness to move the ball. Averaging 5.4 assists to 1.6 turnovers, he’s sold himself so far as a point guard, rather than an undersized scoring combo.</p>
<p>For the most part, he’s picked the right times to showcase his self-creation and off-the-dribble shotmaking. And he’s off to a scorching start from three (16-of-32), hitting both pull-ups and rhythm spot-ups.</p>
<p>Scouts will be eager to see how he measures, given the questions around his projected finishing and defense. But Dillingham has been gaining more and more support with his new mentality that’s help lead to more efficient scoring and playmaking.</p>
<div id="slide14" class="organism contentStream slide">
<p><span style="font-size: 18pt;"><strong>12. Oklahoma City Thunder (via Rockets): Terrence Shannon Jr.</strong></span></p>
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Up</li>
<li><b>Previous Mock Draft Spot: </b>No. 51</li>
<li><b>School/Team:</b> Illinois</li>
<li><b>Position: </b>SG/SF</li>
<li><b>Age:</b> 23, Senior</li>
<li><b>Size: </b>6-foot-6, 215 lbs</li>
</ul>
<p>Terrence Shannon Jr. moved the needle on his draft stock against Rutgers with 33 points that highlighted his blazing burst with the ball. While his rim pressure has always been well-documented, he showed more ability to slow down and create with deceleration and body control or use his gravity to draw help and find teammates.</p>
<p>So far this season, he’s also making 44.8% of his pull-ups and 38.7% of his catch-and-shoot chances.</p>
<p>Even if his shooting comes and goes, teams could still see a pro and worthwhile first-round bet on Shannon’s streaky shotmaking when paired with electric driving, strong defensive tools and secondary playmaking.</p>
<p><span style="font-size: 18pt;"><strong>13. Oklahoma City Thunder (via Clippers): Donovan Clingan</strong></span></p>
<div id="slide15" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 13</li>
<li><b>School/Team:</b> Connecticut</li>
<li><b>Position:</b> C</li>
<li><b>Age:</b> 19, Sophomore</li>
<li><b>Size:</b> 7-foot-2, 280 lbs</li>
<li><b>Pro Comparison: </b>Walker Kessler</li>
</ul>
<p>Donovan Clingan didn’t earn any new fans after the Kansas game. Athletic limitations were exposed and held him back on some finishes, and he looked uncomfortable getting out to challenge Hunter Dickinson’s three-ball.</p>
<p>NBA teams should still figure they’ll be able to bank on his 7-foot-2 size and anticipation in rim protection and his soft hands and 280-pound frame for easy baskets and boards. No versatility just may limit his suitors to teams that could use center depth, physicality and a shot-blocking presence.</p>
<p><span style="font-size: 18pt;"><strong>14. Houston Rockets (via Nets): Trevon Brazile</strong></span></p>
<div id="slide16" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Up</li>
<li><b>Previous Mock Draft Spot: </b>No. 27</li>
<li><b>School/Team: </b>Arkansas</li>
<li><b>Position:</b> PF/C</li>
<li><b>Age: </b>20, Sophomore</li>
<li><b>Size:</b> 6-foot-10</li>
</ul>
<p>Trevon Brazile’s 19 points and 11 boards in a win over Duke highlighted the shotmaking and athleticism that are easy to picture fitting onto an NBA floor. His soft, high-arching 3-point stroke has become very convincing, while his tools and bounce around the basket create highly translatable finishing.</p>
<p>Continuous flashes of drives past closeouts, body control off the dribble and touch shots should push Brazile in the first-round mix for most teams. As long as no post-ACL tear issues arise and his shot keeps falling, Arkansas should be sending another forward to the NBA.</p>
<p><span style="font-size: 18pt;"><strong>15. New Orleans Pelicans: Kevin McCullar Jr.</strong></span></p>
<div id="slide17" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 17</li>
<li><b>School/Team:</b> Kansas</li>
<li><b>Position:</b> SG/SF</li>
<li><b>Age:</b> 22, Senior</li>
<li><b>Size:</b> 6-foot-7, 214 lbs</li>
</ul>
<p>A borderline draft pick in 2023, Kevin McCullar Jr. is altering previous evaluations and scouts’ thoughts with his improved shooting, aggressive slashing, passing/defensive IQ and impact on winning.</p>
<p>Elevated aggression has led to more finishes and playmaking, with McCullar now averaging 18.5 points and 5.1 assists. And he’s creating opportunities within Kansas’ offense—not with extra ball screens or isolation—currently generating 1.5 points per possessions out of spot-ups (97th percentile) and consistently making himself available for cuts (13-of-15).</p>
<p>A dangerous transition ball-handler and effective off-ball scorer with strong defensive tools/instincts, McCullar may just need an average/capable catch-and-shoot game to solidify first-round interest. He hit three 3-pointers in the final six minutes to propel Kansas over Connecticut on Friday.</p>
<p><span style="font-size: 18pt;"><strong>16. Cleveland Cavaliers: Carlton Carrington</strong></span></p>
<div id="slide18" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Down</li>
<li><b>Previous Mock Draft Spot: </b>No. 10</li>
<li><b>School/Team:</b> Pittsburgh</li>
<li><b>Position: </b>PG/SG</li>
<li><b>Age: </b>18, Freshman</li>
<li><b>Size:</b> 6-foot-5, 190 lbs</li>
<li><b>Pro Comparison</b>: Tyrese Maxey</li>
</ul>
<p>Carlton Carrington has cooled off, and now scouts are starting question which aspects of his hot start were legitimate.</p>
<p>The combination of 6’5″ size, playmaking IQ and shotmaking versatility remain appealing. He’s still making high-level deliveries off lives dribbles. And despite the fact his jumper isn’t falling at the same rate as earlier, he’s looked comfortable from deep, pulling up and stepping back.</p>
<p>But the fact that he’s made just four shots at the rim and has three steals and zero blocks (eight games) is raising some worrisome questions about his athleticism and quickness.</p>
<p><span style="font-size: 18pt;"><strong>17. Miami Heat: Reed Sheppard</strong></span></p>
<div id="slide19" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status:</b> Up</li>
<li><b>Previous Mock Draft Spot: </b>No. 36</li>
<li><b>School/Team:</b> Kentucky</li>
<li><b>Position:</b> SG</li>
<li><b>Age: </b>19, Freshman</li>
<li><b>Size:</b> 6-foot-3, 187 lbs</li>
</ul>
<p>No player is generating more conversation and debate within scouting circles than Reed Sheppard.</p>
<p>Despite Kentucky’s loss to Miami, he added another gem to the early-season reel with 26 points, nine boards and six assists. He’s now third in the NCAA in <a href="https://www.sports-reference.com/cbb/players/reed-sheppard-2.html" target="_blank" rel="noopener">box plus-minus</a>, consistently making positives plays while converting 63.0% of his twos, 61.1% of his threes, totaling 31 assists to seven turnovers and registering enormous defensive playmaking rates (6.1 STL percentage, 3.8 BLK percentage).</p>
<p>The numbers seemingly have to come back to earth at some point, but it’s pretty clear that Sheppard possesses elite shotmaking skill, high-IQ passing and excellent defensive instincts. While scouts will be waiting early to find out his actual height and wingspan, poor physical tools shouldn’t prevent his shooting, passing and reactions from translating in a connector role.</p>
<p><span style="font-size: 18pt;"><strong>18. Phoenix Suns: Kyle Filipowski</strong></span></p>
<div id="slide20" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 11</li>
<li><b>School/Team:</b> Duke</li>
<li><b>Position: </b>PF/C</li>
<li><b>Age: </b>20, Sophomore</li>
<li><b>Size: </b>7 feet, 248 lbs</li>
</ul>
<p>Kyle Filipowski has been more effective this year inside the arc (61.5%), using his strength and touch to finish more post-ups, rolls in traffic and putbacks. His passing has continued to pop as well and remains a selling point on the scouting report.</p>
<p>He hasn’t appeared to make a jump this year with his three-ball, which continues to look capable but unreliable.</p>
<p>The big question with Filipowski asks whether his perimeter game can translate, which is what can help separate him from other 7-footers and NBA bench players. Filipowski clearly has range and body control handling in the open floor or beating bigs off the arc in space. But his shot has been inconsistent, and a high center of gravity makes it difficult to picture him blowing by NBA defenders.</p>
<p>Regardless, in this draft, teams won’t nitpick too much when considering Filipowski’s size, skill level and NCAA impact/effectiveness.</p>
<p><span style="font-size: 18pt;"><strong>19. New York Knicks (via Mavs): Kel’el Ware</strong></span></p>
<div id="slide21" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 15</li>
<li><b>School/Team:</b> Indiana</li>
<li><b>Position:</b> C</li>
<li><b>Age:</b> 19, Sophomore</li>
<li><b>Size: </b>7 feet, 242 lbs</li>
<li><b>Pro Comparison: </b>Jarrett Allen</li>
</ul>
<p>Averaging 17.7 points and 9.6 boards, Kel’el Ware has handled almost every opposing frontcourt, giving them problems with his verticality, post game and touch.</p>
<p>He did struggle offensively in his only real test against Connecticut’s 280-pound center Donovan Clingan, who helped raise the importance that Ware continues to develop his shooting range to combat the stronger, interior-based centers.</p>
<p>But as long has he doesn’t drift during conference play, Ware’s combination of finishing, shot-blocking tools and shotmaking skill should prevent him from falling outside the top 20.</p>
<p><span style="font-size: 18pt;"><strong>20. Atlanta Hawks (via Kings): Dalton Knecht</strong></span></p>
<div id="slide22" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Up</li>
<li><b>Previous Mock Draft Spot: </b>No. 39</li>
<li><b>School/team: </b>Tennessee</li>
<li><b>Position:</b> SF</li>
<li><b>Age:</b> 22, Senior</li>
<li><b>Size: </b>6-foot-6, 204 lbs</li>
</ul>
<p>Scouts were buzzing about Dalton Knecht’s 37 points against North Carolina. They’ve already started to brainstorm about a pro comparison for the 6-foot-6″, 40.5% 3-point shooter who’s also showcased some extra wiggle attacking the basket and explosion in the open floor.</p>
<p>There may be some questions about how much of his scoring will translate to the next level. But in a draft where there aren’t as many enticing high-upside teenagers available, Knecht could start to look like a persuasive shotmaker and tough role player in the late first round.</p>
<p><span style="font-size: 18pt;"><strong>21. Indiana Pacers: Ajay Mitchell</strong></span></p>
<div id="slide23" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Up</li>
<li><b>Previous Mock Draft Spot: </b>Off the board</li>
<li><b>School/Team:</b> Santa Barbara</li>
<li><b>Position:</b> PG</li>
<li><b>Age: </b>21, Junior</li>
<li><b>Size: </b>6-foot-5, 190 lbs</li>
</ul>
<p>Averaging 23.3 points and 4.3 assists on <a href="https://www.sports-reference.com/cbb/players/ajay-mitchell-1.html" target="_blank" rel="noopener">72.3% true shooting</a>, Ajay Mitchell has been getting to his spots, finishing with signature craft/touch and using his gravity to set up teammates.</p>
<p>The NBA is seeing many point guards succeed without athletic advantages for scouts to write off this shifty ball-handler. Scouts will want to see Mitchell continue creating and efficiently converting inside the arc against more credible opponents. And his 5-for-10 start from three is still small for a career 30.6% 3-point shooter.</p>
<p>But Mitchell is currently carving up defenses with the type of change of speed, shiftiness, footwork, layup adjustments, IQ and shotmaking for scouts to start looking past questions about separation ability or shooting numbers.</p>
<p><span style="font-size: 18pt;"><strong>22. New Orleans Pelicans (via Lakers): Bobi Klintman</strong></span></p>
<div id="slide24" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 24</li>
<li><b>School/Team:</b> Cairns Taipans</li>
<li><b>Position:</b> SF/PF</li>
<li><b>Age:</b> 20</li>
<li><b>Size:</b> 6-foot-8, 225 lbs</li>
<li><b>Pro Comparison:</b> De’Andre Hunter</li>
</ul>
<p>Bobi Klintman’s minutes and production have fluctuated lately, though the highlights should still outweigh the inconsistency and keep the 6-foot-8 forward in the first-round discussion</p>
<p>The flashes of open-floor ball-handling and passing, shooting, drives into runners and athletic finishing create appealing potential versatility from both forward spots. While he looked more like a stretch 4 at Wake Forest, Klintman has done a better job selling himself this year as a Swiss Army knife combo.</p>
<p><span style="font-size: 18pt;"><strong>23. New York Knicks: Caleb Foster</strong></span></p>
<div id="slide25" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Up</li>
<li><b>Previous Mock Draft Spot: </b>Off the board</li>
<li><b>School/Team: </b>Duke</li>
<li><b>Position: </b>PG/SG</li>
<li><b>Age: </b>19</li>
<li><b>Size: </b>6-foot-5, 197 lbs</li>
</ul>
<p>Tyrese Proctor’s injury could open a door for Caleb Foster to receive more creation reps and ball screens. With just an 18.7% usage, the freshman has still given Duke an efficient source of bench offense in the form of rim pressure and three-level shotmaking.</p>
<p>He hasn’t been able to showcase any playmaking, though he’ll have a chance now if Proctor misses extended time.</p>
<p>Regardless, Foster’s signature function is scoring with decisive ball-handling and strength for driving, a mid-range game and spot-up shooting behind the arc.</p>
<p><span style="font-size: 18pt;"><strong>24. Philadelphia 76ers: Tyrese Proctor</strong></span></p>
<div id="slide26" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Down</li>
<li><b>Previous Mock Draft Spot: </b>No. 12</li>
<li><b>School/Team:</b> Duke</li>
<li><b>Position: </b>PG</li>
<li><b>Age:</b> 19, Sophomore</li>
<li><b>Size:</b> 6-foot-5, 183 lbs</li>
</ul>
<p>Tyrese Proctor has made some marginal improvement this year, mostly with his finishing off drives and playmaking IQ.</p>
<p>Underwhelming offensive games in highly scouted matchups against Arkansas (3-for-12), Michigan State (4-for-12) and Arizona (3-for-9) have mostly cast a cloud over his better two-point percentage and assist-to-turnover ratio. The bar was also higher coming in this season as a sophomore, so it’s been difficult to get too excited about his 10.3 points and 4.8 dimes on 32.4% shooting from deep.</p>
<p>And now he’s in jeopardy of missing an extended period of time with a leg injury.</p>
<p>Flashes of shotmaking versatility, self-creation into jumpers and playmaking will keep interest alive in a 6-foot-5, 19-year-old combo. But a lengthy absence after his start will make it tough for Proctor to win over more NBA teams.</p>
<p><span style="font-size: 18pt;"><strong>25. Denver Nuggets: D.J. Wagner</strong></span></p>
<div id="slide27" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 26</li>
<li><b>School/Team:</b> Kentucky</li>
<li><b>Position:</b> PG/SG</li>
<li><b>Age:</b> 18, Freshman</li>
<li><b>Size:</b> 6-foot-4, 192 lbs</li>
</ul>
<p>After a forgettable game in a highly scouted matchup against Kansas, D.J. Wagner bounced back the following week to combine for 50 points in wins over Marshall and Saint Joseph’s. An ankle injury suffered against Miami came at an unfortunate time, though it’s not expected to keep the freshman out long.</p>
<p>Wagner does have questions to answer, some about his shooting, others about his tools/athleticism for finishing, and more regarding his projected NBA role. Rob Dillingham has been the more effective playmaker and shotmaker in Kentucky’s backcourt, while Wagner has had more success putting pressure on the defense and rim with his driving.</p>
<p>Wagner is still likely a better shooter than the early numbers suggest, and despite missing practically every layup attempt against Kansas, he’s converting 61.5% of his attempts around the basket.</p>
<p>Aside from attacking off his signature quick-dribble moves, Wagner hasn’t looked highly proficient in any one area, which may make it difficult for lottery teams to fall in love, particularly for a prospect who doesn’t pop physically or athletically.</p>
<div id="slide28" class="organism contentStream slide">
<h2>26. Indiana Pacers (via Thunder): Baba Miller</h2>
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 22</li>
<li><b>School/Team:</b> Florida State</li>
<li><b>Position:</b> SF/PF</li>
<li><b>Age: </b>19, Sophomore</li>
<li><b>Size: </b>6-foot-11, 204 lbs</li>
</ul>
<p>With the idea of a potential breakout coming after Baba Miller’s promising World Cup, the lack of offense and aggression could be seen as a turnoff. But there have been clear signs of progression and elevated confidence, and Florida State’s production is historically spread out.</p>
<p>Shooting 42.9% from deep, Miller already has more threes in seven games than he hit in 15 last year. With his long strides and fluidity at 6-foot-11, he’s been effective attacking and finishing in the open floor, and his length and defensive activity have translated to 1.6 steals and 1.3 blocks in 23.0 minutes.</p>
<p><span style="font-size: 18pt;"><strong>27. Orlando Magic: Justin Edwards</strong></span></p>
<div id="slide29" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Down</li>
<li><b>Previous Mock Draft Spot: </b>No. 18</li>
<li><b>School/Team: </b>Kentucky</li>
<li><b>Position:</b> SF</li>
<li><b>Age: </b>19, Freshman</li>
<li><b>Size:</b> 6-foot-8, 203 lbs</li>
</ul>
<p>Justin Edwards has given Kentucky an efficient play-finisher, driving threat and capable spot-up shooter.</p>
<p>Scouts are still trying to determine what he’ll give an NBA team, however. A limited ball-handler who’s at 25.9% from three, averaging 1.0 assist per game, Edwards is starting to look like a vulnerable name on draft boards.</p>
<p>Becoming a plus shotmaker seems like a must to justify going in the lottery or even mid-first round. It’s still too early to write off more improvement. He’s made strides over the past year, also showing some ability to pull up inside the arc. A competent jumper would give Edwards enough spot-up scoring skills for a 6-foot-8 wing who can cover defensive ground.</p>
<p><strong><span style="font-size: 18pt;">28. Milwaukee Bucks: Tristan da Silva</span></strong></p>
<div id="slide30" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 29</li>
<li><b>School/Team:</b> Colorado</li>
<li><b>Position:</b> SF/PF</li>
<li><b>Age:</b> 22, Senior</li>
<li><b>Size:</b> 6-foot-9, 220 lbs</li>
</ul>
<p>While scouts may question how much of Tristan da Silva’s two-point scoring can translate, his shooting remains highly convincing. The 6-foot-9 forward is at 45.5% from three and 84.4% from the line.</p>
<p>Though he may struggle to blow by or separate around the basket, he uses off-ball movement to free himself up, and he remains a threat to make shots out of the post.</p>
<p><span style="font-size: 18pt;"><strong>29. Boston Celtics: Adem Bona</strong></span></p>
<div id="slide31" class="organism contentStream slide">
<div class="slideData">
<div class="atom articleLeadImage blurUp loaded">
<ul>
<li><b>Stock Status: </b>Down</li>
<li><b>Previous Mock Draft Spot: </b>No. 16</li>
<li><b>School/Team: </b>UCLA</li>
<li><b>Position: </b>C</li>
<li><b>Age: </b>20, Sophomore</li>
<li><b>Size:</b> 6-foot-10, 245 lbs</li>
</ul>
<p>Adem Bona’s scoring rate is up this year, mostly because he looks more polished and in command playing with his back to the basket.</p>
<p>Still, NBA teams will only be banking on his athleticism for play-finishing and shot-blocking. The question is whether he can create enough of a defensive impact in rim protection (at 6-foot-10 with fouling issues) to offset his lack of creating, shooting or passing.</p>
<p><span style="font-size: 18pt;"><strong>30. Minnesota Timberwolves: Tidjane Salaun</strong></span></p>
<div id="slide32" class="organism contentStream slide">
<div class="slideData">
<div class="youtubeEmbed molecule">
<div class="iframe atom">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 31</li>
<li><b>School/Team:</b> Cholet</li>
<li><b>Position:</b> PF</li>
<li><b>Age:</b> 18</li>
<li><b>Size:</b> 6-foot-8, 212 lbs</li>
</ul>
<p>Though Tidjane Salaun has been struggling in Pro A, at 18 years old with an exciting mix of size, athleticism and shotmaking, NBA teams will put more stock into flashes than consistency or overall production. And he delivered some serious flashes on Tuesday with five 3-point makes to score 24 points for Cholet.</p>
<p>He’s still more of an idea at this point, as he’s shooting just 29.5% in Pro A. But the thought of an explosive 6-foot-8 forward with a jumper may be enough to draw first-round interest from teams willing to gamble on upside.</p>
<hr>
<p><span style="font-size: 18pt;"><strong>31. New York Knicks (via Pistons): Tyler Smith</strong></span></p>
<div id="slide33" class="organism contentStream slide">
<div class="slideData">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 32</li>
<li><b>School/Team:</b> G League Ignite</li>
<li><b>Position:</b> SF/PF</li>
<li><b>Age:</b> 19</li>
<li><b>Size:</b> 6-foot-11, 224 lbs</li>
</ul>
<p>For a big, Tyler Smith’s shooting has earned him mentions in the first-round conversation. He’s also cooled off lately, and the rest of his game is mostly physical tools-dependent.</p>
<p>The combination of shooting and finishing should be enough for him to find a spot in the league. Encouraging passing flashes should create more margin for error as well. But he’s not a high-level rim protector, and he doesn’t project as a big who’ll be putting the ball down often.</p>
<p>He’ll sell teams on his jump shot and stretch-4 potential. As long as he gets back on track from behind the arc, where he’s at 42.4% despite missing 12 of his last 14 attempts, Smith could be in play for teams in the 20s.</p>
<p><span style="font-size: 18pt;"><strong>32. Detroit Pistons (via Wizards): Oso Ighodaro</strong></span></p>
<div id="slide34" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 34</li>
<li><b>School/Team:</b> Marquette</li>
<li><b>Position:</b> C</li>
<li><b>Age:</b> 21, Senior</li>
<li><b>Size:</b> 6-foot-11, 235 lbs</li>
</ul>
<p>NBA teams interested in Oso Ighodaro will be drawn to his ability to give the lineup a unique look with his ball-handling and passing from the center position. He’s different for his ability to act as a 5 who offense can run through from the foul line or top of the key.</p>
<p>There doesn’t appear to be big scoring or defensive upside, but his push/touch shots around the key should be effective, and his size and mobility should still translate to off-ball shot-blocking.</p>
<p><span style="font-size: 18pt;"><strong>33. San Antonio Spurs: Wooga Poplar</strong></span></p>
<div id="slide35" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 37</li>
<li><b>School/Team:</b> Miami</li>
<li><b>Position:</b> SG</li>
<li><b>Age: </b>20, Junior</li>
<li><b>Size:</b> 6-foot-5, 197 lbs</li>
</ul>
<p>Scouts have started to pick up on Wooga Poplar’s improvement this year with his shooting and overall shotmaking versatility.</p>
<p>Though non-playmaking guards have limited margin for error, his explosiveness, pull-up game (12-for-25) and spot-up threes (11-for-21) suddenly point to some enticing scoring potential.</p>
<p>Consistent athletic defensive plays should continue to help scouts look past the limited creation.</p>
<p><span style="font-size: 18pt;"><strong>34. Minnesota Timberwolves (via Grizzlies): Kylan Boswell</strong></span></p>
<div id="slide36" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 23</li>
<li><b>School/Team:</b> Arizona</li>
<li><b>Position:</b> PG</li>
<li><b>Age:</b> 18, Sophomore</li>
<li><b>Size:</b> 6-foot-2, 195 lbs</li>
</ul>
<p>Kylan Boswell has showcased high-level connector skills with his 54.3% 3-point shooting and passing IQ.</p>
<p>He just doesn’t put much pressure on the rim, as he’s converted one driving layup and attempted six free throws in seven games.</p>
<p>However, NBA teams may still picture a reserve combo who can add value with his transition playmaking, shotmaking, decision-making and strength/low center of gravity defending ball-handlers.</p>
<p><span style="font-size: 18pt;"><strong>35. Milwaukee Bucks (via Blazers): Yves Missi</strong></span></p>
<div id="slide37" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 41</li>
<li><b>School/Team:</b> Baylor</li>
<li><b>Position:</b> C</li>
<li><b>Age:</b> 19, Freshman</li>
<li><b>Size:</b> 7 feet, 235 lbs</li>
</ul>
<p>Shooting 61.4% with a 19.8 rebounding percentage and 13.0 block percentage, Yves Missi has optimized his physical tools and athleticism around the basket.</p>
<p>There isn’t anything sexy or versatile about his game, but easy-basket targets and rim protectors like the Baylor player are still coveted by teams looking for frontcourt depth.</p>
<p><span style="font-size: 18pt;"><strong>36. Boston Celtics (via Bucks): Izan Almansa</strong></span></p>
<div id="slide38" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Down</li>
<li><b>Previous Mock Draft Spot: </b>No. 19</li>
<li><b>School/Team: </b>G League Ignite</li>
<li><b>Position: </b>PF</li>
<li><b>Age: </b>18</li>
<li><b>Size: </b>6-foot-10, 216 lbs</li>
</ul>
<p>The draw to Izan Almansa stems from his instincts and hands for play-finishing off the ball and rebounding. Occasionally, he surprises with some open-floor ball-handling, drives past closeouts and threes.</p>
<p>The fear with Almansa is that he doesn’t have any go-to method for scoring, which we’re seeing in the G League. He’s not making jumpers, and a lack of face-up game and athleticism limit him.</p>
<p>Almansa is ultimately the type of big who’ll make plays without needing any called for him. And at 18 years old, he has time to improve his shot and slim down to become a bit quicker off the bounce and floor.</p>
<div id="slide39" class="organism contentStream slide">
<p><strong><span style="font-size: 18pt;">37. Portland Trail Blazers (via Hornets): KJ Lewis</span></strong></p>
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 28</li>
<li><b>School/Team:</b> Arizona</li>
<li><b>Position:</b> SG</li>
<li><b>Age:</b> 19, Freshman</li>
<li><b>Size:</b> 6-foot-4, 205 lbs</li>
</ul>
<p>It may be premature to project KJ Lewis to the 2024 draft, but with Arizona No. 1 in the AP poll, the national spotlight seems bound to start illuminating his athleticism, defense, passing and impact.</p>
<p>Starting to make threes would really jump-start the hype, but he doesn’t project as a player who’ll be valued for scoring. So, while the lack of creation, shotmaking and production does suggest limited upside, it shouldn’t kill NBA interest.</p>
<p>With quickness, strength and energy, Lewis leads the Wildcats’ rotation in <a href="https://www.sports-reference.com/cbb/schools/arizona/men/2024.html" target="_blank" rel="noopener">defensive box plus-minus</a> while adding play-finishing and ball-moving.</p>
<div id="slide40" class="organism contentStream slide">
<p><strong><span style="font-size: 18pt;">38. New York Knicks (via Jazz): Trey Alexander</span></strong></p>
<ul>
<li><b>Stock Status: </b>Down</li>
<li><b>Previous Mock Draft Spot: </b>No. 21</li>
<li><b>School/Team: </b>Creighton</li>
<li><b>Position:</b> SG</li>
<li><b>Age: </b>20, Junior</li>
<li><b>Size:</b> 6-foot-4, 190 lbs</li>
</ul>
<p>Ironically, the area where Trey Alexander has struggled most this year is what NBA teams should feel most confident in. He’s been off so far from three, but last year’s season and his shooting versatility still point to promising shotmaking potential.</p>
<p>The increase in assist rate this year has been promising, as teams wanted to see more on-ball creation. There are just questions how effective he’ll be blowing by or separating against NBA defenders.</p>
<div id="slide41" class="organism contentStream slide">
<p><strong><span style="font-size: 18pt;">39. LA Clippers (via Raptors): Hunter Sallis</span></strong></p>
<ul>
<li><b>Stock Status: </b>Up</li>
<li><b>Previous Mock Draft Spot: </b>No. 54</li>
<li><b>School/Team:</b> Wake Forest</li>
<li><b>Position:</b> SG</li>
<li><b>Age:</b> 21, Junior</li>
<li><b>Size: </b>6-foot-5, 185 lbs</li>
</ul>
<p>Scouts should start to take Hunter Sallis seriously if he carries November’s flashes of creation, three-level shotmaking and athletic finishing into conference play.</p>
<p>They’ve seemingly come out of nowhere, given his limited role at Gonzaga the past two seasons. But he is now averaging 19.1 points, shooting 54.5% inside the arc and 44.2% from three.</p>
<p><strong><span style="font-size: 18pt;">40. Houston Rockets (via Warriors): Kobe Johnson</span></strong></p>
<div id="slide42" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 48</li>
<li><b>School/Team:</b> USC</li>
<li><b>Position:</b> SG/SF</li>
<li><b>Age:</b> 20, Junior</li>
<li><b>Size:</b> 6-foot-6, 200 lbs</li>
</ul>
<p>Kobe Johnson continues to give off NBA role-player vibes with his passing, defense and improved shotmaking. Showing he can make threes was a key entering the season, and so far he’s hitting a respectable 1.7 per game.</p>
<p>Regardless, athleticism, instincts and positional tools will remain the key draws to Johnson, who isn’t the highest level creator, scorer or shooter.</p>
<p><span style="font-size: 18pt;"><strong>41. Oklahoma City Thunder (via Rockets): Melvin Ajinca</strong></span></p>
<div id="slide43" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 40</li>
<li><b>School/Team: </b>Saint-Quentin</li>
<li><b>Position</b>: SG/SF</li>
<li><b>Age: </b>19</li>
<li><b>Size: </b>6-foot-7</li>
</ul>
<p>Mevlin Ajinca just had his best game of the year on Monday, hitting four-of-five threes and bringing us back to the shotmaking clinic he put on at the U19 World Cup.</p>
<p>He hasn’t showcased too much outside of shooting this season, but when it’s paired with a strong 6’7″ frame at 19 years old, teams could picture a high floor that has room to rise.</p>
<p><span style="font-size: 18pt;"><strong>42. Los Angeles Lakers (via Clippers): Alex Karaban</strong></span></p>
<div id="slide44" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 45</li>
<li><b>School/Team:</b> Connecticut</li>
<li><b>Position:</b> PF</li>
<li><b>Age:</b> 21, Sophomore</li>
<li><b>Size: </b>6-foot-8, 220 lbs</li>
</ul>
<p>A recent cold streak has brought down Alex Karaban’s 3-point percentage, but the eye test sees a legit shooter and bonus versatility tied to his passing, floater touch and defensive foot speed.</p>
<p>Teams more interested in finding the right fit than upside could target him as a rotational stretch 4.</p>
<p><span style="font-size: 18pt;"><strong>43. Portland Trail Blazers (via Hawks): Tyler Kolek</strong></span></p>
<div id="slide45" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 49</li>
<li><b>School/Team:</b> Marquette</li>
<li><b>Position:</b> PG</li>
<li><b>Age:</b> 22, Junior</li>
<li><b>Size: </b>6-foot-3, 195 lbs</li>
</ul>
<p>There isn’t any mystery of Tyler Kolek’s strengths, weaknesses or projected NBA role. He’s highly advanced in ball-screen situations with his pace and playmaking feel. And the ability to catch-and-shoot (10-of-18) creates some versatility for him to slide off the ball and stretch the floor.</p>
<p>On the other hand, he struggles to blow by without a screen, and he continues to struggle shooting off the dribble.</p>
<p>Kolek should still get looks from teams who could use an extra pick-and-roll ball-handler with some shotmaking appeal.</p>
<p><span style="font-size: 18pt;"><strong>44. Houston Rockets (via Nets): Aday Mara</strong></span></p>
<div id="slide46" class="organism contentStream slide">
<ul>
<li><b>Stock Status: Down</b></li>
<li><b>Previous Mock Draft Spot: </b>No 20</li>
<li><b>School/Team:</b> UCLA</li>
<li><b>Position:</b> C</li>
<li><b>Age:</b> 18, Freshman</li>
<li><b>Size:</b> 7-foot-3, 240 lbs</li>
</ul>
<p>Aday Mara remains appealing for his size, touch around the key, post skill and shot-blocking tools. But coach Mick Cronin played him six minutes against Maquette, and he picked up three fouls in three minutes against Gonzaga.</p>
<p>Slow feet and an old-school game won’t help teams picture too much upside. He’s starting to look more like an appealing second-round pick who could give a team some more interior help, passing from the center position and a secondary scoring option in the mid-to-short range.</p>
<p><span style="font-size: 18pt;"><strong>45. New Orleans Pelicans: Judah Mintz</strong></span></p>
<div id="slide47" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 43</li>
<li><b>School/Team: </b>Syracuse</li>
<li><b>Position</b>: PG/SG</li>
<li><b>Age: </b>20, Sophomore</li>
<li><b>Size: </b>6-foot-4, 185 lbs</li>
</ul>
<p>For the most part, the scouting report on Judah Mintz has remained the same, as he’s at his best attacking the rim or using ball screens and gravity to set up teammates.</p>
<p>But he’s coming off a career-best five made threes against Cornell, raising his mark to 46.7%. More volume shooting and shotmaking will make it easier for scouts to picture a pro.</p>
<p>Mintz still relies heavily on penetrating and drawing fouls (8.1 FTA per game), which may generate mixed reactions.</p>
<p><span style="font-size: 18pt;"><strong>46. LA Clippers (via Cavs): Trentyn Flowers</strong></span></p>
<div id="slide48" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 44</li>
<li><b>School/Team:</b> Adelaide 36ers</li>
<li><b>Position:</b> SG</li>
<li><b>Age:</b> 18</li>
<li><b>Size: </b>6-foot-8, 205 lbs</li>
</ul>
<p>The NBL game has slowed down for Trentyn Flowers, as he’s now at 46.5% from the floor and 43.5% from three on the season.</p>
<p>The point guard experiment didn’t go well, but his shooting stroke is highly convincing, and that combination of 6-foot-8 size, shotmaking and athleticism doesn’t require high-level creation or decision-making for an off-ball scoring role.</p>
<p><span style="font-size: 18pt;"><strong>47. Miami Heat: Aaron Bradshaw</strong></span></p>
<div id="slide49" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Down</li>
<li><b>Previous Mock Draft Spot: </b>No 30</li>
<li><b>School/Team: </b>Kentucky</li>
<li><b>Position</b>: C</li>
<li><b>Age: </b>19, Freshman</li>
<li><b>Size: </b>7-foot-1, 226 lbs</li>
</ul>
<p>Back from a foot injury, Aaron Bradshaw made his debut during Kentucky’s loss to UNC Wilmington. He wasn’t involved much in 13 minutes, and scouts will need time to fairly assess the big man’s rim protection, switchability, shooting and feel.</p>
<p>Ideally, he is able to showcase some of the shotmaking he’s added to his bag over the years while making Kentucky tougher defensively.</p>
<p>At first glance, though, he didn’t move super gracefully or quickly. And given the Wildcats’ guard-heavy rotation, it’s difficult to picture Bradshaw having much freedom to make plays outside the paint.</p>
<p><span style="font-size: 18pt;"><strong>48. Washington Wizards (via Suns): Riley Kugel</strong></span></p>
<div id="slide50" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Down</li>
<li><b>Previous Mock Draft Spot: </b>No. 38</li>
<li><b>School/Team:</b> Florida</li>
<li><b>Position:</b> SG</li>
<li><b>Age: </b>19, Sophomore</li>
<li><b>Size:</b> 6-foot-5, 207 lbs</li>
</ul>
<p>After shooting just 36.2% through five games, Riley Kugel bounced back with 49 points on 8-for-12 shooting from three in losses to Wake Forest and Baylor.</p>
<p>Shotmaking consistency and decision-making will be key for his draft stock, as it’s unlikely he’ll offer much outside of scoring. But there can be some tempting potential tied to his slashing athleticism, self-creation and dribble-jumper game.</p>
<p><span style="font-size: 18pt;"><strong>49. Indiana Pacers: Dillon Jones</strong></span></p>
<div id="slide51" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 46</li>
<li><b>School/Team:</b> Weber State</li>
<li><b>Position:</b> SG/SF</li>
<li><b>Age:</b> 22, Junior</li>
<li><b>Size:</b> 6-foot-6, 235 lbs</li>
</ul>
<p>While some NBA teams may question Dillon Jones’ position and fit, one is bound to think out of the box and gamble on unique versatility.</p>
<p>Consistently a ball-handling threat, a plus passer, double-digit rebounder and excellent free-throw shooter, he has also started 6-of-15 from three.</p>
<p>The obvious question asks whether he’s effective enough to use on the ball, and if he’ll have the skill set to play off it on the wing.</p>
<p><span style="font-size: 18pt;"><strong>50. Sacramento Kings: Reece Beekman</strong></span></p>
<div id="slide52" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 52</li>
<li><b>School/Team:</b> Virginia</li>
<li><b>Position:</b> PG</li>
<li><b>Age:</b> 22, Senior</li>
<li><b>Size:</b> 6-foot-3, 194 lbs</li>
</ul>
<p>Moving up boards will be difficult for Reece Beekman without him showing any noticeable improvement as a shooter.</p>
<p>He could be a popular second-round target from teams that see a serviceable bench guard who’ll add value with defensive ball pressure and the ability to run offense and pass.</p>
<p><span style="font-size: 18pt;"><strong>51. Boston Celtics (via Mavs): Zvonimir Ivisic</strong></span></p>
<div id="slide53" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Down</li>
<li><b>Previous Mock Draft Spot: </b>No. 35</li>
<li><b>School/Team:</b> Kentucky</li>
<li><b>Position:</b> PF/C</li>
<li><b>Age:</b> 20, Freshman</li>
<li><b>Size:</b> 7-foot-2, 234 lbs</li>
</ul>
<p>Scouts and Kentucky are still waiting on the debut of Zvonimir Ivišić, who’s missed time due to sickness after eligibility issues initially caused a delay. The fact that he came out for pregame warmups over the weekend was seen as a positive sign.</p>
<p>There has been a buildup of anticipation after he averaged 11.4 points, 3.4 blocks and 1.6 threes for Croatia at the U20 European Championship. At 7-foot-2, his flashes of open-floor ball-handling, drives from the arc and shooting point to enticing upside.</p>
<p>Scouts just want a better feel for how realistic it is, and how legitimate his range, defensive mobility and feel for the game are.</p>
<p><span style="font-size: 18pt;"><strong>52. San Antonio Spurs (via Lakers): Zach Edey</strong></span></p>
<div id="slide54" class="organism contentStream slide">
<div class="imgWrapper">
<ul>
<li><b>Stock Status: </b>Up</li>
<li><b>Previous Mock Draft Spot: </b>No. 57</li>
<li><b>School/Team:</b> Purdue</li>
<li><b>Position:</b> C</li>
<li><b>Age:</b> 21, Senior</li>
<li><b>Size:</b> 7-foot-4, 300lbs</li>
</ul>
<p>Averaging 25.6 points and 11.7 boards over Purdue’s last seven games, Zach Edey has become dominant enough with his size, touch and footwork for teams to see a worthwhile second-round game.</p>
<p>Making 73.3% of his free-throws should be considered a key plus as well. And he’s blocking a career-best 10.5% of his opponents’ shots.</p>
<p><span style="font-size: 18pt;"><strong>53. Philadelphia 76ers (via Knicks): Matthew Cleveland</strong></span></p>
<div id="slide55" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 42</li>
<li><b>School/Team:</b> Miami</li>
<li><b>Position:</b> SF</li>
<li><b>Age:</b> 21, Junior</li>
<li><b>Size: </b>6-foot-7, 208 lbs</li>
</ul>
<p>Shooting will always be Matthew Cleveland’s key swing skill, given his lack of self-creation and playmaking. Now 8-for-17 from three, he’s off to the best start of his career while continuing to produce off athletic plays, instincts and mid-range shotmaking (70.5% 2PT).</p>
<p><span style="font-size: 18pt;"><strong>54. Houston Rockets (via Thunder): Nikola Djurisic</strong></span></p>
<div id="slide56" class="organism contentStream slide">
<ul>
<li><b>Stock Status:</b> Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 50</li>
<li><b>School/Team:</b> Mega MIS</li>
<li><b>Position:</b> SG/SF</li>
<li><b>Age:</b> 19</li>
<li><b>Size:</b> 6-foot-7, 214 lbs</li>
</ul>
<p>Nikola Djurisic is still struggling with shooting consistency, but there aren’t any questions about his shotmaking capability. And he’s still providing impressive playmaking ability that helps separate him from other 6-foot-8 wings.</p>
<p>Though it would be difficult to draw first-round interest after another season shooting below 30.0% from three, a 19-year-old with potential shoot-dribble-pass connector skills should still seem like an appealing second-round gamble.</p>
<p><span style="font-size: 18pt;"><strong>55. Orlando Magic: Harrison Ingram</strong></span></p>
<div id="slide57" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Up</li>
<li><b>Previous Mock Draft Spot: </b>Off the board</li>
<li><b>School/Team:</b> North Carolina</li>
<li><b>Position:</b> SF</li>
<li><b>Age:</b> 21, Junior</li>
<li><b>Size:</b> 6-foot-7, 235lbs</li>
</ul>
<p>After two years underachieving at Stanford, Harrison Ingram is shooting 48.5% with North Carolina, making 2.1 threes at a 46.3% clip.</p>
<p>Versatility was always the main draw to the wide-framed Ingram, who could handle in pick-and-rolls and play-make with power forward size.</p>
<p>A consistent shot, which he hasn’t shown until now, could be enough to give him connector potential for the next level.</p>
<p><span style="font-size: 18pt;"><strong>56. Indiana Pacers (via Bucks): Dillon Mitchell</strong></span></p>
<div id="slide58" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 55</li>
<li><b>School/Team: </b>Texas</li>
<li><b>Position: </b>PF</li>
<li><b>Age: </b>20, Sophomore</li>
<li><b>Size: </b>6-foot-8, 205 lbs</li>
</ul>
<p>Dillon Mitchell still can’t shoot, but it’s worth thinking about his athleticism and activity for finishing, putbacks and defensive playmaking.</p>
<p>The flashes of mid-range or post shot-making can also be tempting, but any NBA role would strictly value his ability to make plays from off the ball.</p>
<p><span style="font-size: 18pt;"><strong>57. Charlotte Hornets (vua Bucks): Pacome Dadiet</strong></span></p>
<div id="slide59" class="organism contentStream slide">
<ul>
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>Off the board</li>
<li><b>School/Team: </b>Ratiopharm Ulm</li>
<li><b>Position: </b>SF</li>
<li><b>Age: </b>18</li>
<li><b>Size: </b>6-foot-6, 187lbs</li>
</ul>
<p>Teams looking for late draft-and-stash or sleeper options will highlight Pacome Dadiet, a 6-foot-8 wing who’s combined to shoot 36.6% from three.</p>
<p>He’s been scouted at FIBA and Basketball Without Borders before this season, and despite his limited role in the German BBL and EuroCup, flashes of finishing, defensive movement and shotmaking potential could entice a team in the second round.</p>
<p><span style="font-size: 18pt;"><strong>58. Denver Nuggets (via Timberwolves): Antonio Reeves</strong></span></p>
<div id="slide60" class="organism contentStream slide">
<ul class="atom bulletedList">
<li><b>Stock Status: </b>Steady</li>
<li><b>Previous Mock Draft Spot: </b>No. 56</li>
<li><b>School/Team:</b> Kentucky</li>
<li><b>Position:</b> SG</li>
<li><b>Age:</b> 23, Senior</li>
<li><b>Size:</b> 6-foot-6, 195 lbs</li>
</ul>
<p>Averaging 18.3 points on 44.2% from three, Antonio Reeves could sell a team on his 6-foot-6 size, scoring instincts and shotmaking.</p>
<p>Being a 23-year-old non-passer shouldn’t matter too much in the 50s for a front office that sees a potential a guard with enough size and shooting ability to continue putting the ball in the hoop.</p>
<p>* * *</p>
<p><em>Jonathan Wasserman is the lead scout and NBA Draft analyst for Bleacher Report. You can follow him on <a href="https://twitter.com/NBADraftWass">X, formerly known as Twitter</a>.</em><em>The views on this page do not necessarily reflect the views of the NBA, its clubs or Warner Brothers Discovery.</em></p>
<p><i>Stats courtesy of <a href="http://www.synergysports.com/" target="_blank" rel="noopener">Synergy Sports</a> and <a href="http://www.sports-reference.com/" target="_blank" rel="noopener">Sports Reference.</a></i></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>