-
Notifications
You must be signed in to change notification settings - Fork 0
/
401403947.html
1088 lines (819 loc) · 318 KB
/
401403947.html
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 class="no-icon-fonts" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="x-ua-compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="referrer" content="origin-when-cross-origin">
<link rel="canonical" href="https://www.espn.com/college-football/game/_/gameId/401403947" />
<title>Ole Miss vs. Arkansas - Game Summary - November 19, 2022 - ESPN</title>
<meta name="description" content="Get a summary of the Ole Miss Rebels vs. Arkansas Razorbacks football game." />
<link rel="manifest" href="/manifest.json">
<meta property="fb:app_id" content="116656161708917" />
<meta property="og:site_name" content="ESPN.com" />
<meta property="og:url" content="https://www.espn.com/college-football/game/_/gameId/401403947" />
<meta property="og:title" content="Ole Miss vs. Arkansas - Game Summary - November 19, 2022 - ESPN"/>
<meta property="og:description" content="Get a summary of the Ole Miss Rebels vs. Arkansas Razorbacks football game." />
<meta property="og:image" content="https://s.espncdn.com/stitcher/sports/football/college-football/events/401403947.png?templateId=espn.com.share.1"/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:type" content="website" />
<meta name="twitter:site" content="espn" />
<meta name="twitter:url" content="https://www.espn.com/college-football/game/_/gameId/401403947" />
<meta name="twitter:title" content="Ole Miss vs. Arkansas - Game Summary - November 19, 2022 - ESPN"/>
<meta name="twitter:description" content="Get a summary of the Ole Miss Rebels vs. Arkansas Razorbacks football game." />
<meta name="twitter:card" content="summary">
<meta name="twitter:app:name:iphone" content="ESPN"/>
<meta name="twitter:app:id:iphone" content="317469184"/>
<meta name="twitter:app:name:googleplay" content="ESPN"/>
<meta name="twitter:app:id:googleplay" content="com.espn.score_center"/>
<meta name="title" content="Ole Miss vs. Arkansas - Game Summary - November 19, 2022 - ESPN"/>
<meta name="medium" content="website" />
<!-- Indicate preferred brand name for Google to display -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "ESPN",
"url": "https://www.espn.com/"
}
</script>
<!--
<PageMap>
<DataObject type="document">
<Attribute name="title">Ole Miss vs. Arkansas - Game Summary - November 19, 2022</Attribute>
</DataObject>
<DataObject type="thumbnail">
<Attribute name="src" value="https://s.espncdn.com/stitcher/sports/football/college-football/events/401403947.png?templateId=espn.com.share.1" />
<Attribute name="width" value="1200" />
<Attribute name="height" value="630" />
</DataObject>
</PageMap>
-->
<script type="text/javascript" src="https://dcf.espn.com/TWDC-DTCI/prod/Bootstrap.js"></script>
<link rel="alternate" hreflang="nl-nl" href="https://www.espn.nl/college-football/game/_/wedstrijdId/401403947" />
<link rel="alternate" hreflang="en-us" href="https://www.espn.com/college-football/game/_/gameId/401403947" />
<link rel="alternate" hreflang="en-in" href="https://www.espn.in/college-football/game/_/gameId/401403947" />
<link rel="alternate" hreflang="en-au" href="https://www.espn.com.au/college-football/game/_/gameId/401403947" />
<link rel="alternate" hreflang="en-sg" href="https://www.espn.com.sg/college-football/game/_/gameId/401403947" />
<link rel="alternate" hreflang="en-za" href="https://africa.espn.com/college-football/game/_/gameId/401403947" />
<link rel="alternate" hreflang="en-ph" href="https://www.espn.ph/college-football/game/_/gameId/401403947" />
<link rel="alternate" hreflang="en-gb" href="https://www.espn.co.uk/college-football/game/_/gameId/401403947" />
<script type="text/javascript">
;(function(){
function rc(a){for(var b=a+"=",c=document.cookie.split(";"),d=0;d<c.length;d++){for(var e=c[d];" "===e.charAt(0);)e=e.substring(1,e.length);if(0===e.indexOf(b))return e.substring(b.length,e.length)}return null}var _nr=!1,_nrCookie=rc("_nr");null!==_nrCookie?"1"===_nrCookie&&(_nr=!0):Math.floor(100*Math.random())+1===13?(_nr=!0,document.cookie="_nr=1; path=/"):(_nr=!1,document.cookie="_nr=0; path=/");_nr&&(function(){window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{s.console&&console.log(t)}catch(e){}}var o,i=t("ee"),a=t(23),s={};try{o=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(s.console=!0,o.indexOf("dev")!==-1&&(s.dev=!0),o.indexOf("nr_dev")!==-1&&(s.nrDev=!0))}catch(c){}s.nrDev&&i.on("internal-error",function(t){r(t.stack)}),s.dev&&i.on("fn-err",function(t,e,n){r(n.stack)}),s.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(s,function(t,e){return t}).join(", ")))},{}],2:[function(t,e,n){function r(t,e,n,r,s){try{p?p-=1:o(s||new UncaughtException(t,e,n),!0)}catch(f){try{i("ierr",[f,c.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function o(t,e){var n=e?null:c.now();i("err",[t,n])}var i=t("handle"),a=t(24),s=t("ee"),c=t("loader"),f=t("gos"),u=window.onerror,d=!1,l="nr@seenError",p=0;c.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(h){"stack"in h&&(t(13),t(12),"addEventListener"in window&&t(6),c.xhrWrappable&&t(14),d=!0)}s.on("fn-start",function(t,e,n){d&&(p+=1)}),s.on("fn-err",function(t,e,n){d&&!n[l]&&(f(n,l,function(){return!0}),this.thrown=!0,o(n))}),s.on("fn-end",function(){d&&!this.thrown&&p>0&&(p-=1)}),s.on("internal-error",function(t){i("ierr",[t,c.now(),!0])})},{}],3:[function(t,e,n){t("loader").features.ins=!0},{}],4:[function(t,e,n){function r(){M++,j=y.hash,this[u]=x.now()}function o(){M--,y.hash!==j&&i(0,!0);var t=x.now();this[h]=~~this[h]+t-this[u],this[d]=t}function i(t,e){E.emit("newURL",[""+y,e])}function a(t,e){t.on(e,function(){this[e]=x.now()})}var s="-start",c="-end",f="-body",u="fn"+s,d="fn"+c,l="cb"+s,p="cb"+c,h="jsTime",m="fetch",v="addEventListener",w=window,y=w.location,x=t("loader");if(w[v]&&x.xhrWrappable){var g=t(10),b=t(11),E=t(8),R=t(6),O=t(13),C=t(7),P=t(14),T=t(9),L=t("ee"),S=L.get("tracer");t(16),x.features.spa=!0;var j,M=0;L.on(u,r),L.on(l,r),L.on(d,o),L.on(p,o),L.buffer([u,d,"xhr-done","xhr-resolved"]),R.buffer([u]),O.buffer(["setTimeout"+c,"clearTimeout"+s,u]),P.buffer([u,"new-xhr","send-xhr"+s]),C.buffer([m+s,m+"-done",m+f+s,m+f+c]),E.buffer(["newURL"]),g.buffer([u]),b.buffer(["propagate",l,p,"executor-err","resolve"+s]),S.buffer([u,"no-"+u]),T.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"]),a(P,"send-xhr"+s),a(L,"xhr-resolved"),a(L,"xhr-done"),a(C,m+s),a(C,m+"-done"),a(T,"new-jsonp"),a(T,"jsonp-end"),a(T,"cb-start"),E.on("pushState-end",i),E.on("replaceState-end",i),w[v]("hashchange",i,!0),w[v]("load",i,!0),w[v]("popstate",function(){i(0,M>1)},!0)}},{}],5:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var o=t("ee"),i=t("handle"),a=t(13),s=t(12),c="learResourceTimings",f="addEventListener",u="resourcetimingbufferfull",d="bstResource",l="resource",p="-start",h="-end",m="fn"+p,v="fn"+h,w="bstTimer",y="pushState",x=t("loader");x.features.stn=!0,t(8);var g=NREUM.o.EV;o.on(m,function(t,e){var n=t[0];n instanceof g&&(this.bstStart=x.now())}),o.on(v,function(t,e){var n=t[0];n instanceof g&&i("bst",[n,e,this.bstStart,x.now()])}),a.on(m,function(t,e,n){this.bstStart=x.now(),this.bstType=n}),a.on(v,function(t,e){i(w,[e,this.bstStart,x.now(),this.bstType])}),s.on(m,function(){this.bstStart=x.now()}),s.on(v,function(t,e){i(w,[e,this.bstStart,x.now(),"requestAnimationFrame"])}),o.on(y+p,function(t){this.time=x.now(),this.startPath=location.pathname+location.hash}),o.on(y+h,function(t){i("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance["c"+c]?window.performance[f](u,function(t){i(d,[window.performance.getEntriesByType(l)]),window.performance["c"+c]()},!1):window.performance[f]("webkit"+u,function(t){i(d,[window.performance.getEntriesByType(l)]),window.performance["webkitC"+c]()},!1)),document[f]("scroll",r,{passive:!0}),document[f]("keypress",r,!1),document[f]("click",r,!1)}},{}],6:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&o(e)}function o(t){s.inPlace(t,[u,d],"-",i)}function i(t,e){return t[1]}var a=t("ee").get("events"),s=t(26)(a,!0),c=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";e.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t,e){var n=t[1],r=c(n,"nr@wrapped",function(){function t(){if("function"==typeof n.handleEvent)return n.handleEvent.apply(n,arguments)}var e={object:t,"function":n}[typeof n];return e?s(e,"fn-",null,e.name||"anonymous"):n});this.wrapped=t[1]=r}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],7:[function(t,e,n){function r(t,e,n){var r=t[e];"function"==typeof r&&(t[e]=function(){var t=r.apply(this,arguments);return o.emit(n+"start",arguments,t),t.then(function(e){return o.emit(n+"end",[null,e],t),e},function(e){throw o.emit(n+"end",[e],t),e})})}var o=t("ee").get("fetch"),i=t(23);e.exports=o;var a=window,s="fetch-",c=s+"body-",f=["arrayBuffer","blob","json","text","formData"],u=a.Request,d=a.Response,l=a.fetch,p="prototype";u&&d&&l&&(i(f,function(t,e){r(u[p],e,c),r(d[p],e,c)}),r(a,"fetch",s),o.on(s+"end",function(t,e){var n=this;if(e){var r=e.headers.get("content-length");null!==r&&(n.rxSize=r),o.emit(s+"done",[null,e],n)}else o.emit(s+"done",[t],n)}))},{}],8:[function(t,e,n){var r=t("ee").get("history"),o=t(26)(r);e.exports=r,o.inPlace(window.history,["pushState","replaceState"],"-")},{}],9:[function(t,e,n){function r(t){function e(){c.emit("jsonp-end",[],l),t.removeEventListener("load",e,!1),t.removeEventListener("error",n,!1)}function n(){c.emit("jsonp-error",[],l),c.emit("jsonp-end",[],l),t.removeEventListener("load",e,!1),t.removeEventListener("error",n,!1)}var r=t&&"string"==typeof t.nodeName&&"script"===t.nodeName.toLowerCase();if(r){var o="function"==typeof t.addEventListener;if(o){var a=i(t.src);if(a){var u=s(a),d="function"==typeof u.parent[u.key];if(d){var l={};f.inPlace(u.parent,[u.key],"cb-",l),t.addEventListener("load",e,!1),t.addEventListener("error",n,!1),c.emit("new-jsonp",[t.src],l)}}}}}function o(){return"addEventListener"in window}function i(t){var e=t.match(u);return e?e[1]:null}function a(t,e){var n=t.match(l),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function s(t){var e=t.match(d);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var c=t("ee").get("jsonp"),f=t(26)(c);if(e.exports=c,o()){var u=/[?&](?:callback|cb)=([^&#]+)/,d=/(.*)\.([^.]+)/,l=/^(\w+)(\.|$)(.*)$/,p=["appendChild","insertBefore","replaceChild"];f.inPlace(HTMLElement.prototype,p,"dom-"),f.inPlace(HTMLHeadElement.prototype,p,"dom-"),f.inPlace(HTMLBodyElement.prototype,p,"dom-"),c.on("dom-start",function(t){r(t[0])})}},{}],10:[function(t,e,n){var r=t("ee").get("mutation"),o=t(26)(r),i=NREUM.o.MO;e.exports=r,i&&(window.MutationObserver=function(t){return this instanceof i?new i(o(t,"fn-")):i.apply(this,arguments)},MutationObserver.prototype=i.prototype)},{}],11:[function(t,e,n){function r(t){var e=a.context(),n=s(t,"executor-",e),r=new f(n);return a.context(r).getCtx=function(){return e},a.emit("new-promise",[r,e],e),r}function o(t,e){return e}var i=t(26),a=t("ee").get("promise"),s=i(a),c=t(23),f=NREUM.o.PR;e.exports=a,f&&(window.Promise=r,["all","race"].forEach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){a.emit("propagate",[null,!o],i),o=o||!t}}var o=!1;c(n,function(e,n){Promise.resolve(n).then(r("all"===t),r(!1))});var i=e.apply(f,arguments),s=f.resolve(i);return s}}),["resolve","reject"].forEach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&a.emit("propagate",[t,!0],n),n}}),f.prototype["catch"]=function(t){return this.then(null,t)},f.prototype=Object.create(f.prototype,{constructor:{value:r}}),c(Object.getOwnPropertyNames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),a.on("executor-start",function(t){t[0]=s(t[0],"resolve-",this),t[1]=s(t[1],"resolve-",this)}),a.on("executor-err",function(t,e,n){t[1](n)}),s.inPlace(f.prototype,["then"],"then-",o),a.on("then-start",function(t,e){this.promise=e,t[0]=s(t[0],"cb-",this),t[1]=s(t[1],"cb-",this)}),a.on("then-end",function(t,e,n){this.nextPromise=n;var r=this.promise;a.emit("propagate",[r,!0],n)}),a.on("cb-end",function(t,e,n){a.emit("propagate",[n,!0],this.nextPromise)}),a.on("propagate",function(t,e,n){this.getCtx&&!e||(this.getCtx=function(){if(t instanceof Promise)var e=a.context(t);return e&&e.getCtx?e.getCtx():this})}),r.toString=function(){return""+f})},{}],12:[function(t,e,n){var r=t("ee").get("raf"),o=t(26)(r),i="equestAnimationFrame";e.exports=r,o.inPlace(window,["r"+i,"mozR"+i,"webkitR"+i,"msR"+i],"raf-"),r.on("raf-start",function(t){t[0]=o(t[0],"fn-")})},{}],13:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],"fn-",null,n)}function o(t,e,n){this.method=n,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,n)}var i=t("ee").get("timer"),a=t(26)(i),s="setTimeout",c="setInterval",f="clearTimeout",u="-start",d="-";e.exports=i,a.inPlace(window,[s,"setImmediate"],s+d),a.inPlace(window,[c],c+d),a.inPlace(window,[f,"clearImmediate"],f+d),i.on(c+u,r),i.on(s+u,o)},{}],14:[function(t,e,n){function r(t,e){d.inPlace(e,["onreadystatechange"],"fn-",s)}function o(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,y,"fn-",s)}function i(t){x.push(t),h&&(b?b.then(a):v?v(a):(E=-E,R.data=E))}function a(){for(var t=0;t<x.length;t++)r([],x[t]);x.length&&(x=[])}function s(t,e){return e}function c(t,e){for(var n in t)e[n]=t[n];return e}t(6);var f=t("ee"),u=f.get("xhr"),d=t(26)(u),l=NREUM.o,p=l.XHR,h=l.MO,m=l.PR,v=l.SI,w="readystatechange",y=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],x=[];e.exports=u;var g=window.XMLHttpRequest=function(t){var e=new p(t);try{u.emit("new-xhr",[e],e),e.addEventListener(w,o,!1)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}return e};if(c(p,g),g.prototype=p.prototype,d.inPlace(g.prototype,["open","send"],"-xhr-",s),u.on("send-xhr-start",function(t,e){r(t,e),i(e)}),u.on("open-xhr-start",r),h){var b=m&&m.resolve();if(!v&&!m){var E=1,R=document.createTextNode(E);new h(a).observe(R,{characterData:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===w||a()})},{}],15:[function(t,e,n){function r(){var t=window.NREUM,e=t.info.accountID||null,n=t.info.agentID||null,r=t.info.trustKey||null,i="btoa"in window&&"function"==typeof window.btoa;if(!e||!n||!i)return null;var a={v:[0,1],d:{ty:"Browser",ac:e,ap:n,id:o.generateCatId(),tr:o.generateCatId(),ti:Date.now()}};return r&&e!==r&&(a.d.tk=r),btoa(JSON.stringify(a))}var o=t(21);e.exports={generateTraceHeader:r}},{}],16:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeEventListener(l[r],this.listener,!1);e.aborted||(n.duration=s.now()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==e.status&&(e.status=0):a(this,t),n.cbTime=this.cbTime,d.emit("xhr-done",[t],t),c("xhr",[e,n,this.startTime]))}}function o(t,e){var n=t.responseType;if("json"===n&&null!==e)return e;var r="arraybuffer"===n||"blob"===n||"json"===n?t.response:t.responseText;return v(r)}function i(t,e){var n=f(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.sameOrigin=n.sameOrigin}function a(t,e){t.params.status=e.status;var n=o(e,t.lastSize);if(n&&(t.metrics.rxSize=n),t.sameOrigin){var r=e.getResponseHeader("X-NewRelic-App-Data");r&&(t.params.cat=r.split(", ").pop())}t.loadCaptureCalled=!0}var s=t("loader");if(s.xhrWrappable){var c=t("handle"),f=t(17),u=t(15).generateTraceHeader,d=t("ee"),l=["load","error","abort","timeout"],p=l.length,h=t("id"),m=t(20),v=t(19),w=window.XMLHttpRequest;s.features.xhr=!0,t(14),d.on("new-xhr",function(t){var e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,e.loadCaptureCalled=!1,t.addEventListener("load",function(n){a(e,t)},!1),m&&(m>34||m<10)||window.opera||t.addEventListener("progress",function(t){e.lastSize=t.loaded},!1)}),d.on("open-xhr-start",function(t){this.params={method:t[0]},i(this,t[1]),this.metrics={}}),d.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid);var n=!1;if("init"in NREUM&&"distributed_tracing"in NREUM.init&&(n=!!NREUM.init.distributed_tracing.enabled),n&&this.sameOrigin){var r=u();r&&e.setRequestHeader("newrelic",r)}}),d.on("send-xhr-start",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=v(r);i&&(n.txSize=i)}this.startTime=s.now(),this.listener=function(t){try{"abort"!==t.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof e.onload))&&o.end(e)}catch(n){try{d.emit("internal-error",[n])}catch(r){}}};for(var a=0;a<p;a++)e.addEventListener(l[a],this.listener,!1)}),d.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),d.on("xhr-load-added",function(t,e){var n=""+h(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),d.on("xhr-load-removed",function(t,e){var n=""+h(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),d.on("addEventListener-end",function(t,e){e instanceof w&&"load"===t[0]&&d.emit("xhr-load-added",[t[1],t[2]],e)}),d.on("removeEventListener-end",function(t,e){e instanceof w&&"load"===t[0]&&d.emit("xhr-load-removed",[t[1],t[2]],e)}),d.on("fn-start",function(t,e,n){e instanceof w&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=s.now()))}),d.on("fn-end",function(t,e){this.xhrCbStart&&d.emit("xhr-cb-time",[s.now()-this.xhrCbStart,this.onload,e],e)})}},{}],17:[function(t,e,n){e.exports=function(t){var e=document.createElement("a"),n=window.location,r={};e.href=t,r.port=e.port;var o=e.href.split(":https://");!r.port&&o[1]&&(r.port=o[1].split("/")[0].split("@").pop().split(":")[1]),r.port&&"0"!==r.port||(r.port="https"===o[0]?"443":"80"),r.hostname=e.hostname||n.hostname,r.pathname=e.pathname,r.protocol=o[0],"/"!==r.pathname.charAt(0)&&(r.pathname="/"+r.pathname);var i=!e.protocol||":"===e.protocol||e.protocol===n.protocol,a=e.hostname===document.domain&&e.port===n.port;return r.sameOrigin=i&&(!e.hostname||a),r}},{}],18:[function(t,e,n){function r(){}function o(t,e,n){return function(){return i(t,[f.now()].concat(s(arguments)),e?null:this,n),e?void 0:this}}var i=t("handle"),a=t(23),s=t(24),c=t("ee").get("tracer"),f=t("loader"),u=NREUM;"undefined"==typeof window.newrelic&&(newrelic=u);var d=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],l="api-",p=l+"ixn-";a(d,function(t,e){u[e]=o(l+e,!0,"api")}),u.addPageAction=o(l+"addPageAction",!0),u.setCurrentRouteName=o(l+"routeName",!0),e.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createTracer:function(t,e){var n={},r=this,o="function"==typeof e;return i(p+"tracer",[f.now(),t,n],r),function(){if(c.emit((o?"":"no-")+"fn-start",[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw c.emit("fn-err",[arguments,this,t],n),t}finally{c.emit("fn-end",[f.now()],n)}}}};a("actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,e){h[e]=o(p+e)}),newrelic.noticeError=function(t,e){"string"==typeof t&&(t=new Error(t)),i("err",[t,f.now(),!1,e])}},{}],19:[function(t,e,n){e.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],20:[function(t,e,n){var r=0,o=navigator.userAgent.match(/Firefox[\/\s](\d+\.\d+)/);o&&(r=+o[1]),e.exports=r},{}],21:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*Math.random()|0}var e=null,n=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&(e=r.getRandomValues(new Uint8Array(31)));for(var o,i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx",a="",s=0;s<i.length;s++)o=i[s],"x"===o?a+=t().toString(16):"y"===o?(o=3&t()|8,a+=o.toString(16)):a+=o;return a}function o(){function t(){return e?15&e[n++]:16*Math.random()|0}var e=null,n=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&Uint8Array&&(e=r.getRandomValues(new Uint8Array(31)));for(var o=[],i=0;i<16;i++)o.push(t().toString(16));return o.join("")}e.exports={generateUuid:r,generateCatId:o}},{}],22:[function(t,e,n){function r(t,e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var n=i.split("."),r=e.split("."),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var o=null,i=null,a=/Version\/(\S+)\s+Safari/;if(navigator.userAgent){var s=navigator.userAgent,c=s.match(a);c&&s.indexOf("Chrome")===-1&&s.indexOf("Chromium")===-1&&(o="Safari",i=c[1])}e.exports={agent:o,version:i,match:r}},{}],23:[function(t,e,n){function r(t,e){var n=[],r="",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],24:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],25:[function(t,e,n){e.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],26:[function(t,e,n){function r(t){return!(t&&t instanceof Function&&t.apply&&!t[a])}var o=t("ee"),i=t(24),a="nr@original",s=Object.prototype.hasOwnProperty,c=!1;e.exports=function(t,e){function n(t,e,n,o){function nrWrapper(){var r,a,s,c;try{a=this,r=i(arguments),s="function"==typeof n?n(r,a):n||{}}catch(f){l([f,"",[r,a,o],s])}u(e+"start",[r,a,o],s);try{return c=t.apply(a,r)}catch(d){throw u(e+"err",[r,a,d],s),d}finally{u(e+"end",[r,a,c],s)}}return r(t)?t:(e||(e=""),nrWrapper[a]=t,d(t,nrWrapper),nrWrapper)}function f(t,e,o,i){o||(o="");var a,s,c,f="-"===o.charAt(0);for(c=0;c<e.length;c++)s=e[c],a=t[s],r(a)||(t[s]=n(a,f?s+o:o,i,s))}function u(n,r,o){if(!c||e){var i=c;c=!0;try{t.emit(n,r,o,e)}catch(a){l([a,n,r,o])}c=i}}function d(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){l([r])}for(var o in t)s.call(t,o)&&(e[o]=t[o]);return e}function l(e){try{t.emit("internal-error",e)}catch(n){}}return t||(t=o),n.inPlace=f,n.flag=a,n}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?c(t,s,i):i()}function n(n,r,o,i){if(!l.aborted||i){t&&t(n,r,o);for(var a=e(o),s=m(n),c=s.length,f=0;f<c;f++)s[f].apply(a,r);var d=u[x[n]];return d&&d.push([g,n,r,a]),a}}function p(t,e){y[t]=m(t).concat(e)}function h(t,e){var n=y[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return y[t]||[]}function v(t){return d[t]=d[t]||o(n)}function w(t,e){f(t,function(t,n){e=e||"feature",x[n]=e,e in u||(u[e]=[])})}var y={},x={},g={on:p,addEventListener:p,removeEventListener:h,emit:n,get:v,listeners:m,context:e,buffer:w,abort:a,aborted:!1};return g}function i(){return new r}function a(){(u.api||u.feature)&&(l.aborted=!0,u=l.backlog={})}var s="nr@context",c=t("gos"),f=t(23),u={},d={},l=e.exports=o();l.backlog=u},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t("ee").get("handle");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!E++){var t=b.info=NREUM.info,e=p.getElementsByTagName("script")[0];if(setTimeout(u.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return u.abort();f(x,function(e,n){t[e]||(t[e]=n)}),c("mark",["onload",a()+b.offset],null,"api");var n=p.createElement("script");n.src="https://"+t.agent,e.parentNode.insertBefore(n,e)}}function o(){"complete"===p.readyState&&i()}function i(){c("mark",["domContent",a()+b.offset],null,"api")}function a(){return R.exists&&performance.now?Math.round(performance.now()):(s=Math.max((new Date).getTime(),s))-b.offset}var s=(new Date).getTime(),c=t("handle"),f=t(23),u=t("ee"),d=t(22),l=window,p=l.document,h="addEventListener",m="attachEvent",v=l.XMLHttpRequest,w=v&&v.prototype;NREUM.o={ST:setTimeout,SI:l.setImmediate,CT:clearTimeout,XHR:v,REQ:l.Request,EV:l.Event,PR:l.Promise,MO:l.MutationObserver};var y=""+location,x={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-spa-1123.min.js"},g=v&&w&&w[h]&&!/CriOS/.test(navigator.userAgent),b=e.exports={offset:s,now:a,origin:y,features:{},xhrWrappable:g,userAgent:d};t(18),p[h]?(p[h]("DOMContentLoaded",i,!1),l[h]("load",r,!1)):(p[m]("onreadystatechange",o),l[m]("onload",r)),c("mark",["firstbyte",s],null,"api");var E=0,R=t(25)},{}]},{},["loader",2,16,5,3,4]);NREUM.info={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",licenseKey:"d1734eda45",applicationID:"3785502",sa:1}})();
})();
</script><script src="https://secure.espn.com/core/format/modules/head/i18n?edition-host=espn.com&lang=en®ion=us&site=espn&site-type=full&type=ext&build=0.618.2.2"></script>
<link href='https://a.espncdn.com' rel='preconnect' crossorigin>
<link href='https://cdn.registerdisney.go.com' rel='preconnect' crossorigin>
<link href='https://fan.api.espn.com' rel='preconnect' crossorigin>
<link href='https://secure.espn.com' rel='preconnect' crossorigin>
<link rel="mask-icon" sizes="any" href="https://a.espncdn.com/prod/assets/icons/E.svg" color="#990000">
<link rel="shortcut icon" href="https://a.espncdn.com/favicon.ico" />
<link rel="apple-touch-icon" href="https://a.espncdn.com/wireless/mw5/r1/images/bookmark-icons-v2/espn-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" href="https://a.espncdn.com/wireless/mw5/r1/images/bookmark-icons-v2/espn-icon-57x57.png">
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="https://a.espncdn.com/wireless/mw5/r1/images/bookmark-icons-v2/espn-icon-60x60.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://a.espncdn.com/wireless/mw5/r1/images/bookmark-icons-v2/espn-icon-72x72.png">
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="https://a.espncdn.com/wireless/mw5/r1/images/bookmark-icons-v2/espn-icon-76x76.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://a.espncdn.com/wireless/mw5/r1/images/bookmark-icons-v2/espn-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="https://a.espncdn.com/wireless/mw5/r1/images/bookmark-icons-v2/espn-icon-120x120.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://a.espncdn.com/wireless/mw5/r1/images/bookmark-icons-v2/espn-icon-144x144.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="https://a.espncdn.com/wireless/mw5/r1/images/bookmark-icons-v2/espn-icon-152x152.png">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="https://a.espncdn.com/wireless/mw5/r1/images/bookmark-icons-v2/espn-icon-180x180.png">
<link rel="alternate" href="android-app:https://com.espn.score_center/sportscenter/x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401403947" />
<link rel="alternate" href="ios-app:https://317469184/sportscenter/x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401403947" />
<link id="font-link" rel="stylesheet" href="https://a.espncdn.com/redesign/fonts/base64-benton-woff.css"><link rel="stylesheet" href="https://a.espncdn.com/redesign/0.618.2/css/shell-desktop.css" /><link rel="stylesheet" href="https://a.espncdn.com/redesign/0.618.2/css/page.css"><link class="page-type-include" rel="stylesheet" href="https://a.espncdn.com/redesign/0.618.2/css/game-package-football.css">
<script>
var navigator = window.navigator || {};
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/service-worker.js');
}
</script>
<script src="https://a.espncdn.com/redesign/0.618.2/js/espn-head.js"></script>
<script>
if (espn && espn.geoRedirect){
espn.geoRedirect.run();
}
</script>
<script>
var espn = espn || {};
espn.isOneSite = false;
espn.build = "0.618.2";
espn.siteType = "full";
espn.anonymous_favorites = "true" === "true";
espn.isFantasycast = false;
espn.absoluteNavLinks = false;
espn.useEPlus = true;
espn.hidePremiumBranding = false; // used in pof: hide e+ branding if non premium edition (SEWEB-22908)
espn.enableObscuredAdsSkipping = false;
espn.enableInlinePlayback = true;
espn.enableInlinePPV = true;
</script>
<script src="https://a.espncdn.com/redesign/0.618.2/node_modules/espn-lazysizes/lazysizes.min.js" async></script>
<script type='text/javascript'>
(function () {
var featureGating;
try {
featureGating = JSON.parse('{"draftArticleDeeplinks":false,"playerFollowing":true,"showTaboolaSportIndex":true,"deflateZips":false,"browerDeprecation":true,"useLatestPaywall":true,"disableBet365":false,"hudsonPAL":true,"olyResultsGPWebview":false,"enableMagnite":true,"fittRoutes":["(nba-g-league)\\/schedule","(mlb)\\/scoreboard","(mlb|nba|wnba|nfl|mens-college-basketball|womens-college-basketball|college-football|soccer)\\/team","(nba|wnba|nba-summer-league|nba-g-league|mlb)\\/(boxscore|game|matchup|playbyplay|preview|recap|video)"],"drm":true,"enableLeaderboardWatchRow":true,"oneIDV4":false,"activeSportsSiteAPI":true,"gateFavorites":true,"enableGameBreaksOnWebview":false,"usPrivacy":true,"hudsonPlayer":true,"enablePWA":true,"showTaboolaArticle":false,"newSearchVersion":true,"startFromBeginning":true,"continueWatching":true,"geoFooter":true,"enableFastcast":true,"siteBroadcast":true}');
} catch (e) {}
window.espn.featureGating = featureGating || {};
})();
</script>
<script>
window.googletag = window.googletag || {};
(function () {
espn = window.espn || {};
espn.ads = espn.ads || {};
espn.ads.config = {"page_url":"https://www.espn.com/college-football/game/_/gameId/401403947","prebidAdConfig":{"usePrebidBids":true,"timeout":1000},"sizesEspnPlus":{"banner-index":{"excludedSize":["728,90"],"mappings":[{"viewport":[1280,0],"slot":[[1280,100],[970,250]]},{"viewport":[1024,0],"slot":[[970,66],[970,250]]},{"viewport":[768,0],"slot":[[728,90]]},{"viewport":[320,0],"slot":[[320,50]]},{"viewport":[0,0],"slot":[[240,38]]}],"defaultSize":[970,66],"excludedProfile":["xl"],"includedCountries":["us"],"pbjs":{"s":[[320,50]],"xl":[[970,250]],"l":[[970,250]],"m":[[728,90]]}},"gamecast":{"mappings":[{"viewport":[0,0],"slot":[[320,50]]}],"defaultSize":[320,50]},"banner-scoreboard":{"excludedSize":["970,250"],"mappings":[{"viewport":[1280,0],"slot":[[1280,100],[728,90]]},{"viewport":[1024,0],"slot":[[970,66],[728,90]]},{"viewport":[768,0],"slot":[[728,90]]},{"viewport":[320,0],"slot":[[320,50]]},{"viewport":[0,0],"slot":[[240,38]]}],"defaultSize":[970,66],"includedCountries":["us"],"pbjs":{"s":[[320,50]],"xl":[[728,90]],"l":[[728,90]],"m":[[728,90]]}},"banner":{"mappings":[{"viewport":[1280,0],"slot":[[1280,100],[970,250],[728,90]]},{"viewport":[1024,0],"slot":[[970,66],[970,250],[728,90]]},{"viewport":[768,0],"slot":[[728,90]]},{"viewport":[320,0],"slot":[[320,50]]},{"viewport":[0,0],"slot":[[240,38]]}],"defaultSize":[970,66],"pbjs":{"s":[[320,50]],"xl":[[970,250],[728,90]],"l":[[970,250],[728,90]],"m":[[728,90]]}},"incontent-betting":{"mappings":[{"viewport":[1024,0],"slot":[[300,251]]},{"viewport":[320,0],"slot":[[300,251]]}],"defaultSize":[300,251]},"native-betting":{"mappings":[{"viewport":[0,0],"slot":["fluid"]}],"defaultSize":"fluid"},"incontent":{"mappings":[{"viewport":[1024,0],"slot":[[300,250],[300,600]]}],"defaultSize":[300,250]}},"incontentPositions":{"defaults":{"favorites":-1,"news":4,"now":4},"index":{"top":{"favorites":-1},"nfl":{}}},"ePlusBettingAdOnly":["fantasy"],"kvpsEspnPlus":[{"name":"ed","value":"us"},{"name":"eplus","value":"true"}],"network":"21783347309","refreshOnBreakpointChange":true,"sizes":{"gamecast":{"mappings":[{"viewport":[0,0],"slot":[[320,50]]}],"defaultSize":[320,50]},"overlay":{"mappings":[{"viewport":[0,0],"slot":[[0,0]]}],"defaultSize":[0,0]},"wallpaper":{"mappings":[{"viewport":[1280,0],"slot":[[1680,1050]]},{"viewport":[1024,0],"slot":[[1280,455]]},{"viewport":[0,0],"slot":[]}],"defaultSize":[1280,455]},"banner-scoreboard":{"excludedSize":["970,250"],"mappings":[{"viewport":[1280,0],"slot":[[1280,100],[728,90]]},{"viewport":[1024,0],"slot":[[970,66],[728,90]]},{"viewport":[768,0],"slot":[[728,90]]},{"viewport":[320,0],"slot":[[320,50]]},{"viewport":[0,0],"slot":[[240,38]]}],"defaultSize":[970,66],"includedCountries":["us"],"pbjs":{"s":[[320,50]],"xl":[[728,90]],"l":[[728,90]],"m":[[728,90]]}},"incontent2":{"mappings":[{"viewport":[0,0],"slot":[[300,250]]}],"defaultSize":[300,250]},"banner":{"mappings":[{"viewport":[1280,0],"slot":[[1280,100],[970,250],[728,90]]},{"viewport":[1024,0],"slot":[[970,66],[970,250],[728,90]]},{"viewport":[768,0],"slot":[[728,90]]},{"viewport":[320,0],"slot":[[320,50]]},{"viewport":[0,0],"slot":[[240,38]]}],"defaultSize":[970,66],"pbjs":{"s":[[320,50]],"xl":[[970,250],[728,90]],"l":[[970,250],[728,90]],"m":[[728,90]]}},"exclusions":{"mappings":[{"viewport":[0,0],"slot":[[1,2]]}],"defaultSize":[1,2]},"native-betting":{"mappings":[{"viewport":[0,0],"slot":["fluid"]}],"defaultSize":"fluid"},"banner-index":{"excludedSize":["728,90"],"mappings":[{"viewport":[1280,0],"slot":[[1280,100],[970,250]]},{"viewport":[1024,0],"slot":[[970,66],[970,250]]},{"viewport":[768,0],"slot":[[728,90]]},{"viewport":[320,0],"slot":[[320,50]]},{"viewport":[0,0],"slot":[[240,38]]}],"defaultSize":[970,66],"excludedProfile":["xl"],"includedCountries":["All"],"pbjs":{"s":[[320,50]],"xl":[[970,250]],"l":[[970,250]],"m":[[728,90]]}},"banner-webview":{"excludedSize":["970,250"],"mappings":[{"viewport":[1280,0],"slot":[[728,90]]},{"viewport":[1024,0],"slot":[[728,90]]},{"viewport":[768,0],"slot":[[728,90]]},{"viewport":[320,0],"slot":[[320,50]]},{"viewport":[0,0],"slot":[[240,38]]}],"defaultSize":[728,90],"includedCountries":["All"],"pbjs":{"s":[[320,50]],"xl":[[728,90]],"l":[[728,90]],"m":[[728,90]]}},"presby":{"mappings":[{"viewport":[0,0],"slot":[[112,62]]}],"defaultSize":[112,62]},"presentedbylogo":{"mappings":[{"viewport":[1024,0],"slot":[[128,30]]},{"viewport":[0,0],"slot":[[90,20]]}],"defaultSize":[128,30]},"native":{"mappings":[{"viewport":[0,0],"slot":["fluid"]}],"defaultSize":"fluid"},"incontentstrip":{"mappings":[{"viewport":[1024,0],"slot":[298,50]},{"viewport":[0,0],"slot":[]}],"defaultSize":[298,50]},"incontent-betting":{"mappings":[{"viewport":[1024,0],"slot":[[300,251]]},{"viewport":[320,0],"slot":[[300,251]]}],"defaultSize":[300,251]},"instream":{"mappings":[{"viewport":[0,0],"slot":[[1,3]]}],"defaultSize":[1,3]},"incontentstrip2":{"mappings":[{"viewport":[320,0],"slot":[[298,50]]}],"defaultSize":[298,50]},"incontent":{"mappings":[{"viewport":[1024,0],"slot":[[300,250],[300,600]]}],"defaultSize":[300,250]},"midpage":{"mappings":[{"viewport":[1280,0],"slot":[[700,400]]},{"viewport":[1024,0],"slot":[[440,330]]},{"viewport":[768,0],"slot":[[320,250]]},{"viewport":[0,0],"slot":[[320,250]]}],"defaultSize":[320,250]}},"load":{"schedule":{"tablet":"init","desktop":"init","mobile":"init"},"frontpage":{"tablet":"init","desktop":"init","mobile":"init"},"defaults":{"tablet":"init","desktop":"init","mobile":"init"},"index":{"tablet":"init","desktop":"init","mobile":"init"},"scoreboard":{"tablet":"init","desktop":"init","mobile":"init"},"standings":{"tablet":"init","desktop":"init","mobile":"init"},"story":{"tablet":"init","desktop":"init","mobile":"init"}},"selector":".ad-slot","whitelistEspnPlus":["boxing","cbb","cfb","frontpage","golf","mlb","mma","nba","ncaaw","nfl","nhl","soccer","tennis","wnba","horse","esports","formulaone"],"disabled":"false","override":{"banner":{"preview":"banner-scoreboard","game":"banner-scoreboard","fightcenter":"banner-scoreboard","match":"banner-scoreboard","index":"banner-index","scoreboard":"banner-scoreboard","conversation":"banner-scoreboard","lineups":"banner-scoreboard"}},"breakpoints":{"s":[0,767],"xl":[1280],"l":[1024,1279],"m":[768,1023]},"dynamicKeyValues":{"profile":{"key":"prof"}},"id":12129264,"kvps":[{"name":"ed","value":"us"},{"name":"ajx_url","value":"https://www.espn.com/college-football/game/_/gameId/401403947"},{"name":"sp","value":"cfb"},{"name":"pgtyp","value":"game"},{"name":"darkmode","value":"false"}],"level":"espn.com/cfb/game","delayInPageAdSlots":true,"showEspnPlusAds":false,"webviewOverride":{"banner":{"mlb/stats":"banner-webview","roster":"banner-webview","cfb/rankings":"banner-webview","team/stats":"banner-webview","nba/stats":"banner-webview","ncaaw/rankings":"banner-webview","nfl/stats":"banner-webview","standings":"banner-webview","cfb/stats":"banner-webview","ncb/rankings":"banner-webview"}},"bettingOnlySizes":{"incontent-betting":{"mappings":[{"viewport":[1024,0],"slot":[[300,251]]},{"viewport":[320,0],"slot":[[300,251]]}],"defaultSize":[300,251]},"native-betting":{"mappings":[{"viewport":[0,0],"slot":["fluid"]}],"defaultSize":"fluid"}},"supportDynamicPageLoad":true,"base":"espn.com"};
googletag.cmd = googletag.cmd || [];
var espnAdsConfig = espn.ads.config;
espn.ads.loadGPT = function () {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
gads.src = 'https://www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
delete espn.ads.loadGPT;
}
if (espn.siteType === 'data-lite') {
/**
* Load ad library after our deferred files. Event subscription must
* occur on window.load to ensure pub/sub availability.
*/
// Ad calls will be made when ad library inits (after window.load).
var liteAdLoadConfigs = {
desktop: 'init',
mobile: 'init',
tablet: 'init'
};
espnAdsConfig.load = espnAdsConfig.load || {};
espnAdsConfig.load.defaults = liteAdLoadConfigs
espnAdsConfig.load.frontpage = liteAdLoadConfigs;
espnAdsConfig.load.index = liteAdLoadConfigs;
espnAdsConfig.load.story = liteAdLoadConfigs;
} else {
espn.ads.loadGPT();
}
// Load prebid.js for AppNexus
(function() {
var d = document,
pbs = d.createElement('script'),
target;
window.espn = window.espn || {};
espn.ads = espn.ads || {};
espn.ads.isMagnite = true;
pbs.type = 'text/javascript';
pbs.src = 'https://micro.rubiconproject.com/prebid/dynamic/18138.js';
target = document.getElementsByTagName('head')[0];
target.insertBefore(pbs, target.firstChild);
})();
espn.ads.configPre = JSON.parse(JSON.stringify(espnAdsConfig));
})();
</script>
<script type="text/javascript">
if( typeof s_omni === "undefined" ) window.s_account = window.setReportSuite( "wdgespcom" );
</script>
<!-- test & target - mbox.js -->
<script type="text/javascript" src="https://a.espncdn.com/prod/scripts/analytics/ESPN_at_v2.rs.min.js"></script>
<script>
// Picture element HTML shim|v it for old IE (pairs with Picturefill.js)
document.createElement("picture");
</script>
</head>
<body class="gamepackage desktop prod " data-appearance='light' data-pagetype="gamepackage" data-sport="ncf" data-site="espn" data-customstylesheet="game-package-football" data-lang="en" data-edition="en-us" data-app="">
<img width="99999" height="99999" style="pointer-events: none; position: absolute; top: 0; left: 0; width: 99vw; height: 99vh; max-width: 99vw; max-height: 99vh;" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSI5OTk5OXB4IiBoZWlnaHQ9Ijk5OTk5cHgiIHZpZXdCb3g9IjAgMCA5OTk5OSA5OTk5OSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZyBzdHJva2U9Im5vbmUiIGZpbGw9Im5vbmUiIGZpbGwtb3BhY2l0eT0iMCI+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9Ijk5OTk5IiBoZWlnaHQ9Ijk5OTk5Ij48L3JlY3Q+IDwvZz4gPC9zdmc+">
<div class="ad-slot ad-slot-exclusions" data-slot-type="exclusions" data-slot-kvps="pos=exclusions" data-category-exclusion="true"></div><div class="ad-slot ad-slot-overlay" data-slot-type="overlay" data-slot-kvps="pos=outofpage" data-out-of-page="true"></div>
<!-- abtest data object global -->
<script type="text/javascript">
var abtestData = {};
</script>
<div id="fb-root"></div>
<div id="global-viewport" data-behavior="global_nav_condensed global_nav_full" class =" interior secondary">
<nav id="global-nav-mobile" data-loadtype="server"></nav>
<div class="menu-overlay-primary"></div>
<div id="header-wrapper" class="hidden-print">
<section id="global-scoreboard" class="hide-fullbtn" role="region">
<button class="scoreboard-hidden-skip" data-skip="content" data-behavior="scoreboard_skipnav">
Skip to main content
</button>
<button class="scoreboard-hidden-skip" data-skip="nav" data-behavior="scoreboard_skipnav">
Skip to navigation
</button>
<div class="wrap">
<div class="scoreboard-content">
<div class="scoreboard-dropdown-wrapper scoreboard-menu">
<!-- mobile dropdown -->
<div class="league-nav-wrapper league-nav-mobile mobile-dropdown">
<span class="mobile-arrow"></span>
<select id="league-nav"></select>
</div>
<!-- desktop dropdown -->
<div class="dropdown-wrapper league-nav-desktop desktop-dropdown" data-behavior="button_dropdown">
<button type="button" class="button button-filter sm dropdown-toggle current-league-name"></button>
<ul class="dropdown-menu league-nav med"></ul>
</div>
</div>
<div class="scoreboard-dropdown-wrapper conference-menu">
<!-- mobile dropdown -->
<div class="conference-nav-wrapper mobile-dropdown">
<span class="mobile-arrow"></span>
<select id="conference-nav"></select>
</div>
<!-- desktop dropdown -->
<div class="dropdown-wrapper desktop-dropdown" data-behavior="button_dropdown">
<button type="button" class="button button-filter med dropdown-toggle current-conference-name"></button>
<ul class="dropdown-menu conference-nav med"></ul>
</div>
</div>
<div class="scoreboard-dropdown-wrapper scores-date-pick">
<div class="dropdown-wrapper" data-behavior="button_dropdown">
<button type="button" class="button button-filter dropdown-toggle sm selected-date"></button>
<ul class="dropdown-menu date-nav med"></ul>
</div>
</div>
<div class="scoreboard-dropdown-wrapper secondary-nav-container hidden"></div>
<div class="scores-prev controls inactive"><</div>
<div id="fullbtn" class="view-full"></div>
<div class="scores-next controls">></div>
<div class="scores-carousel">
<ul id="leagues"></ul>
</div>
</div>
</div>
</section>
<header id="global-header" class="espn-en user-account-management has-search">
<div class="menu-overlay-secondary"></div>
<div class="container">
<a id="global-nav-mobile-trigger" href="#" data-route="false"><span>Menu</span></a><h1><a href="/" name="&lpos=sitenavdefault&lid=sitenav_main-logo">ESPN</a></h1><ul class="tools"><li class="search">
<a href="#" class="icon-font-after icon-search-solid-after" id="global-search-trigger"></a>
<div id="global-search" class="global-search">
<label for="global-search-input">Search</label>
<div class="global-search-input-wrapper">
<input id="global-search-input" type="text" class="search-box" placeholder="Search Sports, Teams or Players..."><input type="submit" class="btn-search">
</div>
</div></li><li class="user" data-behavior="favorites_mgmt"></li><li id="scores-link"><a href="#" id="global-scoreboard-trigger" data-route="false">scores</a></ul>
</div>
<nav id="global-nav" data-loadtype="server">
<ul itemscope="" itemtype="https://www.schema.org/SiteNavigationElement">
<li itemprop="name"><a itemprop="url" href="/nfl/">NFL</a></li><li itemprop="name"><a itemprop="url" href="/college-football/">NCAAF</a></li><li itemprop="name"><a itemprop="url" href="/nhl/">NHL</a></li><li itemprop="name"><a itemprop="url" href="/nba/">NBA</a></li><li itemprop="name"><a itemprop="url" href="/mlb/">MLB</a></li><li itemprop="name"><a itemprop="url" href="/soccer/">Soccer</a></li><li itemprop="name"><a itemprop="url" href="#">…</a><div><ul class="split"><li itemprop="name"><a itemprop="url" href="/mma/">MMA</a></li><li itemprop="name"><a itemprop="url" href="/boxing/">Boxing</a></li><li itemprop="name"><a itemprop="url" href="https://www.tsn.ca/cfl">CFL</a></li><li itemprop="name"><a itemprop="url" href="/chalk/">Chalk</a></li><li itemprop="name"><a itemprop="url" href="/college-sports/">NCAA</a></li><li itemprop="name"><a itemprop="url" href="https://www.espncricinfo.com/">Cricket</a></li><li itemprop="name"><a itemprop="url" href="/f1/">F1</a></li><li itemprop="name"><a itemprop="url" href="/golf/">Golf</a></li><li itemprop="name"><a itemprop="url" href="/horse-racing/">Horse</a></li><li itemprop="name"><a itemprop="url" href="/little-league-world-series/">LLWS</a></li><li itemprop="name"><a itemprop="url" href="/racing/nascar/">NASCAR</a></li><li itemprop="name"><a itemprop="url" href="/nba-g-league/">NBA G League</a></li><li itemprop="name"><a itemprop="url" href="/mens-college-basketball/">NCAAM</a></li><li itemprop="name"><a itemprop="url" href="/womens-college-basketball/">NCAAW</a></li><li itemprop="name"><a itemprop="url" href="/olympics/">Olympic Sports</a></li><li itemprop="name"><a itemprop="url" href="/racing/">Racing</a></li><li itemprop="name"><a itemprop="url" href="/college-sports/basketball/recruiting/">RN BB</a></li><li itemprop="name"><a itemprop="url" href="/college-sports/football/recruiting/">RN FB</a></li><li itemprop="name"><a itemprop="url" href="/rugby/">Rugby</a></li><li itemprop="name"><a itemprop="url" href="/tennis/">Tennis</a></li><li itemprop="name"><a itemprop="url" href="/wnba/">WNBA</a></li><li itemprop="name"><a itemprop="url" href="/wwe/">WWE</a></li><li itemprop="name"><a itemprop="url" href="https://xgames.com/">X Games</a></li><li itemprop="name"><a itemprop="url" href="/xfl/">XFL</a></li></ul></div></li><li class="pillar more-espn"><a href="#">More ESPN</a></li><li class="pillar fantasy"><a href="/fantasy/">Fantasy</a></li><li class="pillar listen"><a href="https://www.espn.com/espnradio/index">Listen</a></li><li class="pillar watch"><a href="https://www.espn.com/watch/">Watch</a></li><li class="pillar espn+"><a href="https://www.espn.com/espnplus/?om-navmethod=topnav">ESPN+</a></li></ul>
</nav>
<nav id="global-nav-secondary" data-loadtype="tier-2-server" >
<div class="global-nav-container">
<script type="text/javascript">
var espn = espn || {};
espn.nav = espn.nav || {};
espn.nav.navId = 11929946;
espn.nav.isFallback = false;
espn.nav.tier2 = {"subNavMenu":{"navigation":{"links":[{"isExternal":false,"shortText":"NCAAF","rel":["sports"],"attributes":{"icon":"football-college"},"text":"NCAAF","href":"/college-football/","isPremium":false}],"attributes":{"sport_id":"23","root":"ncaaf"},"text":"NCAAF","title":"NCAAF Menu - LIVE","$ref":"/v2/navigation/12001968","items":[{"links":[{"isExternal":false,"shortText":"Home","rel":["sub"],"attributes":{"breakpoints":"desktop,desktop-lg,mobile,tablet"},"text":"Home","href":"/college-football/","isPremium":false}],"title":"NCAAF Home Desktop Only","$ref":"/v2/navigation/12001997"},{"links":[{"isExternal":false,"shortText":"Scores","rel":["sub"],"attributes":{"route":"false"},"text":"Scores","href":"/college-football/scoreboard","isPremium":false}],"title":"NCAAF Scores","$ref":"/v2/navigation/11587337"},{"links":[{"isExternal":false,"shortText":"Schedule","rel":["sub"],"attributes":{"route":"false"},"text":"Schedule","href":"/college-football/schedule","isPremium":false}],"title":"NCAAF Schedule","$ref":"/v2/navigation/11587299"},{"links":[{"isExternal":false,"shortText":"Standings","rel":["sub"],"attributes":{"route":"false"},"text":"Standings","href":"/college-football/standings","isPremium":false}],"title":"NCAAF Standings","$ref":"/v2/navigation/11587326"},{"links":[{"isExternal":false,"shortText":"Stats","rel":["none","sub"],"attributes":{"route":"false"},"text":"Stats","href":"/college-football/stats","isPremium":false}],"text":"Stats","title":"NCAAF Stats (nav)","$ref":"/v2/navigation/17679188","items":[{"links":[{"isExternal":false,"shortText":"Season Leaders","text":"Season Leaders","href":"/college-football/stats","isPremium":false}],"title":"NCAAF Sesason Leaders","$ref":"/v2/navigation/27812638"},{"links":[{"isExternal":false,"shortText":"Weekly Leaders","attributes":{"mobile":"false"},"text":"Weekly Leaders","href":"https://www.espn.com/college-football/weekly","isPremium":false}],"title":"NCAAF Weekly Leaders","$ref":"/v2/navigation/11587094"},{"links":[{"isExternal":false,"shortText":"QBR","attributes":{"mobile":"false"},"text":"Total QBR","href":"https://www.espn.com/ncf/qbr","isPremium":false},{"isExternal":false,"shortText":"QBR","attributes":{"mobile":"true"},"text":"Total QBR","href":"https://m.espn.com/ncf/qbr","isPremium":false}],"title":"NCAAF Total QBR","$ref":"/v2/navigation/11587284"}]},{"links":[{"isExternal":false,"shortText":"Teams","rel":["sub"],"attributes":{"route":"false"},"text":"Teams","href":"/college-football/teams","isPremium":false}],"title":"NCAAF Teams","$ref":"/v2/navigation/11587331"},{"links":[{"isExternal":false,"shortText":"Rankings","rel":["none","sub"],"attributes":{"route":"false"},"text":"Rankings","href":"/college-football/rankings","isPremium":false}],"text":"Rankings","title":"NCAAF Rankings (navmenu)","$ref":"/v2/navigation/17679225","items":[{"links":[{"isExternal":false,"shortText":"CFP/AP/Coaches Polls","attributes":{"route":"false"},"text":"CFP/AP/Coaches Polls","href":"/college-football/rankings","isPremium":false}],"title":"NCAAF Rankings - AP/Coaches Poll","$ref":"/v2/navigation/17679252"},{"links":[{"isExternal":false,"shortText":"SP+ Rankings","attributes":{"icon":"football-college"},"text":"SP+ Rankings","href":"https://www.espn.com/college-football/insider/story/_/id/35018522/college-football-sp+-rankings-week-11","isPremium":false}],"title":"SP+ CFB rankings","$ref":"/v2/navigation/28694518"},{"links":[{"isExternal":false,"shortText":"Football Power Index","attributes":{"mobile":"false"},"text":"Football Power Index","href":"https://www.espn.com/college-football/statistics/teamratings","isPremium":false}],"title":"NCAAF - Football Power Index","$ref":"/v2/navigation/13438995"}]},{"links":[{"isExternal":false,"shortText":"Recruiting","rel":["none","sub"],"text":"Recruiting","href":"https://www.espn.com/college-sports/football/recruiting/index","isPremium":false}],"text":"Recruiting","title":"NCF Recruiting","$ref":"/v2/navigation/17679120","items":[{"links":[{"isExternal":false,"shortText":"Class Rankings","text":"Class Rankings","href":"https://www.espn.com/college-football/insider/story/_/id/34920099/2023-football-class-rankings-top-college-recruits-impact-top-40","isPremium":true}],"title":"Recruiting FB - Class Rankings","$ref":"/v2/navigation/26865131"},{"links":[{"isExternal":false,"shortText":"Player Rankings","text":"Player Rankings","href":"https://www.espn.com/college-sports/football/recruiting/playerrankings/_/view/rn300","isPremium":true}],"title":"NCAAF Player Rankings","$ref":"/v2/navigation/29890519"}]},{"links":[{"isExternal":false,"shortText":"Daily Lines","rel":["sub"],"text":"Daily Lines","href":"https://www.espn.com/college-football/lines","isPremium":false},{"isExternal":false,"shortText":"Lines","rel":["sub"],"attributes":{"mobile":"true"},"text":"Daily Lines","href":"https://m.espn.com/ncf/dailyline","isPremium":false}],"title":"NCAAF Daily Lines","$ref":"/v2/navigation/11587165"},{"links":[{"isExternal":false,"shortText":"Capital One Bowl Mania","rel":["sub"],"attributes":{"icon":"football-college"},"text":"Capital One Bowl Mania","href":"https://fantasy.espn.com/games/college-football-bowl-mania-2022/make-picks?addata=bowlmania2022_ncaaf_web_ncaafsubnav","isPremium":false}],"title":" Capital One Bowl Mania","$ref":"/v2/navigation/30350218"},{"links":[{"isExternal":false,"shortText":"More","rel":["sub"],"attributes":{"placeholder":"more","breakpoints":"mobile"},"text":"More","href":"#","isPremium":false}],"title":"Subnav More - DO NOT EDIT","$ref":"/v2/navigation/11494110"},{"links":[{"isExternal":true,"shortText":"Tickets","rel":["sub"],"text":"Tickets","href":"https://www.vividseats.com/ncaaf/?wsUser=717&wsVar=NCFQUICKLINKS","isPremium":false}],"title":"NCAAF Tickets","$ref":"/v2/navigation/11587032"},{"links":[{"isExternal":false,"shortText":"College GameDay","rel":["sub"],"attributes":{"mobile":"false"},"text":"College GameDay","href":"https://www.espn.com/college-football/story/_/id/34409555/where-college-gameday-2022","isPremium":false},{"isExternal":false,"shortText":"College GameDay","rel":["sub"],"attributes":{"mobile":"true"},"text":"College GameDay","href":"https://www.espn.com/college-football/story/_/id/34409555/where-college-gameday-2022","isPremium":false}],"title":"College GameDay for nav","$ref":"/v2/navigation/34468601"},{"links":[{"isExternal":false,"shortText":"Awards","rel":["sub"],"attributes":{"mobile":"false"},"text":"Awards","href":"https://www.espn.com/college-football/awards","isPremium":false}],"title":"NCAAF Awards","$ref":"/v2/navigation/11587200"},{"links":[{"isExternal":false,"shortText":"College Football Playoff","rel":["sub"],"text":"College Football Playoff","href":"https://www.espn.com/college-football/playoff/","isPremium":false}],"title":"College Football Playoff","$ref":"/v2/navigation/20506878"},{"links":[{"isExternal":false,"shortText":"College Pick'em","rel":["sub"],"attributes":{"icon":"football"},"text":"College Pick'em","href":"https://fantasy.espn.com/games/college-football-pickem-2022/make-picks?addata=collegepickem2022_ncaaf_web_ncaafsubnav","isPremium":false}],"title":"College Pick'em","$ref":"/v2/navigation/29852438"},{"links":[{"isExternal":false,"shortText":"QBR","rel":["sub"],"attributes":{"mobile":"false"},"text":"Total QBR","href":"https://www.espn.com/ncf/qbr","isPremium":false},{"isExternal":false,"shortText":"QBR","rel":["sub"],"attributes":{"mobile":"true"},"text":"Total QBR","href":"https://m.espn.com/ncf/qbr","isPremium":false}],"title":"NCAAF Total QBR","$ref":"/v2/navigation/11587284"},{"links":[{"isExternal":false,"shortText":"Player Rankings","rel":["sub"],"text":"Player Rankings","href":"https://www.espn.com/college-sports/football/recruiting/playerrankings/_/view/rn300","isPremium":true}],"title":"NCAAF Player Rankings","$ref":"/v2/navigation/29890519"},{"links":[{"isExternal":false,"shortText":"Football Power Index","rel":["sub"],"attributes":{"mobile":"false"},"text":"Football Power Index","href":"https://www.espn.com/college-football/statistics/teamratings","isPremium":false}],"title":"NCAAF - Football Power Index","$ref":"/v2/navigation/13438995"},{"links":[{"isExternal":false,"shortText":"SP+ Rankings","rel":["sub"],"attributes":{"icon":"football-college"},"text":"SP+ Rankings","href":"https://www.espn.com/college-football/insider/story/_/id/35018522/college-football-sp+-rankings-week-11","isPremium":false}],"title":"SP+ CFB rankings","$ref":"/v2/navigation/28694518"},{"links":[{"isExternal":false,"shortText":"SEC Network","rel":["sub"],"attributes":{"mobile":"false"},"text":"SEC Network","href":"https://secnetwork.com","isPremium":false}],"title":"NCAAF SEC Network","$ref":"/v2/navigation/13977089"},{"links":[{"isExternal":true,"shortText":"ESPN Events","rel":["sub"],"text":"ESPN Events","href":"https://espnevents.com/","isPremium":false}],"title":"ESPN Events","$ref":"/v2/navigation/20291486"}]},"navId":12001968,"fallback":false}};
</script>
</div>
</nav>
</header>
</div>
<section id="pane-main" class="pre">
<div id="custom-nav" data-id="gamepackage-401403947"><div id="gamepackage-header-wrap" class=""><div id="gamepackage-matchup-wrap"><header class="game-strip game-package college-football pre "><div class="competitors"><div class="team away"><div class="team__content"><div class="team__banner" style="background-color: #00205b;"><div class="team__banner__wrapper"><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/145.png&h=208&w=208"/></div></div><div class="team-container"><div class="team-info"><div class="team-info-wrapper"><span class="rank">11</span><a name="&lpos=ncf:game:game:clubhouse:team" class="team-name" href="/college-football/team/_/id/145/ole-miss-rebels" data-clubhouse-uid="s:20~l:23~t:145"><span class="long-name">Ole Miss</span><span class="short-name">Rebels</span><span class="abbrev" title="Ole Miss">MISS</span></a></div><div class="record">8-2<span class="inner-record">, 4-2 Conf</span></div></div><div class="team-info-logo"><div class="logo"><a name="&lpos=ncf:game:game:clubhouse:team" href="/college-football/team/_/id/145/ole-miss-rebels" data-clubhouse-uid="s:20~l:23~t:145"><img class="team-logo" src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/145.png&h=100&w=100"/></a></div></div></div><div class="score-container"><div class="score icon-font-after"></div></div></div></div><div class="game-status"><span class="network">SECN</span><span data-date="2022-11-20T00:30Z" data-behavior="date_time"><span class="game-date" data-dateFormat="date8" data-showTimezone="false" data-isTbd="false"></span><span class="game-time time status-detail" data-dateFormat="time1" data-showTimezone="true"></span></span><div id="gamepackage-linescore-wrap"></div></div><div class="team home"><div class="team__content"><div class="team__banner" style="background-color: #000000;"><div class="team__banner__wrapper"><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/8.png&h=208&w=208"/></div></div><div class="score-container"><div class="score icon-font-before"></div></div><div class="team-container"><div class="team-info-logo"><div class="logo"><a name="&lpos=ncf:game:game:clubhouse:team" href="/college-football/team/_/id/8/arkansas-razorbacks" data-clubhouse-uid="s:20~l:23~t:8"><img class="team-logo" src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/8.png&h=100&w=100"/></a></div></div><div class="team-info"><div class="team-info-wrapper"><a name="&lpos=ncf:game:game:clubhouse:team" class="team-name" href="/college-football/team/_/id/8/arkansas-razorbacks" data-clubhouse-uid="s:20~l:23~t:8"><span class="long-name">Arkansas</span><span class="short-name">Razorbacks</span><span class="abbrev" title="Arkansas">ARK</span></a></div><div class="record">5-5<span class="inner-record">, 2-4 Conf</span></div></div></div></div></div></div></header></div>
<div id="gamepackage-links-wrap">
<div class="more-overlay-primary"></div>
<nav id="global-nav-tertiary" class="game-package-nav nav-wrap" style="display:block">
<div class="tertiary-nav-container">
<ul class="first-group">
<li class="sub summary"><a name="&lpos=ncf:game:pre:subnav:gamecast" href="/college-football/game/_/gameId/401403947" class="webview-internal"><span class="link-text">Gamecast</span><span class="link-text-short">Gamecast</span></a></li><li class="sub external tickets"><a name="&lpos=ncf:game:pre:subnav:tickets" href="https://www.vividseats.com/arkansas-razorbacks-football-tickets-razorback-stadium-11-19-2022--sports-ncaa-football/production/3782842?wsUser=717&wsVar=us~ncf~gamepackage,desktop,en" target="_blank" rel=""><span class="link-text">Tickets</span><span class="link-text-short">Tickets</span></a></li>
</ul>
</div>
</nav>
</div>
</div></div>
<div class="ad-slot ad-slot-wallpaper" data-slot-type="wallpaper" data-exclude-bp="s,m" data-slot-kvps="pos=wallpaper" data-collapse-before-load="true"></div>
<div class="ad-banner-wrapper"><div class="ad-slot ad-slot-banner ad-wrapper" data-slot-type="banner" data-slot-kvps="pos=banner"></div></div>
<section id="main-container" tabindex="-1">
<script type="text/javascript">
var __dataLayer = window.__dataLayer || {};
__dataLayer = Object.assign({}, __dataLayer,
{"site":{"country":"us","site":"espn","orientation":"desktop","edition":"en-us","language":"en_us","editionKey":"espn-en"},"pzn":{"login_status":"","entitlements":"none","disneyplus_bundle":"no","has_favorites":"no","subscriber_type":"","has_fantasy":"no","has_notifications":"no","auto_start":"no"},"page":{"nav_method":"","page_url":"https://www.espn.com/college-football/game/_/gameId/401403947","content_category":"","page_type":"game","story_id":"","section":"ncf/gamecast","prev_page":"","espnplus_category":"","espnplus_products":"","game_state":"pre","premium":"","content_type":"game","game_detail":"401403947+Ole Miss Rebels vs Arkansas Razorbacks:week-12","page_name":"ncf/game/gamecast","game_id":"","page_infrastructure":"sCore","author":"","league":"ncf","player_team_detail":"","story_title":"","feed_rule":"","espnplus_content":"","mktg_campaign":"","feed_type":"","sport":"football"},"visitor":{"dssid":"","ad_blocker":"no","unid":"","consent_groups":""},"space":"espn"}
);
</script>
<div class="main-content null">
<div id="gamepackage-wrap">
<div id="gamepackage-content-wrap" class="layout-cbc">
<div id="gamepackage-column-wrap" data-behavior="column_module_reorderer" data-device="desktop" data-column-module-reorderings='{"default":[["predictor","incontentBetting","pickCenter","againstTheSpread","gameInformation"],["topStories","teamLeaders","injuryReport","teamStatsTable","lastGames","noData","sponsoredcontent"],["tuneIn","gamecastAd","tickets","bet365","ad","shop","news","standings"]],"tablet":[[],["topStories","predictor","incontentBetting","teamLeaders","tickets","injuryReport","pickCenter","againstTheSpread","teamStatsTable","lastGames","gameInformation","shopMobile","noData","sponsoredcontent"],["tuneIn","gamecastAd","tickets","bet365","ad","shop","news","standings"]],"mobile":[[],["topStories","predictor","gamecastAd","nativeBetting","teamLeaders","tuneIn","tickets","injuryReport","pickCenter","againstTheSpread","mobileAd","teamStatsTable","lastGames","gameInformation","shopMobile","noData","sponsoredcontent"],["bet365","ad","shop","news","standings"]]}'>
<div class="col-one">
<div id="gamepackage-predictor" data-module="predictor" data-sport="football">
<div>
<div class="sub-module team-statistics" data-behavior=" index_now_feed">
<header class="bordered">
<h1>Matchup Predictor</h1>
</header>
<div class="content">
<div class="graph-wrap">
<div class="chart-container">
<div class="">
<div class="data-chart" data-behavior="data_visualization" data-chart-width="150" data-chart-type="donut" data-a-value="32.1" data-b-value="67.9">
<div class="outer-circle">
<div id="wedge-a" class="wedge-container">
<div class="wedge" style="background-color: #9c1831;">
</div>
<div class="wedge-extension" style="">
</div>
</div>
<div id="wedge-b" class="wedge-container">
<div class="wedge" style="background-color: #001148;">
</div>
<div class="wedge-extension" style=""></div>
</div>
</div>
<div class="inner-circle">
<span class="home-team">MISS</span>
<span class="away-team">ARK</span>
</div>
</div>
<span class="value-home">32.1%</span>
<span class="value-away">67.9%</span>
</div>
</div>
</div>
<div class="percentage">
<a href=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/college-football/fpi><span class="disclaimer">According to ESPN Analytics</span></a>
</div>
</div>
<div class="share now-share now-feed_item-meta">
<span class="share-count icon-font-after icon-share-solid-after">Share</span>
<div class="share-actions">
<div class="btn-close icon-font-before icon-close-solid-before"></div>
<ul data-id="null" data-name="ESPN%27s%20FPI%20gives%20Ole%20Miss%20a%2067.9%25%20chance%20to%20beat%20Arkansas%20on%2011%2F19.%20Agree%20or%20disagree%3F" data-type="article" class="article-social null" data-src="https://www.espn.com/college-football/game/_/gameId/401403947"><li><a href="https://www.facebook.com/dialog/share?href=https%3A%2F%2Fwww.espn.com%2Fcollege%2Dfootball%2Fgame%2F_%2FgameId%2F401403947&app_id=116656161708917" class="btn-social icon-font-before icon-facebook-solid-before null" target="new" data-social-type="null" data-social-tool="facebook" data-short-text="Share" data-long-text="Share with Facebook">Facebook</a></li><li><a href="https://twitter.com/intent/tweet?lang=en&url=https%3A%2F%2Fwww.espn.com%2Fcollege%2Dfootball%2Fgame%2F_%2FgameId%2F401403947&text=ESPN%27s%20FPI%20gives%20Ole%20Miss%20a%2067.9%25%20chance%20to%20beat%20Arkansas%20on%2011%2F19.%20Agree%20or%20disagree%3F" class="btn-social icon-font-before icon-twitter-solid-before null" target="new" data-social-type="null" data-social-tool="twitter" data-short-text="Tweet" data-long-text="Share with Twitter">Twitter</a></li></ul>
</div>
</div>
</div>
</div>
</div>
<div id="gamepackage-incontentbetting" data-module="incontentBetting" data-sport="football">
<div class="ad-slot-inview ad-slot-incontent-betting" data-slot-type="incontent-betting" data-include-bp="xl,l,m" data-slot-kvps="pos=incontent-betting"></div>
</div>
<div id="gamepackage-pick-center" data-module="pickCenter" data-sport="football">
<div class="sub-module pick-center" data-behavior="gamepackage_pickcenter">
<div class="pick-center">
<div class="pick-center-content">
<h1>PickCenter</h1>
<table class="mediumTable">
<thead>
<tr>
<th class="team"></th>
<th class="teamrankingsWrap">
<span class="teamrankings">TeamRankings</span>
</th>
<th><span class="numberfire">numberFire</span></th>
<th class="consensusWrap">Spread Consensus Pick</th>
<th>Spread</th>
<th>Money Line</th>
<th>O/U</th>
</tr>
</thead>
<tbody>
<tr class="awayteam">
<td class="team">
<div class="img-container">
<img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/145.png&h=100&w=100"/>
</div>
<div class="sb-meta">
<h2>
<a href="https://www.espn.com/college-football/team/_/id/145/ole-miss-rebels">
Ole Miss
</a>
</h2>
<p class="record">8-2, 4-5-1 ATS</p>
</div>
</td>
<td class="score" data-type="teamrankings">--</td>
<td class="score" data-type="numberfire">--</td>
<td class="score" data-type="consensus" rowspan="2">--</td>
<td class="score">-2.5</td>
<td class="score">
-130
</td>
<td rowspan="2" class="score">60.5</td>
</tr>
<tr class="hometeam">
<td class="team">
<div class="img-container">
<img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/8.png&h=100&w=100"/>
</div>
<div class="sb-meta">
<h2>
<a href="https://www.espn.com/college-football/team/_/id/8/arkansas-razorbacks">
Arkansas
</a>
</h2>
<p class="record">5-5, 5-5-0 ATS</p>
</div>
</td>
<td class="score" data-type="teamrankings">--</td>
<td class="score" data-type="numberfire">--</td>
<td class="score">+2.5</td>
<td class="score">
+110
</td>
</tr>
</tbody>
</table>
<table class="smallTable">
<thead>
<tr>
<th class="team" colspan="3">
<div class="img-container">
<img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/145.png&h=100&w=100"/>
</div>
<div class="sb-meta">
<p class="record">8-2, 4-5-1 ATS</p>
</div>
</th>
<th class="team" colspan="3">
<div class="img-container">
<img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/8.png&h=100&w=100"/>
</div>
<div class="sb-meta">
<p class="record">5-5, 5-5-0 ATS</p>
</div>
</th>
</tr>
</thead>
<tbody>
<tr data-type="teamrankings">
<td class="score awayteam" colspan="2">--</td>
<td class="label" colspan="2">
<a href="https://www.teamrankings.com/?trk=rs_espn_pc_preview" target="_blank"><span class="teamrankings">TeamRankings</span></a>
</td>
<td class="score hometeam" colspan="2">--</td>
</tr>
<tr data-type="numberfire">
<td class="score awayteam" colspan="2">--</td>
<td class="label" colspan="2">
<span class="numberfire">numberFire</span>
</td>
<td class="score hometeam" colspan="2">--</td>
</tr>
<tr data-type="consensus">
<td class="score" colspan="6">
<span class="label">Spread Consensus Pick</span>
<span class="value">--</span>
</td>
</tr>
<tr>
<td class="score" colspan="2">-2.5</td>
<td class="label" colspan="2">
Spread
</td>
<td class="score" colspan="2">+2.5</td>
</tr>
<tr>
<td class="score" colspan="2">
-130
</td>
<td class="label" colspan="2">
Money Line
</td>
<td class="score" colspan="2">
+110
</td>
</tr>
<tr>
<td class="score" colspan="6">
<span class="label">Over/Under</span>
<span>60.5</span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="pick-center-data">
<p class="pickCenterText">To get exclusive PickCenter analysis, you must be an ESPN+ Subscriber</p>
<a href="https://secure.web.plus.espn.com/billing/purchase/ESPN_PURCHASE_CMPGN/ESPN_PURCHASE_VOCHR/YESPN?start=login&locale=en_US&om-navmethod=PickCenter" class="btn btn-subscribe espn-plus-paywall-article button--eplus">
<div>Subscribe</div>
</a>
<a href="#" data-route="false" data-behavior="overlay" tref="/members/v3_1/login" data-regformid="espn_insider" data-language="en" data-affiliatename="espn_insider" class="btn btn-sign-in webview-internal espn-app-sign-in" data-options='{"css":"insider_overlay","width":"770","height":"342"}'>
<div>Log In</div>
</a>
</div>
<footer><a name="&lpos=college-football:game:game:pre:pickcenter:fullanalysis" href="https://insider.espn.com/insider/pickcenter/ncf/game?gameid=401403947">Full PickCenter Analysis</a></footer>
</div>
</div>
</div>
<div id="gamepackage-against-the-spread" data-module="againstTheSpread" data-sport="football">
</div>
<div id="gamepackage-game-information" data-module="gameInformation" data-sport="football">
<article class="sub-module game-information">
<header>
<h1>Game Information</h1>
</header>
<div class="content">
<div class="game-field">
<figure>
<picture ><source srcset="https://a2.espncdn.com/combiner/i?img=%2Fi%2Fvenues%2Fcollege%2Dfootball%2Fday%2Finterior%2F3887.jpg&w=351&h=147&scale=crop&cquality=80&location=origin, https://a2.espncdn.com/combiner/i?img=%2Fi%2Fvenues%2Fcollege%2Dfootball%2Fday%2Finterior%2F3887.jpg&w=702&h=294&scale=crop&cquality=40&location=origin&format=jpg 2x" media="(max-width: 375px)"><source srcset="https://a2.espncdn.com/combiner/i?img=%2Fi%2Fvenues%2Fcollege%2Dfootball%2Fday%2Finterior%2F3887.jpg&w=743&h=311&scale=crop&cquality=80&location=origin&format=jpg, https://a2.espncdn.com/combiner/i?img=%2Fi%2Fvenues%2Fcollege%2Dfootball%2Fday%2Finterior%2F3887.jpg&w=1486&h=622&scale=crop&cquality=40&location=origin&format=jpg 2x" media="(min-width: 376px) and (max-width: 767px)"><source srcset="https://a2.espncdn.com/combiner/i?img=%2Fi%2Fvenues%2Fcollege%2Dfootball%2Fday%2Finterior%2F3887.jpg&w=276&h=116&scale=crop&cquality=80&location=origin, https://a2.espncdn.com/combiner/i?img=%2Fi%2Fvenues%2Fcollege%2Dfootball%2Fday%2Finterior%2F3887.jpg&w=552&h=232&scale=crop&cquality=40&location=origin&format=jpg 2x" media="(min-width: 768px)"><img class="null lazyload" ></picture>
<figcaption>
<div class="caption-wrapper">
Razorback Stadium
</div>
</figcaption>
</figure>
<div class="game-details">
<br>
<div class="game-date-time">
<span data-date="2022-11-20T00:30Z" data-behavior="date_time">
<span class="time game-time" data-dateformat="time1" data-showtimezone="true"></span>
<span class="game-date" data-dateformat="date12" data-isTbd="false"></span>
</span>
</div>
<div class="game-network">
Coverage: SECN
</div>
</div>
</div>
<div class="location-details">
<ul><li><a class="weather-link external" href="https://www.accuweather.com/en/us/donald-w-reynolds-razorback-stadium-ar/72701/hourly-weather-forecast/53533_poi?day=11&hbhhour=18&lang=en-us&partner=espn_gc" target="_blank"><div class="accuweather"></div><p>Gametime Weather<p></a></li>
<li>
<div class="game-location">
Fayetteville, AR
</div>
<a class="temperature-link" href="https://www.accuweather.com/en/us/donald-w-reynolds-razorback-stadium-ar/72701/hourly-weather-forecast/53533_poi?day=11&hbhhour=18&lang=en-us&partner=espn_gc" target="_blank">
<p class="temperature">51°</p>
<div class="accu-weather-icons md icon-33"></div>
</a>
</li>
</ul>
<div class="odds">
<div class="odds-lines-plus-logo">
<ul>
<li>Line: MISS -2.5</li>
<li>Over/Under: 60.5</li>
</ul>
</div>
<div class="odds-attribution">
<img src="https://a.espncdn.com/redesign/assets/img/logos/odds-attribution-caesars-dark.svg" class="bettingImg">
</div>
</div>
<div class="attendance"><div class="game-info-note capacity">Capacity: 76,212</div></div>
</div>
</div>
</article>
</div>
</div>
<div class="col-two">
<div id="gamepackage-top-stories" data-module="topStories" data-sport="football">
<article class="sub-module top-stories empty" data-module="topStories">
<div class="content"></div>
</article>
</div>
<div id="gamepackage-team-leaders" data-module="teamLeaders" data-sport="football">
<article class="sub-module leaderMod current-leaders"><header class="bordered"><h1>Season Leaders</h1></header><div class="content"><div class="leader-container"><div class="grid-row leader-content"><div class="leader-column" data-stat-key="passingYards"><div class="grid-row"><div class="headline"><h3>Passing Yards</h3></div><div class="away-leader"><div class="grid-row"><div class="player-image"><a href="https://www.espn.com/college-football/player/_/id/4689114/jaxson-dart" data-player-uid="s:20~l:23~a:4689114" data-player-id="4689114"><span class="headshot-md athlete"><img class=" lazyload" data-src="https://a.espncdn.com/combiner/i?img=/i/headshots/college-football/players/full/4689114.png&h=102&scale=crop&w=102"></span></a><span class="player-team">MISS</span></div><div class="player-detail"><span class="player-name" title="Jaxson Dart"><a class="highlight-player" name="&lpos=college-football:game:game:pre:leaders:player" href="https://www.espn.com/college-football/player/_/id/4689114/jaxson-dart" data-player-uid="s:20~l:23~a:4689114" data-player-id="4689114">J. Dart</a></span><span class="player-stats">150-247, 2123 YDS, 15 TD, 7 INT</span></div></div></div><div class="home-leader"><div class="grid-row"><div class="player-image"><a name="&lpos=college-football:game:game:pre:leaders:player" href="https://www.espn.com/college-football/player/_/id/4567149/kj-jefferson" data-player-uid="s:20~l:23~a:4567149" data-player-id="4567149"><span class="headshot-md athlete"><img class=" lazyload" data-src="https://a.espncdn.com/combiner/i?img=/i/headshots/college-football/players/full/4567149.png&h=102&scale=crop&w=102"></span></a><span class="player-team">ARK</span></div><div class="player-detail"><span class="player-name" title="KJ Jefferson"><a class="highlight-player" name="&lpos=college-football:game:game:pre:leaders:player" href="https://www.espn.com/college-football/player/_/id/4567149/kj-jefferson" data-player-uid="s:20~l:23~a:4567149" data-player-id="4567149">K. Jefferson</a></span><span class="player-stats">148-222, 1981 YDS, 17 TD, 3 INT</span></div></div></div></div></div><div class="leader-column" data-stat-key="rushingYards"><div class="grid-row"><div class="headline"><h3>Rushing Yards</h3></div><div class="away-leader"><div class="grid-row"><div class="player-image"><a href="https://www.espn.com/college-football/player/_/id/4685702/quinshon-judkins" data-player-uid="s:20~l:23~a:4685702" data-player-id="4685702"><span class="headshot-md athlete"><img class=" lazyload" data-src="https://a.espncdn.com/combiner/i?img=/i/headshots/college-football/players/full/4685702.png&h=102&scale=crop&w=102"></span></a><span class="player-team">MISS</span></div><div class="player-detail"><span class="player-name" title="Quinshon Judkins"><a class="highlight-player" name="&lpos=college-football:game:game:pre:leaders:player" href="https://www.espn.com/college-football/player/_/id/4685702/quinshon-judkins" data-player-uid="s:20~l:23~a:4685702" data-player-id="4685702">Q. Judkins</a></span><span class="player-stats">205 CAR, 1171 YDS, 15 TD</span></div></div></div><div class="home-leader"><div class="grid-row"><div class="player-image"><a name="&lpos=college-football:game:game:pre:leaders:player" href="https://www.espn.com/college-football/player/_/id/4601080/raheim-sanders" data-player-uid="s:20~l:23~a:4601080" data-player-id="4601080"><span class="headshot-md athlete"><img class=" lazyload" data-src="https://a.espncdn.com/combiner/i?img=/i/headshots/college-football/players/full/4601080.png&h=102&scale=crop&w=102"></span></a><span class="player-team">ARK</span></div><div class="player-detail"><span class="player-name" title="Raheim Sanders"><a class="highlight-player" name="&lpos=college-football:game:game:pre:leaders:player" href="https://www.espn.com/college-football/player/_/id/4601080/raheim-sanders" data-player-uid="s:20~l:23~a:4601080" data-player-id="4601080">R. Sanders</a></span><span class="player-stats">185 CAR, 1147 YDS, 7 TD</span></div></div></div></div></div><div class="leader-column" data-stat-key="receivingYards"><div class="grid-row"><div class="headline"><h3>Receiving Yards</h3></div><div class="away-leader"><div class="grid-row"><div class="player-image"><a href="https://www.espn.com/college-football/player/_/id/4426485/jonathan-mingo" data-player-uid="s:20~l:23~a:4426485" data-player-id="4426485"><span class="headshot-md athlete"><img class=" lazyload" data-src="https://a.espncdn.com/combiner/i?img=/i/headshots/college-football/players/full/4426485.png&h=102&scale=crop&w=102"></span></a><span class="player-team">MISS</span></div><div class="player-detail"><span class="player-name" title="Jonathan Mingo"><a class="highlight-player" name="&lpos=college-football:game:game:pre:leaders:player" href="https://www.espn.com/college-football/player/_/id/4426485/jonathan-mingo" data-player-uid="s:20~l:23~a:4426485" data-player-id="4426485">J. Mingo</a></span><span class="player-stats">37 REC, 723 YDS, 5 TD</span></div></div></div><div class="home-leader"><div class="grid-row"><div class="player-image"><a name="&lpos=college-football:game:game:pre:leaders:player" href="https://www.espn.com/college-football/player/_/id/4259550/matt-landers" data-player-uid="s:20~l:23~a:4259550" data-player-id="4259550"><span class="headshot-md athlete"><img class=" lazyload" data-src="https://a.espncdn.com/combiner/i?img=/i/headshots/college-football/players/full/4259550.png&h=102&scale=crop&w=102"></span></a><span class="player-team">ARK</span></div><div class="player-detail"><span class="player-name" title="Matt Landers"><a class="highlight-player" name="&lpos=college-football:game:game:pre:leaders:player" href="https://www.espn.com/college-football/player/_/id/4259550/matt-landers" data-player-uid="s:20~l:23~a:4259550" data-player-id="4259550">M. Landers</a></span><span class="player-stats">37 REC, 663 YDS, 4 TD</span></div></div></div></div></div></div></div></div></article>
</div>
<div id="gamepackage-injury-report" data-module="injuryReport" data-sport="football">
</div>
<div id="gamepackage-team-stats-table" data-module="teamStatsTable" data-sport="football">
<article class="sub-module team-stats-list"><div class="content"><table class="mod-data"><thead><tr class="header"><th><h1>Team Stats</h1></th><th><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/145.png&h=100&w=100"/></th><th><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/8.png&h=100&w=100"/></th></tr></thead><tbody><tr class="" data-stat-attr="totalPointsPerGame"><td>Points Per Game</td><td>36.1</td><td>29.9</td></tr><tr class="" data-stat-attr="totalPointsPerGameAllowed"><td>Points Allowed Per Game</td><td>22.4</td><td>28.9</td></tr><tr class="highlight" data-stat-attr="yardsPerGame"><td>Total Yards</td><td>485.7</td><td>461.7</td></tr><tr class="indent" data-stat-attr="passingYardsPerGame"><td>Yards Passing</td><td>225.9</td><td>238.4</td></tr><tr class="indent" data-stat-attr="rushingYardsPerGame"><td>Yards Rushing</td><td>259.8</td><td>223.3</td></tr><tr class="highlight" data-stat-attr="yardsPerGameAllowed"><td>Yards Allowed</td><td>371.9</td><td>426.8</td></tr><tr class="indent" data-stat-attr="passingYardsPerGameAllowed"><td>Pass Yards Allowed</td><td>220.9</td><td>280.5</td></tr><tr class="indent" data-stat-attr="rushingYardsPerGameAllowed"><td>Rush Yards Allowed</td><td>151.0</td><td>146.3</td></tr></tbody></table></div></article>
</div>
<div id="gamepackage-last-games" data-module="lastGames" data-sport="football">
<div class="last-games sub-module__tabs"><div class="tab-container alt"><ul class="tabs alt tabs__skinny" data-behavior="tabs_transform"><li class="active"><span><img class="main" src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/145.png&h=100&w=100"><div class="last-games__team-name">Ole Miss Last 5</div></span></li><li class=""><span><img class="main" src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/8.png&h=100&w=100"><div class="last-games__team-name">Arkansas Last 5</div></span></li></ul></div><div class="tab-content sub-module__parallel"><div class="tab-pane active"><article class="sub-module"><header class="bordered"><h1><img class="main" src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/145.png&h=100&w=100"><div class="last-games__team-name">Ole Miss Last 5</div></h1></header><div class="content"><table><thead><tr><th>Date</th><th>OPP</th><th>result</th></tr></thead><tbody><tr><td>11/12/22</td><td><a href="/college-football/team/_/id/333/alabama-crimson-tide" class="webview-internal" data-clubhouse-uid="s:20~l:23~t:333"><div>vs</div><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/333.png&h=100&w=100"/><div class="team-abbrev">#9 ALA</div></a></td><td><a class="game-result-score" href="https://www.espn.com/college-football/game/_/gameId/401403943" data-gameid="401403943" data-sportname="football" data-leagueabbrev="college-football"><span class="game-result loss">L</span>30-24</a></td></tr><tr><td>10/29/22</td><td><a href="/college-football/team/_/id/245/texas-am-aggies" class="webview-internal" data-clubhouse-uid="s:20~l:23~t:245"><div>@</div><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/245.png&h=100&w=100"/><div class="team-abbrev">TA&M</div></a></td><td><a class="game-result-score" href="https://www.espn.com/college-football/game/_/gameId/401403931" data-gameid="401403931" data-sportname="football" data-leagueabbrev="college-football"><span class="game-result win">W</span>31-28</a></td></tr><tr><td>10/22/22</td><td><a href="/college-football/team/_/id/99/lsu-tigers" class="webview-internal" data-clubhouse-uid="s:20~l:23~t:99"><div>@</div><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/99.png&h=100&w=100"/><div class="team-abbrev">LSU</div></a></td><td><a class="game-result-score" href="https://www.espn.com/college-football/game/_/gameId/401403923" data-gameid="401403923" data-sportname="football" data-leagueabbrev="college-football"><span class="game-result loss">L</span>45-20</a></td></tr><tr><td>10/15/22</td><td><a href="/college-football/team/_/id/2/auburn-tigers" class="webview-internal" data-clubhouse-uid="s:20~l:23~t:2"><div>vs</div><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/2.png&h=100&w=100"/><div class="team-abbrev">AUB</div></a></td><td><a class="game-result-score" href="https://www.espn.com/college-football/game/_/gameId/401403920" data-gameid="401403920" data-sportname="football" data-leagueabbrev="college-football"><span class="game-result win">W</span>48-34</a></td></tr><tr><td>10/8/22</td><td><a href="/college-football/team/_/id/238/vanderbilt-commodores" class="webview-internal" data-clubhouse-uid="s:20~l:23~t:238"><div>@</div><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/238.png&h=100&w=100"/><div class="team-abbrev">VAN</div></a></td><td><a class="game-result-score" href="https://www.espn.com/college-football/game/_/gameId/401403915" data-gameid="401403915" data-sportname="football" data-leagueabbrev="college-football"><span class="game-result win">W</span>52-28</a></td></tr></tbody></table></div><footer><a href="https://www.espn.com/college-football/team/schedule/_/id/145" name="&lpos=college-football:game:game:pre:last5:fullschedule">Full Schedule</a></footer></article></div><div class="tab-pane "><article class="sub-module"><header class="bordered"><h1><img class="main" src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/8.png&h=100&w=100"><div class="last-games__team-name">Arkansas Last 5</div></h1></header><div class="content"><table><thead><tr><th>Date</th><th>OPP</th><th>result</th></tr></thead><tbody><tr><td>11/12/22</td><td><a href="/college-football/team/_/id/99/lsu-tigers" class="webview-internal" data-clubhouse-uid="s:20~l:23~t:99"><div>vs</div><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/99.png&h=100&w=100"/><div class="team-abbrev">#7 LSU</div></a></td><td><a class="game-result-score" href="https://www.espn.com/college-football/game/_/gameId/401403939" data-gameid="401403939" data-sportname="football" data-leagueabbrev="college-football"><span class="game-result loss">L</span>13-10</a></td></tr><tr><td>11/5/22</td><td><a href="/college-football/team/_/id/2335/liberty-flames" class="webview-internal" data-clubhouse-uid="s:20~l:23~t:2335"><div>vs</div><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/2335.png&h=100&w=100"/><div class="team-abbrev">LIB</div></a></td><td><a class="game-result-score" href="https://www.espn.com/college-football/game/_/gameId/401403932" data-gameid="401403932" data-sportname="football" data-leagueabbrev="college-football"><span class="game-result loss">L</span>21-19</a></td></tr><tr><td>10/29/22</td><td><a href="/college-football/team/_/id/2/auburn-tigers" class="webview-internal" data-clubhouse-uid="s:20~l:23~t:2"><div>@</div><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/2.png&h=100&w=100"/><div class="team-abbrev">AUB</div></a></td><td><a class="game-result-score" href="https://www.espn.com/college-football/game/_/gameId/401403927" data-gameid="401403927" data-sportname="football" data-leagueabbrev="college-football"><span class="game-result win">W</span>41-27</a></td></tr><tr><td>10/15/22</td><td><a href="/college-football/team/_/id/252/byu-cougars" class="webview-internal" data-clubhouse-uid="s:20~l:23~t:252"><div>@</div><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/252.png&h=100&w=100"/><div class="team-abbrev">BYU</div></a></td><td><a class="game-result-score" href="https://www.espn.com/college-football/game/_/gameId/401403916" data-gameid="401403916" data-sportname="football" data-leagueabbrev="college-football"><span class="game-result win">W</span>52-35</a></td></tr><tr><td>10/8/22</td><td><a href="/college-football/team/_/id/344/mississippi-state-bulldogs" class="webview-internal" data-clubhouse-uid="s:20~l:23~t:344"><div>@</div><img src="https://a.espncdn.com/combiner/i?img=/i/teamlogos/ncaa/500/344.png&h=100&w=100"/><div class="team-abbrev">#23 MSST</div></a></td><td><a class="game-result-score" href="https://www.espn.com/college-football/game/_/gameId/401403914" data-gameid="401403914" data-sportname="football" data-leagueabbrev="college-football"><span class="game-result loss">L</span>40-17</a></td></tr></tbody></table></div><footer><a href="https://www.espn.com/college-football/team/schedule/_/id/8" name="&lpos=college-football:game:game:pre:last5:fullschedule">Full Schedule</a></footer></article></div></div></div>
</div>
<div id="gamepackage-nodata" data-module="noData" data-sport="football">
<article class="sub-module noData" data-behavior="column_no_data">
<div class="content">
Data is currently unavailable.
</div>
</article>
</div>
<div class="sponsored-headlines"><div class="taboola-container" data-network="espn-network" data-src="https://www.espn.com/college-football/game/_/gameId/401403947" data-type="category" data-mode="thumbnails-3x1-b" data-placement="game" data-target-type="mix"></div></div></div>
<div class="col-three">
<div id="gamepackage-tunein" data-module="tuneIn" data-sport="football">
</div>
<div id="gamepackage-gamecastad" data-module="gamecastAd" data-sport="football">
</div>
<article class="sub-module powered-by" data-module="tickets"><header class="powered-by__header"><h1><div class="powered-by__headline">Find Tickets</div><div class="powered-by__logo"><a class="powered-by__vivid" target="_blank" href="https://www.vividseats.com" name="&lpos=ncf:teamclubhouse:vivid">Tickets</a></div></h1></header><div class="content"><ul class="powered-by__details"><li class="powered-by__details--game"><span>Arkansas vs Ole Miss Rebels</span><div class="venue-date">Razorback Stadium - <span data-date="2022-11-20T00:30:00Z" data-behavior="date_time"><span class="game-date" data-dateformat="date15" data-isTbd="false"></span></span></div><a target="_blank" name="&lpos=ncf:teamclubhouse:vivid" href="https://www.vividseats.com/arkansas-razorbacks-football-tickets-razorback-stadium-11-19-2022--sports-ncaa-football/production/3782842?wsUser=717&wsVar=us~ncf~gamepackage,desktop,en">Tickets as low as $23</a></li><li class="powered-by__details--buy">Buy <a target="_blank" name="&lpos=ncf:teamclubhouse:vivid" href="https://www.vividseats.com/ncaaf/arkansas-razorbacks-tickets.html?wsUser=717&wsVar=us~ncf~gamepackage,desktop,en">Arkansas tickets</a> with <a target="_blank" name="&lpos=ncf:teamclubhouse:vivid" href="https://www.vividseats.com?wsUser=717&wsVar=us~ncf~gamepackage,desktop,en">VividSeats</a></li><li class="powered-by__details--search">Other Games<div class="dropdown-wrapper hoverable" data-behavior="button_dropdown"><button class="button-filter med dropdown-toggle">Search by Team</button><ul class="dropdown-menu med" role="menu"><li><a name="&lpos=ncf:teamclubhouse:vivid" href="https://www.vividseats.com/ncaaf/?wsUser=717" target="_blank">All COLLEGE-FOOTBALL Tickets</a></li><li><a name="&lpos=ncf:teamclubhouse:vivid" href="https://www.vividseats.com/ncaaf/arkansas-razorbacks-tickets.html?wsUser=717" target="_blank">All Arkansas Razorbacks Tickets</a></li><li><a name="&lpos=ncf:teamclubhouse:vivid" href="https://www.vividseats.com/arkansas-razorbacks-football-tickets-razorback-stadium-11-19-2022--sports-ncaa-football/production/3782842?wsUser=717" target="_blank">11/19 vs Ole Miss Rebels 946 tickets left</a></li><li><a name="&lpos=ncf:teamclubhouse:vivid" href="https://www.vividseats.com/missouri-tigers-football-tickets-faurot-field-11-26-2022--sports-ncaa-football/production/3784075?wsUser=717" target="_blank">11/25 @ Missouri Tigers 1733 tickets left</a></li></ul></div></li></ul></div></article>
<div id="gamepackage-ad" data-module="ad" data-sport="football">
<div class="ad-300"><div class="ad-center"><div class="ad-slot ad-slot-incontent ad-wrapper" data-slot-type="incontent" data-exclude-bp="s,m" data-slot-kvps="pos=incontent"></div></div></div>
</div>
<div id="gamepackage-shop" data-module="shop" data-sport="football">
</div>
<div id="gamepackage-news" data-module="news" data-sport="football">
<article class="sub-module sub-module-news">
<header>
<h1>College Football News</h1>
</header>
<ul class="content">
<li class="text-container no-thumb"><a name="&lpos=ncf:game:game:pre:ncfnews:1" href="/video/clip?id=35030011" data-article-id="35030011" data-leagueabbrev="ncaaf" data-sportname="football"><figure class="feed-item-figure"><div class="img-wrap"><img class=" lazyload" data-src="https://a.espncdn.com/combiner/i?img=/media/motion/2022/1115/dm_221115_svp_mark_schlabach_on_school_shooting104/dm_221115_svp_mark_schlabach_on_school_shooting104.jpg&w=180&h=-1&scale=crop&location=origin"></div></figure><h2>3 Virginia football players killed Sunday in Charlottesville shooting</h2><p>Mark Schlabach reports from the University of Virginia on the latest surrounding the shooting on campus.</p></a></li><li class="text-container no-thumb"><a name="&lpos=ncf:game:game:pre:ncfnews:2" href="/video/clip?id=35028776" data-article-id="35028776" data-leagueabbrev="ncaaf" data-sportname="football"><figure class="feed-item-figure"><div class="img-wrap"><img class=" lazyload" data-src="https://a.espncdn.com/combiner/i?img=/media/motion/2022/1114/dm_221114_SEC_NCF_Analysis_CFP_picture_221114/dm_221114_SEC_NCF_Analysis_CFP_picture_221114.jpg&w=180&h=-1&scale=crop&location=origin"></div></figure><h2>CFP picture remains muddled, but could sort itself out</h2><p>Thinking Out Loud's Spencer Hall and Richard Johnson debate the myriad of College Football Playoff scenarios that are still in play as the regular season winds down.</p></a></li><li class="text-container no-thumb"><a name="&lpos=ncf:game:game:pre:ncfnews:3" href="/video/clip?id=35026467" data-article-id="35026467" data-leagueabbrev="ncaaf" data-sportname="football"><figure class="feed-item-figure"><div class="img-wrap"><img class=" lazyload" data-src="https://a.espncdn.com/combiner/i?img=/media/motion/2022/1114/dm_221114_Catch_of_the_year_Jefferson_ND/dm_221114_Catch_of_the_year_Jefferson_ND.jpg&w=180&h=-1&scale=crop&location=origin"></div></figure><h2>Catch of the year candidates: Who did it best?</h2><p>Notre Dame's Braden Lenzy and Vikings' Justin Jefferson go head to head for catch of the year.</p></a></li><li class="text-container no-thumb"><a name="&lpos=ncf:game:game:pre:ncfnews:4" href="/video/clip?id=35026945" data-article-id="35026945" data-leagueabbrev="ncaaf" data-sportname="football"><figure class="feed-item-figure"><div class="img-wrap"><img class=" lazyload" data-src="https://a.espncdn.com/combiner/i?img=/media/motion/2022/1114/dm_221114_SEC_NCF_Presser_UGA_KIrby_221114/dm_221114_SEC_NCF_Presser_UGA_KIrby_221114.jpg&w=180&h=-1&scale=crop&location=origin"></div></figure><h2>Smart reveals Georgia's secret to avoiding complacency</h2><p>Kirby Smart explains how the No. 1 Bulldogs remain hungry after working their way to the top and breaks down Kentucky QB Will Levis' unaffected play style.</p></a></li><li class="text-container no-thumb"><a name="&lpos=ncf:game:game:pre:ncfnews:5" href="/video/clip?id=35027487" data-article-id="35027487" data-leagueabbrev="ncaaf" data-sportname="football"><figure class="feed-item-figure"><div class="img-wrap"><img class=" lazyload" data-src="https://a.espncdn.com/combiner/i?img=/media/motion/2022/1114/dm_221114_SEC_NCF_Presser_Ark_Pittman_221114/dm_221114_SEC_NCF_Presser_Ark_Pittman_221114.jpg&w=180&h=-1&scale=crop&location=origin"></div></figure><h2>Hogs' Pittman shares thrill of night game vs. Rebels</h2><p>Sam Pittman points to Arkansas' recent improvements and identifies specific No. 11 Ole Miss talent and its disruptive defense as threats in the Week 12 matchup.</p></a></li><li class="text-container no-thumb"><a name="&lpos=ncf:game:game:pre:ncfnews:6" href="/video/clip?id=35027490" data-article-id="35027490" data-leagueabbrev="ncaaf" data-sportname="football"><figure class="feed-item-figure"><div class="img-wrap"><img class=" lazyload" data-src="https://a.espncdn.com/combiner/i?img=/media/motion/2022/1114/dm_221114_SEC_NCF_Presser_LSU_Kelly_221114/dm_221114_SEC_NCF_Presser_LSU_Kelly_221114.jpg&w=180&h=-1&scale=crop&location=origin"></div></figure><h2>Kelly praises No. 6 LSU for making winning 'a habit'</h2><p>Brian Kelly says the Tigers have developed an undeniable winning attitude, but that non-conference foe UAB presents challenges.</p></a></li>
</ul>
<footer>
<a name="&lpos=ncf:game:game:pre:ncfnews:all" class="view-more" href="/college-football/" data-clubhouse-uid="s:20~l:23">
All College Football News
</a>
</footer>
</article>
</div>
<div data-module="standings" data-sport="football"><article class="sub-module standings" data-module="standings"><header><h1>2022 Southeastern Conference Standings</h1></header><div class="content"><table class="mod-data"><thead ><tr><th>TEAM</th><th class="right">CONF</th><th class="right">OVR</th></tr></thead><tbody><tr><td><a href="/college-football/team/_/id/61/georgia-bulldogs" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:61">Georgia<a></td><td class="right">7-0</td><td class="right">10-0</td></tr><tr><td><a href="/college-football/team/_/id/2633/tennessee-volunteers" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:2633">Tennessee<a></td><td class="right">5-1</td><td class="right">9-1</td></tr><tr><td><a href="/college-football/team/_/id/96/kentucky-wildcats" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:96">Kentucky<a></td><td class="right">3-4</td><td class="right">6-4</td></tr><tr><td><a href="/college-football/team/_/id/57/florida-gators" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:57">Florida<a></td><td class="right">3-4</td><td class="right">6-4</td></tr><tr><td><a href="/college-football/team/_/id/2579/south-carolina-gamecocks" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:2579">South Carolina<a></td><td class="right">3-4</td><td class="right">6-4</td></tr><tr><td><a href="/college-football/team/_/id/142/missouri-tigers" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:142">Missouri<a></td><td class="right">2-5</td><td class="right">4-6</td></tr><tr><td><a href="/college-football/team/_/id/238/vanderbilt-commodores" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:238">Vanderbilt<a></td><td class="right">1-5</td><td class="right">4-6</td></tr></tbody><thead class="bordered"><tr><th>TEAM</th><th class="right">CONF</th><th class="right">OVR</th></tr></thead><tbody><tr><td><a href="/college-football/team/_/id/99/lsu-tigers" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:99">LSU<a></td><td class="right">6-1</td><td class="right">8-2</td></tr><tr><td><a href="/college-football/team/_/id/333/alabama-crimson-tide" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:333">Alabama<a></td><td class="right">5-2</td><td class="right">8-2</td></tr><tr><td><a href="/college-football/team/_/id/145/ole-miss-rebels" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:145">Ole Miss<a></td><td class="right">4-2</td><td class="right">8-2</td></tr><tr><td><a href="/college-football/team/_/id/344/mississippi-state-bulldogs" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:344">Mississippi State<a></td><td class="right">3-4</td><td class="right">6-4</td></tr><tr><td><a href="/college-football/team/_/id/8/arkansas-razorbacks" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:8">Arkansas<a></td><td class="right">2-4</td><td class="right">5-5</td></tr><tr><td><a href="/college-football/team/_/id/2/auburn-tigers" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:2">Auburn<a></td><td class="right">2-5</td><td class="right">4-6</td></tr><tr><td><a href="/college-football/team/_/id/245/texas-am-aggies" name="&lpos=ncf:teamclubhouse:standings:team" data-clubhouse-uid="s:20~l:23~t:245">Texas A&M<a></td><td class="right">1-6</td><td class="right">3-7</td></tr></tbody></table></div><footer><a name="ncf:game:summary:pre:conference:fullstandings" href="https://www.espn.com/college-football/standings/_/group/8/view/fbs-i-a" data-standings-uid="s:20~l:23">Full Standings</a></footer></article></div></div>
</div>
</div>
</div>
</div>
</section>
</section>
</div>
<script>
var espn_ui = window.espn_ui || {};
espn_ui.staticRef = "https://a.espncdn.com/redesign/0.618.2";
espn_ui.imgRef = "https://a.espncdn.com/redesign/assets/img/";
espn_ui.insertRef = "https://a.espncdn.com";
espn_ui.deviceType = "desktop";
espn_ui.pageShell = false;
espn_ui.pubKey = null;
espn.api = {};
espn_ui.webview = false;
espn_ui.useNativeBridge = false;
espn_ui.onefeed = false;
espn_ui.abtests = {"kahuna":40,"kplus":41,"kminus":42,"auddev1":45,"auddev2":46,"auddevcontrol":47,"headlinetester":48,"control":52,"carousel":53,"followcarouselcontrol":54,"followcarouseltest":55,"followcarouselenabled":56,"adtestcontrol":57,"favesTest":58,"tierTest":59,"relatedVideosCDP":60,"relatedVideosATG":61,"stayOnHttps":62,"hideminifeed":63,"epluslogo":64,"everscroll":65,"taboola-5":70,"taboola-10":71,"taboola-15":72,"taboola-1x6mobile":73,"taboola-1x8mobile":74,"eplusmodulelinks":75,"eplusmoduledescriptor":76,"controlvariant":77,"personalizedvariant":78,"plethoravariant1":79,"plethoravariant2":80,"plethoravariant3":81,"plethoracontrol":82,"controllegalfooter":83,"whitelegalfooter":84,"graylegalfooter":85,"paragraphpaywalltext0":86,"paragraphpaywalltext1":87,"paywalltextcontrol":88,"paragraphpaywalltext3":89,"paywalltextoverride":90,"articleinlinefooter":91,"articlebottompopupfooter":92,"plethoravariant4":93,"plethoravariant5":94,"plethoravariant6":95,"plethoravariant7":96,"plethoracontrol2":97,"articleadslot":98,"articleadslotcontrol":99};
espn_ui.isCurated = false;
espn_ui.error = false;
espn_ui.dcf = false;
function setIsCurated () {
$('#news-feed').attr('data-curated', espn_ui.isCurated);
$(document).trigger('checkIfShouldAutoUpdate');
espn_ui.checkIfShouldAutoUpdate = true;
}
//this is also set on ajax page loads in js/helpers/page.js
if (document.readyState == 'complete') {
setIsCurated();
} else {
window.onload = setIsCurated;
}
var tcStatus = {"tcTwoLocked":false,"tcLocked":false,"tcwLocked":false,"tcTwoOn":false,"tcwOn":false,"tcOn":false};
//Pass Array of Available DTC Packages to Client
var DTCpackages = [{"allowsRestore":true,"upgrade":{"requiredEntitlement":"ESPN_PLUS","requiredSource":"D2C","ctaButtonSubheader":"GET UFC 281 & ESPN+ ANNUAL PLAN FOR {price}","subtitle":"EXCLUSIVELY FOR MONTHLY SUBSCRIBERS","requiredCategoryCodes":["espn_switch_from"],"ctaButtonTitle":"UPGRADE AND BUY","ctaButtonHeader":"SAVE 30% WHEN YOU UPGRADE & BUNDLE","billingDisclaimer":"You will be charged {price} (plus tax, where applicable) upon purchase. Your ESPN+ annual plan will renew for $99.99 (plus tax, where applicable), one year from the date of the end of your monthly subscription. Cancel any time before then to avoid being charged. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and The Walt Disney Family of Companies.","voucherCode":"ESPN_PPV281BNDL_VOCHR","disclaimer":"Your ESPN+ annual subscription will auto-renew at $99.99 per year (plus tax, where applicable). Cancel anytime. Subject to terms at espn.com/plus-terms.","billing":{"showCheckBox":true,"billingDisclosureError":"Please check the above box to agree to the annual renewal","ctaButtonTitle":"Agree & Subscribe","billingDisclosure":"I agree to the automatic renewal provision."},"campaignCode":"ESPN_PURCHASE_CMPGN"},"entitlement":"ESPN_PLUS_UFC_PPV_281","subscription":{"subscribeText":"Purchase","subscribedText":"Purchased","name":"UFC 281","backgroundColors":[""],"subscriptionExpiredText":"Expired","description":"11/12/2022 - Adesanya vs. Pereira","deeplinkAction":"sportscenter:https://x-callback-url/showPaywall"},"tuneIn":{"buttonText":"Subscribe Now","upsellTextKey":"<p>More <span>Sports.<\/span> More <span>Leagues.<\/span><\/p><p>More <span>Teams.<\/span> More <span>Games.<\/span><\/p>"},"concurrencyLimit":2,"billing":{"showCheckBox":false,"billingDisclosureError":"Please check the above box to agree to the annual renewal","ctaButtonTitle":"Buy {price}","billingDisclosure":"I agree to the automatic renewal provision."},"isPPV":true,"paywall":{"ctaButtonSubheader":"Buy UFC 281 PPV for {price}","ctaButtonTitle":"BUY UFC 281","backgroundColors":[""],"informativeLoginText":"Already an ESPN+ subscriber? Login below to watch your PPV or purchase for $74.99.","title":"UFC 281 - Saturday, November 12 - Adesanya vs. Pereira"},"countryCodes":["US"],"isIap":true,"accountsHold":[{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"direct","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to es.pn/billing."},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"hulu","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to secure.hulu.com/account."},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"disneyplus","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to disneyplus.com/account."},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"google","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to https://play.google.com/store/paymentmethods"},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"apple","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to https://apps.apple.com/account/billing."},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"generic","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to the platform where you purchased ESPN+."},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"xfinity","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to the platform where you purchased ESPN+."}],"name":"UFC 281","postPurchaseScreen":{"promo":{"linkUrl":"https://go.onelink.me/Ecx6/52c116c4","linkText":"BUY NOW","message":"app.iap.espnplus.postpurchase.promo.message","enabled":false,"logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/welcome/promo/promo-full.png"},"buttonText":"Start Streaming Now","message":"Score! You're all set.","enabled":false,"logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/[email protected]","backgroundImageUrl":"https://secure.espncdn.com/paywall/ios/[email protected]"},"id":57,"embeddedPaywall":{"ctaButtonTitle":"Purchase","title":"app.iap.Paywall_Sub_UFC_PPV_281_ios"},"shortName":"UFC","billingDisclaimer":"You will be charged {price} (plus tax, where applicable) upon purchase. Subject to terms at espn.com/plus-terms.","showPregame":true,"bundle":{"requiredEntitlement":"ESPN_PLUS","paywalls":[{"legalText1":"Available in US Only","disclaimerText2":"By clicking \"Agree & Subscribe\" below, you also agree to the ESPN+ Subscriber Agreement, and acknowledge that you have read our Privacy Policy. Not for commercial use.","disclaimerText1":"Savings compared to price of an Annual Plan and the standalone PPV price. By clicking \"Agree & Subscribe\", you are enrolling in automatic payments of $99.99/year (plus tax, where applicable) that will continue until you cancel. Cancel anytime, effective at the end of your billing period. No refunds or credits for partial months or years.","buttons":[{"buttonImage":" ","headerText":"STEP 1 of 2","buttonHighlightedImage":" ","title":"Agree & Subscribe","subheaderText":"Sign up for an ESPN+ Annual Plan for $99.99","textColor":"#ffffff","disclaimer":"You will be charged yearly until you cancel. Cancel anytime. Subject to ESPN+ Subscriber Agreement below."}],"legalText4":"- No refunds for the current subscription period are granted. Cancellations of the current subscription take effect at the conclusion of the current subscription period.Terms of Use - [https://disneytermsofuse.com](https://disneytermsofuse.com)Privacy Policy - [https://privacy.thewaltdisneycompany.com/en/](https://privacy.thewaltdisneycompany.com/en/)ESPN+ Subscriber Agreement - [https://es.pn/plus-terms](https://es.pn/plus-terms)Blackout Policy - [https://es.pn/plus-blackouts](https://es.pn/plus-blackouts)Do Not Sell My Info - (https://privacy.thewaltdisneycompany.com/en/dnsmi)","footer":{"subtitle":"Buy UFC 281 PPV at discounted price of <font color=\"#FFAE00\">$24.99<\/font><br/>(originally $74.99)","title":"STEP 2 of 2","disclaimer":"Must purchase UFC 281 within 48 hours of purchase of ESPN+ annual plan on this device to qualify for discounted PPV price."},"legalText3":"- Your subscription may be managed, and auto-renewal may be turned off, by going to your iTunes account settings after purchase. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+ and The Walt Disney Family of Companies.","legalText2":"- Payment will be charged to your iTunes Account at confirmation of purchase, unless you are offered and are eligible for a free trial. If you receive a free trial, you will be charged when your free trial period ends. Your account will be charged for renewal within 24 hours prior to the end of the current period. If you cancel prior to such 24 hour period, you will not be charged for the following applicable subscription period.","ctaButtonTitle":"SUBSCRIBE FOR $99.99/YEAR","subscriberAgreementTitle":"https://es.pn/plus-terms","title":"EXCLUSIVELY ON ESPN+:","heroImageUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS_UFC_PPV_281.background.58x13.jpg","logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS_EXCLUSIVE.logo.png","termsOfUse":"https://es.pn/plus-terms","subtitle":"Over 30% discount","backgroundColors":["#2a2a2a","#2a2a2a"],"notPurchaseableText":"The event you are trying to watch is not available for purchase on this device. Please visit the ESPN website to learn more.","secondaryTitle":"UFC 281 & ESPN+ Annual Plan for $124.98","ctaButtonStyle":"#F9B300","informativeLoginText":"BUNDLE_PAYWALL_INFORMATIVELOGINTEXT_PLACEHOLDER","disclaimer":"BUNDLE_PAYWALL_DISCLAIMERKEY_PLACEHOLDER","order":1,"backgroundImageUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS_UFC_PPV_281.background.jpg","ctaButtonTextStyle":"#FFFFFF"},{"legalText1":"Must purchase UFC 281 within 48 hours of purchase of ESPN+ annual plan on this device to qualify for discounted PPV price.","buttons":[{"buttonImage":" ","headerText":"STEP 2 of 2","buttonHighlightedImage":" ","title":"BUY UFC 281 NOW","textColor":"#ffffff","disclaimer":"You will be charged $24.99 for the event (plus tax, where applicable). Subject to terms at espn.com/plus-terms. Not for commercial use."}],"ctaButtonTitle":"app.bundlepaywall.paywall2.buttons.title","subscriberAgreementTitle":"BUNDLE_PAYWALL_SUBSCRIBERAGREEMENTTITLE_PLACEHOLDER","heroImageUrl":" ","logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS_EXCLUSIVE.logo.png","subtitle":"You now have an ESPN+ Annual Plan","backgroundColors":["#2a2a2a","#2a2a2a"],"notPurchaseableText":"BUNDLE_PAYWALL_NOTPURCHASEABLETEXT_PLACEHOLDER","header":{"subtitle":"You now have an ESPN+ Annual Plan","title":"STEP 1 of 2 COMPLETE"},"ctaButtonStyle":"#F9B300","informativeLoginText":"BUNDLE_PAYWALL_INFORMATIVELOGINTEXT_PLACEHOLDER","disclaimer":"BUNDLE_PAYWALL_DISCLAIMERKEY_PLACEHOLDER","order":2,"backgroundImageUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS_UFC_PPV_281.background.jpg","ctaButtonTextStyle":"#FFFFFF"}],"subtitle":"Exclusive: UFC 281 & ESPN+ Annual Plan only {price}. Original Value $174.98","postPurchaseScreen":{"promo":{"linkUrl":"https://go.onelink.me/Ecx6/52c116c4","linkText":"BUY NOW","message":"app.iap.espnplus.postpurchase.promo.message","enabled":false,"logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/welcome/promo/promo-full.png"},"buttonText":"Start Streaming Now","message":"Score! You're all set.","enabled":false,"logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/[email protected]","backgroundImageUrl":"https://secure.espncdn.com/paywall/ios/[email protected]"},"gracePeriodSeconds":172800,"billingDisclaimer":"You will be charged {price} (plus tax, where applicable) upon purchase. Your ESPN+ annual plan will renew for $69.99 (plus tax, where applicable) one year from the date of purchase. Cancel any time before then to avoid being charged. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and The Walt Disney Family of Companies.","enabled":true,"voucherCode":"ESPN_PPV281BNDL_VOCHR","disclaimer":"For new subscribers only. Your ESPN+ annual plan will auto-renew at $99.99 per year (plus tax, where applicable). Cancel anytime. Subject to terms at espn.com/plus-terms.","billing":{"showCheckBox":true,"billingDisclosureError":"Please check the above box to agree to the annual renewal","ctaButtonTitle":"Agree & Subscribe","billingDisclosure":"I agree to the automatic renewal provision."},"campaignCode":"ESPN_PURCHASE_CMPGN"},"voucherCode":"ESPN_PPV281BNDL_VOCHR","campaignCode":"ESPN_PURCHASE_CMPGN"},{"priceIncrease":[{},{}],"subscriptions":[{},{},{}],"entitlement":"ESPN_PLUS","subscription":{"bundled":{"manageExpiredText":"Your expired subscription can be managed on the website where it was purchased.","manageActiveText":"Your active subscription can be managed on the website where it was purchased.","name":"Disney+, Hulu, and ESPN+","description":"The Disney Bundle","logoUrl":"https://static.web.plus.espn.com/espn/data/mobile/subscription-espn-plus{scale}.png"},"subscribeText":"Subscribe","subscribedText":"Subscribed","name":"ESPN+","backgroundColors":[""],"subscriptionExpiredText":"Expired","description":"Watch More Sports. Anytime. Anywhere.","heroImageUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/[email protected]"},"tuneIn":{"buttonText":"Subscribe Now","upsellHref":"https://secure.web.plus.espn.com/billing/purchase/ESPN_PURCHASE_CMPGN/ESPN_PURCHASE_VOCHR/MESPN","upsellTextKey":"<p>More <span>Sports.<\/span> More <span>Leagues.<\/span><\/p><p>More <span>Teams.<\/span> More <span>Games.<\/span><\/p>","overlayImgUrl":"/redesign/assets/img/logos/espnplus/ESPN+White.svg","backgroundImgUrl":"/redesign/assets/img/dtc/espn-plus.png"},"concurrencyLimit":5,"trial":{"paywall":{"ctaButtonTitle":"Start 7-Day Free Trial","disclaimer":"7-Day free trial for new subscribers, then $6.99. You will be charged monthly until you cancel. Cancel anytime. Subject to terms. Details at espn.com/plus-terms."},"length":"7","categoryCode":"ESPN_submgmt_products","billingDisclaimer":"Your {trialLength}-day free trial will start on {date}. You will be billed {price} a month (plus tax where applicable) starting {trialEndDayDate}. Cancel anytime before then to avoid being charged. Subject to terms. Details at espn.com/plus-terms. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and the Walt Disney Family of Companies.","voucherCode":"ESPN_FT_7D_VOCHR","campaignCode":"ESPN_FT_CMPGN"},"isPPV":false,"trialActive":false,"paywall":{"legalText1":"* Compared to monthly.","termsOfUseText":"Terms of Use","subscriberAgreementText":"The event you are trying to watch is not available for purchase on this device. Please visit the ESPN website to learn more.","ctaButtonTitle":"Subscribe Now","backgroundColors":[""],"backgroundVideoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS.background.mp4","notPurchaseableText":"The event you are trying to watch is not available for purchase on this device. Please visit the ESPN website to learn more.","toggle":{"enabled":true,"sections":[{"disclaimerText2":"By clicking \"Agree & Subscribe\" below, you also agree to the ESPN+ Subscriber Agreement, and acknowledge that you have read our Privacy Policy. Go to https://es.pn/plus-terms for Terms and Conditions. Not for commercial use.","isDefault":true,"disclaimerText1":"By clicking \"Agree & Subscribe\", you are enrolling in automatic payments of $99.99/year (plus tax, where applicable) that will continue until you cancel. Cancel anytime, effective at the end of your billing period. No refunds or credits for partial months or years.","notes":[{"image":"https://a.espncdn.com/paywall/ios/ios-yellow-checkmark@{scale}.png","subtitle":"/ per year","title":"{price}"},{"image":"https://a.espncdn.com/paywall/ios/ios-yellow-checkmark@{scale}.png","title":"$9.99"}],"buttons":[{"trialActive":false,"analyticsName":"1999199910204019951899000_espn","sku":"espn_web_yearly","title":"Subscribe Now","billingDisclaimer":"You will be billed {price} a year (plus tax where applicable) starting {date}. Subject to terms. Details at espn.com/plus-terms. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and the Walt Disney Family of Companies.","textColor":"#ffffff","disclaimer":"$99.99 a year until you cancel. Cancel Anytime. Subject to terms. Details at espn.com/plus-terms. *Compared to monthly.","trial":{"paywall":{"disclaimer":"Then {price} a year until you cancel (increasing to $99.99/year on 8/23/22). Cancel Anytime. Subject to terms. Details at espn.com/plus-terms. *Compared to monthly."},"length":"7","categoryCode":"ESPN_submgmt_products","billingDisclaimer":"Your {trialLength}-day free trial will start on {date}. You will be billed {price} a year (plus tax where applicable) starting {trialEndDayDate}. Cancel anytime before then to avoid being charged. Subject to terms. Details at espn.com/plus-terms. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and the Walt Disney Family of Companies.","voucherCode":"ESPN_FT_7D_VOCHR","campaignCode":"ESPN_FT_CMPGN"},"billing":{"showCheckBox":true,"billingDisclosureError":"Please check the above box to agree to the annual renewal","ctaButtonTitle":"Agree & Subscribe","billingDisclosure":"I agree to the automatic renewal provision."}}],"analyticsName":"Annual","text":"ANNUAL PLAN","flagText":"SAVE OVER 15%*","key":"annually"},{"disclaimerText2":"By clicking \"Agree & Subscribe\" below, you also agree to the ESPN+ Subscriber Agreement, and acknowledge that you have read our Privacy Policy. Go to https://es.pn/plus-terms for Terms and Conditions. Not for commercial use.","isDefault":false,"disclaimerText1":"By clicking \"Agree & Subscribe\", you are enrolling in automatic payments of $9.99/month (plus tax, where applicable) that will continue until you cancel. Cancel anytime, effective at the end of your billing period. No refunds or credits for partial months or years.","notes":[{"image":"https://secure.espncdn.com/paywall/ios/ios-yellow-checkmark@{scale}.png","subtitle":"/ per month","title":"{price}"},{"image":"https://a.espncdn.com/paywall/ios/ios-yellow-checkmark@{scale}.png"}],"buttons":[{"trialActive":false,"analyticsName":"1999199910204019951899000_espn","sku":"1999199910204019951899000_espn","title":"Subscribe Now","billingDisclaimer":"You will be billed {price} a month (plus tax where applicable) starting {date}. Subject to terms. Details at espn.com/plus-terms. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and the Walt Disney Family of Companies.","textColor":"#ffffff","disclaimer":"Then {price}. You will be charged monthly until you cancel. Cancel anytime. Subject to ESPN+ Subscriber Agreement below. Available in US Only.","trial":{"paywall":{"disclaimer":"Then {price} a month until you cancel. Cancel Anytime. Subject to terms. Details at espn.com/plus-terms."},"length":"7","categoryCode":"ESPN_submgmt_products","billingDisclaimer":"Your {trialLength}-day free trial will start on {date}. You will be billed {price} a month (plus tax where applicable) starting {trialEndDayDate}. Cancel anytime before then to avoid being charged. Subject to terms. Details at espn.com/plus-terms. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and the Walt Disney Family of Companies.","voucherCode":"ESPN_FT_7D_VOCHR","campaignCode":"ESPN_FT_CMPGN"}}],"analyticsName":"Monthly","text":"MONTHLY PLAN","key":"monthly"}]},"privacyPolicyText":"Privacy Policy","purchaseSuccessText":"You are now subscribed to ESPN+","title":"Get Your Favorite Sports with ESPN+"},"countryCodes":["US"],"isIap":true,"accountsHold":[{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume Subscription","type":"direct","enabled":true,"subHeader":"Your subscription is currently on hold. Please update your payment details to resume your subscription by going to es.pn/billing"},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume Subscription","type":"hulu","enabled":true,"subHeader":"Your subscription is currently on hold. Please update your payment details to resume your subscription by going to secure.hulu.com/account"},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume Subscription","type":"disneyplus","enabled":true,"subHeader":"Your subscription is currently on hold. Please update your payment details to resume your subscription by going to disneyplus.com/account"},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume Subscription","type":"google","enabled":true,"subHeader":"Your subscription is currently on hold. Please update your payment details to resume your subscription by going to https://play.google.com/store/paymentmethods"},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume Subscription","type":"apple","enabled":true,"subHeader":"Your subscription is currently on hold. Please update your payment details to resume your subscription by going to https://apps.apple.com/account/billing."},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume Subscription","type":"generic","enabled":true,"subHeader":"Your subscription is currently on hold. Please update your payment details to resume your subscription by going to the platform where you purchased ESPN+."}],"name":"ESPN+","postPurchaseScreen":{"promo":{"linkUrl":"https://go.onelink.me/Ecx6/52c116c4","linkText":"BUY NOW","message":"app.iap.espnplus.postpurchase.promo.message","enabled":false,"logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/welcome/promo/promo-full.png"},"buttonText":"Start Streaming Now","message":"Score! You're all set.","enabled":false,"logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/[email protected]","backgroundImageUrl":"https://secure.espncdn.com/paywall/ios/[email protected]"},"id":1,"embeddedPaywall":{"ctaButtonTitle":"Subscribe Now","title":"Stream Your Favorite Sports, ESPN+ Originals, and More."},"billingDisclaimer":"You will be billed {price} a month (plus tax where applicable) starting {date}. Subject to terms. Details at espn.com/plus-terms. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and the Walt Disney Family of Companies.","showPregame":true,"voucherCode":"ESPN_PURCHASE_VOCHR","campaignCode":"ESPN_PURCHASE_CMPGN"},{"entitlement":"ESPN_PLUS_MLB","subscription":{"subscribeText":"Subscribe","subscribedText":"Subscribed","name":"MLB.tv","backgroundColors":[""],"subscriptionExpiredText":"Expired","description":"Every Out-of-Market Game","heroImageUrl":"https://static.web.plus.espn.com/espn/data/mobile/subscription-mlb-tv-xxxhdpi.png"},"tuneIn":{"buttonText":"SUBSCRIBE TO MLB.TV","upsellHref":"https://secure.web.plus.espn.com/billing/purchase/ESPN_PURCHASE_CMPGN/ESPN_PURCHASE_VOCHR/MESPNMLB20","upsellTextKey":"<p class=\"bold\">Watch EVERY out-of-market<br>regular season game<br>LIVE or on demand in HD<\/p>","overlayImgUrl":"/redesign/assets/img/dtc/mlbtv-logo.svg","backgroundImgUrl":"/redesign/assets/img/dtc/mlb-tv.png"},"concurrencyLimit":5,"isPPV":false,"paywall":{"legalText1":"Available in US Only","legalText4":"- No refunds for the current subscription period are granted. Cancellations of the current subscription take effect at the conclusion of the current subscription period.Terms of Use - [https://disneytermsofuse.com](https://disneytermsofuse.com)Privacy Policy - [https://privacy.thewaltdisneycompany.com/en/](https://privacy.thewaltdisneycompany.com/en/)ESPN+ Subscriber Agreement - [https://es.pn/plus-terms](https://es.pn/plus-terms)Blackout Policy - [https://es.pn/plus-blackouts](https://es.pn/plus-blackouts)Do Not Sell My Info - (https://privacy.thewaltdisneycompany.com/en/dnsmi)","legalText3":"- Your subscription may be managed, and auto-renewal may be turned off, by going to your iTunes account settings after purchase. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+ and The Walt Disney Family of Companies.","sponsorImageUrl":"https://url-of-the-amex-promo-image.png","legalText2":"- Payment will be charged to your iTunes Account at confirmation of purchase, unless you are offered and are eligible for a free trial. If you receive a free trial, you will be charged when your free trial period ends. Your account will be charged for renewal within 24 hours prior to the end of the current period. If you cancel prior to such 24 hour period, you will not be charged for the following applicable subscription period.","ctaButtonTitle":"app.iap.Purchase_Button_MLB","backgroundColors":[""],"backgroundVideoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS.background.mp4","purchaseSuccessText":"You are now subscribed to MLB.TV","title":"Watch Live Major League Baseball"},"countryCodes":["US"],"isIap":true,"name":"MLB.tv","id":3,"embeddedPaywall":{"ctaButtonTitle":"Subscribe Now","title":"Stream Your Favorite Sports, ESPN+ Originals, and More."},"showPregame":false,"isOOM":true}];
</script>
<script src="https://a.espncdn.com/redesign/0.618.2/js/espn-critical.js"></script>
<script type='text/javascript'>
var espn = espn || {};
// Build skeleton for namespace.
espn.scoreboard = {
topics: {
scoreboard: '',
scoreboxes: []
},
models: {},
views: {},
collections: {},
timezoneOffset: 0,
favorites: {},
editData: {},
activeLeague: 'college-football',
hiddenLeague: 'null',
settings: {
activeLeagues: [{"sportId":0,"displayName":"Top Events","league":"topEvents","sortOrder":0},{"sportId":28,"top25Only":true,"displayName":"NFL","league":"nfl","sortOrder":1,"link":{"onclick":"","href":"https://www.espn.com/nfl/scoreboard","title":"Full Scoreboard »"},"sport":"football"},{"sportId":23,"top25Only":false,"displayName":"NCAAF","league":"college-football","sortOrder":2,"link":{"onclick":"","href":"https://www.espn.com/college-football/scoreboard","title":"Full Scoreboard »"},"sport":"football"},{"sportId":10,"top25Only":true,"displayName":"MLB","league":"mlb","sortOrder":3,"link":{"onclick":"","href":"https://www.espn.com/mlb/scoreboard","title":"Full Scoreboard »"},"sport":"baseball"},{"sportId":46,"top25Only":true,"displayName":"NBA","league":"nba","sortOrder":11,"link":{"onclick":"","href":"https://www.espn.com/nba/scoreboard","title":"Full Scoreboard »"},"sport":"basketball"},{"sportId":0,"displayName":"Top Soccer","league":"topSoccer","sortOrder":12,"link":{"onclick":"","href":"/soccer/scoreboard","title":"Full Scoreboard »"}},{"sportId":775,"top25Only":true,"displayName":"UCL","league":"uefa.champions","sortOrder":13,"link":{"onclick":"","href":"https://www.espn.com/soccer/scoreboard","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":3951,"top25Only":true,"displayName":"Copa del Rey","league":"esp.copa_del_rey","sortOrder":14,"link":{"onclick":"","href":"/football/scoreboard/_/league/esp.copa_del_rey","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":41,"top25Only":true,"displayName":"NCAAM","league":"mens-college-basketball","sortOrder":14,"link":{"onclick":"","href":"https://www.espn.com/mens-college-basketball/scoreboard","title":"Full Scoreboard »"},"sport":"basketball"},{"sportId":770,"top25Only":true,"displayName":"MLS","league":"usa.1","sortOrder":15,"link":{"onclick":"","href":"https://www.espn.com/soccer/scoreboard","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":90,"top25Only":true,"displayName":"NHL","league":"nhl","sortOrder":16,"link":{"onclick":"","href":"https://www.espn.com/nhl/scoreboard","title":"Full Scoreboard »"},"sport":"hockey"},{"sportId":3321,"top25Only":true,"displayName":"UFC","league":"ufc","sortOrder":16,"link":{"onclick":"","href":"https://www.espn.com/mma/fightcenter","title":"Fightcenter »"},"sport":"mma"},{"sportId":1106,"top25Only":true,"displayName":"Golf (PGA TOUR)","league":"pga","tournamentId":401243410,"sortOrder":17,"link":{"onclick":"","href":"https://www.espn.com/golf/leaderboard","title":"Full Leaderboard »"},"sport":"golf"},{"sportId":54,"top25Only":false,"displayName":"NCAAW","league":"womens-college-basketball","sortOrder":17,"link":{"onclick":"","href":"/womens-college-basketball/scoreboard","title":"Full Scoreboard »"},"sport":"basketball"},{"sportId":1107,"top25Only":true,"displayName":"Golf (W)","league":"lpga","sortOrder":18,"link":{"onclick":"","href":"https://www.espn.com/golf/leaderboard?tour=lpga","title":"Full Leaderboard »"},"sport":"golf"},{"sportId":59,"top25Only":true,"displayName":"WNBA","league":"wnba","sortOrder":18,"link":{"onclick":"","href":"https://www.espn.com/wnba/scoreboard","title":"Full Scoreboard »"},"sport":"basketball"},{"sportId":2030,"top25Only":true,"displayName":"F1","league":"f1","sortOrder":19,"link":{"onclick":"","href":"https://www.espn.com/f1/schedule","title":"Full results »"},"sport":"racing"},{"sportId":740,"top25Only":true,"displayName":"LaLiga","league":"esp.1","sortOrder":19,"link":{"onclick":"","href":"/soccer/scoreboard?league=esp.1","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":20381,"top25Only":true,"displayName":"Copa de la Reina","league":"esp.copa_de_la_reina","sortOrder":20,"link":{"onclick":"","href":"/football/scoreboard/_/league/esp.copa_de_la_reina","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":3920,"top25Only":true,"displayName":"Carabao Cup","league":"eng.league_cup","sortOrder":21,"link":{"onclick":"","href":"https://www.espn.com/soccer/scoreboard","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":700,"top25Only":true,"displayName":"Prem","league":"eng.1","sortOrder":22,"link":{"onclick":"","href":"https://www.espn.com/soccer/scoreboard","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":730,"top25Only":true,"displayName":"Serie A","league":"ita.1","sortOrder":23,"link":{"onclick":"","href":"https://www.espn.com/soccer/scoreboard","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":720,"top25Only":true,"displayName":"German Bundesliga","league":"ger.1","sortOrder":24,"link":{"onclick":"","href":"https://www.espn.com/soccer/scoreboard","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":3918,"top25Only":true,"displayName":"FA Cup","league":"eng.fa","sortOrder":25,"link":{"onclick":"","href":"/soccer/scoreboard?league=eng.fa","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":3914,"top25Only":true,"displayName":"Champ","league":"eng.2","sortOrder":26,"link":{"onclick":"","href":"https://www.espn.com/soccer/scoreboard","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":4002,"top25Only":true,"displayName":"USL Champ","league":"usa.usl.1","sortOrder":27,"link":{"onclick":"","href":"https://www.espn.com/soccer/scoreboard?league=usa.usl.1","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":19834,"top25Only":true,"displayName":"Men's Friendly","league":"club.friendly","sortOrder":28,"link":{"onclick":"","href":"https://www.espn.com/soccer/scoreboard","title":"Full Scoreboard »"},"sport":"soccer"},{"sportId":851,"top25Only":true,"displayName":"Tennis (M)","league":"atp","sortOrder":33,"link":{"onclick":"","href":"https://www.espn.com/tennis/dailyResults","title":"Full Results »"},"sport":"tennis"},{"sportId":900,"top25Only":true,"displayName":"Tennis (W)","league":"wta","sortOrder":35,"link":{"onclick":"","href":"https://www.espn.com/tennis/dailyResults","title":"Full Results »"},"sport":"tennis"},{"sportId":2021,"top25Only":true,"displayName":"NASCAR","league":"nascar-premier","sortOrder":36,"link":{"onclick":"","href":"https://www.espn.com/racing/schedule","title":"Full results »"},"sport":"racing"}],
useStatic: false,
version: 2,
topEventsId: 4379198,
topSoccerId: 15878776,
nonScoreStatusIds: ["4","5","6","55"]
},
data: {"sports":[{"uid":"s:20","leagues":[{"uid":"s:20~l:23","smartdates":[{"week":11,"seasontype":2,"season":2022,"label":"Week 11"},{"week":12,"seasontype":2,"season":2022,"label":"Week 12"},{"week":13,"seasontype":2,"season":2022,"label":"Week 13"}],"name":"NCAA - Football","id":"23","abbreviation":"NCAAF","shortName":"NCAA Football","slug":"college-football","isTournament":false,"events":[{"date":"2022-11-18T00:30:00Z","broadcast":"ESPN","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401415658","playByPlayAvailable":false,"uid":"s:20~l:23~e:401415658~c:401415658","competitors":[{"alternateColor":"3baf29","competitionIdPrevious":"401415657","color":"005837","displayName":"Tulane Green Wave","type":"team","abbreviation":"TULN","competitionIdNext":"401415665","uid":"s:20~l:23~t:2655","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/2655.png","winner":false,"record":"8-2","name":"Tulane","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2655.png","rank":17,"location":"Tulane","id":"2655","order":0,"group":"151"},{"alternateColor":"ecdcb9","competitionIdPrevious":"401415656","color":"E32F38","displayName":"SMU Mustangs","type":"team","abbreviation":"SMU","competitionIdNext":"401415666","uid":"s:20~l:23~t:2567","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/2567.png","winner":false,"record":"6-4","name":"SMU","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2567.png","location":"SMU","id":"2567","order":1,"group":"151"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401415658","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401415658&sourceLang=en","text":"WatchESPN","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"2567","abbreviation":"SMU"},"favorite":false,"moneyLine":135},"away":{"moneyLine":135},"spread":-3,"home":{"moneyLine":-160},"overUnder":65,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"TULN -3.0","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"2655","abbreviation":"TULN"},"favorite":true,"moneyLine":-160},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401415658","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/tulane-green-wave-football-tickets-yulman-stadium-11-17-2022--sports-ncaa-football/production/3869518?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/venues/yulman-stadium-tickets.html?wsUser=717","text":"Tickets","isPremium":false}],"id":"401415658","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/17 - 7:30 PM EST","seasonType":"2","competitionId":"401415658","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"ESPN","type":"TV","priority":1,"broadcasterId":126,"broadcastId":126,"station":"ESPN","name":"ESPN","typeId":1,"lang":"en","region":"us","shortName":"ESPN","slug":"espn","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"SMU Mustangs at Tulane Green Wave","location":"Yulman Stadium","shortName":"SMU @ TULN","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Thu, November 17th at 7:30 PM EST","shortDetail":"11/17 - 7:30 PM EST"}},"status":"pre"},{"date":"2022-11-19T16:00:00Z","broadcast":"ESPN2","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401415661","playByPlayAvailable":false,"uid":"s:20~l:23~e:401415661~c:401415661","competitors":[{"alternateColor":"231f20","competitionIdPrevious":"401415657","color":"000000","displayName":"UCF Knights","type":"team","abbreviation":"UCF","competitionIdNext":"401415667","uid":"s:20~l:23~t:2116","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/2116.png","winner":false,"record":"8-2","name":"UCF","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2116.png","rank":22,"location":"UCF","id":"2116","order":0,"group":"151"},{"alternateColor":"b6a77c","competitionIdPrevious":"401404131","color":"131630","displayName":"Navy Midshipmen","type":"team","abbreviation":"NAVY","competitionIdNext":"401404145","uid":"s:20~l:23~t:2426","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/2426.png","winner":false,"record":"3-7","name":"Navy","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2426.png","location":"Navy","id":"2426","order":1,"group":"151"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401415661","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401415661&sourceLang=en","text":"WatchESPN","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"2426","abbreviation":"NAVY"},"favorite":false,"moneyLine":550},"away":{"moneyLine":550},"spread":-16.5,"home":{"moneyLine":-800},"overUnder":53,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"UCF -16.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"2116","abbreviation":"UCF"},"favorite":true,"moneyLine":-800},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401415661","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/ucf-knights-football-tickets-bounce-house-11-19-2022--sports-ncaa-football/production/3869307?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/venues/fbc-mortgage-stadium-tickets.html?wsUser=717","text":"Tickets","isPremium":false}],"id":"401415661","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 11:00 AM EST","seasonType":"2","competitionId":"401415661","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"ESPN2","type":"TV","priority":1,"broadcasterId":139,"broadcastId":139,"station":"ESPN2","name":"ESPN2","typeId":1,"lang":"en","region":"us","shortName":"ESPN2","slug":"espn2","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Navy Midshipmen at UCF Knights","location":"FBC Mortgage Stadium","shortName":"NAVY @ UCF","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 11:00 AM EST","shortDetail":"11/19 - 11:00 AM EST"}},"status":"pre"},{"date":"2022-11-19T17:00:00Z","broadcast":"ABC","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401405145","playByPlayAvailable":false,"uid":"s:20~l:23~e:401405145~c:401405145","competitors":[{"alternateColor":"00274c","competitionIdPrevious":"401405137","color":"00274c","displayName":"Michigan Wolverines","type":"team","abbreviation":"MICH","competitionIdNext":"401405153","uid":"s:20~l:23~t:130","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/130.png","winner":false,"record":"10-0","name":"Michigan","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/130.png","rank":3,"location":"Michigan","id":"130","order":0,"group":"52"},{"alternateColor":"fa6300","competitionIdPrevious":"401405134","color":"f77329","displayName":"Illinois Fighting Illini","type":"team","abbreviation":"ILL","competitionIdNext":"401405149","uid":"s:20~l:23~t:356","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/356.png","winner":false,"record":"7-3","name":"Illinois","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/356.png","rank":21,"location":"Illinois","id":"356","order":1,"group":"53"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401405145","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401405145&sourceLang=en","text":"WatchESPN","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"356","abbreviation":"ILL"},"favorite":false,"moneyLine":650},"away":{"moneyLine":650},"spread":-18,"home":{"moneyLine":-1000},"overUnder":43,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"MICH -18.0","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"130","abbreviation":"MICH"},"favorite":true,"moneyLine":-1000},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401405145","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/michigan-wolverines-football-tickets-michigan-stadium-10-29-2022--sports-ncaa-football/production/3741626?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/michigan-stadium-tickets/venue/1084?wsUser=717","text":"Tickets","isPremium":false}],"id":"401405145","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 12:00 PM EST","seasonType":"2","competitionId":"401405145","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"ABC","type":"TV","priority":1,"broadcasterId":2,"broadcastId":2,"station":"ABC","name":"ABC","typeId":1,"lang":"en","region":"us","shortName":"ABC","slug":"abc","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Illinois Fighting Illini at Michigan Wolverines","location":"Michigan Stadium","shortName":"ILL @ MICH","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 12:00 PM EST","shortDetail":"11/19 - 12:00 PM EST"}},"status":"pre"},{"date":"2022-11-19T17:00:00Z","broadcast":"FOX","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401404114","playByPlayAvailable":false,"uid":"s:20~l:23~e:401404114~c:401404114","competitors":[{"alternateColor":"ffb81c","competitionIdPrevious":"401404109","color":"004834","displayName":"Baylor Bears","type":"team","abbreviation":"BAY","competitionIdNext":"401404119","uid":"s:20~l:23~t:239","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/239.png","winner":false,"record":"6-4","name":"Baylor","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/239.png","location":"Baylor","id":"239","order":0,"group":"4"},{"alternateColor":"f1f2f3","competitionIdPrevious":"401404113","color":"3C377D","displayName":"TCU Horned Frogs","type":"team","abbreviation":"TCU","competitionIdNext":"401404120","uid":"s:20~l:23~t:2628","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/2628.png","winner":false,"record":"10-0","name":"TCU","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2628.png","rank":4,"location":"TCU","id":"2628","order":1,"group":"4"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401404114","text":"Gamecast","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"2628","abbreviation":"TCU"},"favorite":true,"moneyLine":-145},"away":{"moneyLine":-145},"spread":2.5,"home":{"moneyLine":122},"overUnder":57.5,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"TCU -2.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"239","abbreviation":"BAY"},"favorite":false,"moneyLine":122},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401404114","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/baylor-bears-football-tickets-mclane-stadium-11-19-2022--sports-ncaa-football/production/3798512?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/mclane-stadium-tickets/venue/11903?wsUser=717","text":"Tickets","isPremium":false}],"id":"401404114","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 12:00 PM EST","seasonType":"2","competitionId":"401404114","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"FOX","type":"TV","priority":1,"broadcasterId":148,"broadcastId":148,"station":"FOX","name":"FOX","typeId":1,"lang":"en","region":"us","shortName":"FOX","slug":"fox","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":false,"seasonStartDate":"2022-07-01T07:00:00Z","name":"TCU Horned Frogs at Baylor Bears","location":"McLane Stadium","shortName":"TCU @ BAY","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 12:00 PM EST","shortDetail":"11/19 - 12:00 PM EST"}},"status":"pre"},{"date":"2022-11-19T17:00:00Z","broadcast":"SECN+/ESPN+","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401403946","playByPlayAvailable":false,"uid":"s:20~l:23~e:401403946~c:401403946","competitors":[{"alternateColor":"f1f2f3","competitionIdPrevious":"401403943","color":"690014","displayName":"Alabama Crimson Tide","type":"team","abbreviation":"ALA","competitionIdNext":"401403957","uid":"s:20~l:23~t:333","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/333.png","winner":false,"record":"8-2","name":"Alabama","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/333.png","rank":9,"location":"Alabama","id":"333","order":0,"group":"7"},{"competitionIdPrevious":"401418636","color":"8e0b0b","displayName":"Austin Peay Governors","type":"team","abbreviation":"APSU","uid":"s:20~l:23~t:2046","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/2046.png","winner":false,"record":"7-3","name":"Austin Peay","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2046.png","location":"Austin Peay","id":"2046","order":1,"group":"176"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401403946","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401403946&sourceLang=en","text":"WatchESPN","isPremium":false}],"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401403946","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/alabama-crimson-tide-football-tickets-bryant-denny-stadium-11-19-2022--sports-ncaa-football/production/3725113?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/bryantdenny-stadium-tickets/venue/1977?wsUser=717","text":"Tickets","isPremium":false}],"id":"401403946","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 12:00 PM EST","seasonType":"2","competitionId":"401403946","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"SECN+","type":"Web","priority":2,"broadcasterId":701,"broadcastId":701,"station":"SECN+","name":"SEC Network+","typeId":4,"lang":"en","region":"us","shortName":"SECN+","slug":"secn","isNational":true},{"callLetters":"ESPN+","type":"Web","priority":1,"broadcasterId":755,"broadcastId":755,"station":"ESPN+","name":"ESPN+","typeId":4,"lang":"en","region":"us","shortName":"ESPN+","slug":"espn","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Austin Peay Governors at Alabama Crimson Tide","location":"Bryant-Denny Stadium","airings":[{"withinPlayWindow":false,"program_eventId":"401403946","program_categories":[{"artworkUrl":"https://artwork.api.espn.com/artwork/collections/categories/8323f79f-3ce0-41c6-852b-75fb33ff0c96","name":"Southeastern Conference","id":"8323f79f-3ce0-41c6-852b-75fb33ff0c96","type":"conference"},{"sportId":"23","artworkUrl":"https://artwork.api.espn.com/artwork/collections/categories/0f8e3d42-fa27-3f60-9e8d-276e4892f50e","name":"NCAA Football","id":"0f8e3d42-fa27-3f60-9e8d-276e4892f50e","type":"league"},{"artworkUrl":"https://artwork.api.espn.com/artwork/collections/categories/302bca11-b142-41e5-a456-9d2edcbbaae8","name":"ASUN","id":"302bca11-b142-41e5-a456-9d2edcbbaae8","type":"conference"},{"sportId":"20","artworkUrl":"https://artwork.api.espn.com/artwork/collections/categories/60459870-f8fc-3b3a-a6b9-d8af4bf19223","name":"Football","id":"60459870-f8fc-3b3a-a6b9-d8af4bf19223","type":"sport"},{"artworkUrl":"https://artwork.api.espn.com/artwork/collections/categories/cbb67d00-f4b6-4e03-933e-76bfc23ea306","name":"NCAA","id":"cbb67d00-f4b6-4e03-933e-76bfc23ea306","type":"organizer"}],"program_firstPresented":"2022-11-19T17:00:00.000+0000","program":"9ec62c83-07b8-44ce-b81d-a8570891a581","createdOn":"2022-10-27T12:11:45.415+0000","network":"espn_dtc","appGameLink":"sportscenter:https://x-callback-url/showWatchStream?playGameID=401403946","policyUrl":"https://restrictions.api.espn.com/restrictions/policies/ccba123d-5a7b-4a22-8b61-2b21148b0631","network_displayName":"ESPN+","end":"2022-11-19T20:00:00.000+0000","networkId":"a698f0a3-dcfc-4684-9ca2-3082a28111cc","id":"59881286-a03f-49c1-8720-b04e1831a72f","program_language":"English","webAiringLink":"https://www.espn.com/watch/player/_/id/59881286-a03f-49c1-8720-b04e1831a72f","webGameLink":"https://www.espn.com/watch/player/_/eventCalendarId/401403946?gameId=401403946&sourceLang=en","policy":{"viewingPolicies":[{"audience":{"name":"Audience for US and territories whitelist","match":"NONE","externalId":"AS_GU_MP_PR_US_VI","id":"78f1ce73-384f-483f-b4de-dc959651a7e9","properties":{"iso3166":["AS","GU","MP","PR","US","VI"]}},"name":"Viewing policy for US and territories allow list","externalId":"AS_GU_MP_PR_US_VI","id":"e2fdc729-4ba1-413e-9a02-6ddc74d89689","actions":["reject_blackout"]},{"audience":{"name":"ESPN_PLUS entitlement audience","match":"ANY","externalId":"ESPN_PLUS","id":"fab7975c-b5b6-47bb-9ec7-227b81ca8518","properties":{"subscription":["ESPN_PLUS"]}},"name":"Viewing policy for ESPN_PLUS entitlement","externalId":"ESPN_PLUS","id":"d922dd59-10ff-4c9c-bd1e-cae6560698ef","actions":["allow_entitlement"]},{"audience":{"name":"Audience for ESPN base tier","match":"ANY","externalId":"ESPN_BASE","id":"52a51035-cfc5-46ad-890e-1c8e6b8d2fa8","properties":{"subscription":["ESPN_BASE"]}},"name":"Viewing policy to allow startover","externalId":"ALLOW_STARTOVER","id":"08397749-a2c3-41a9-93b8-22c833b861f3","actions":["allow_startover"]}],"createdBy":"anonymous","lastModifiedBy":"anonymous","id":"ccba123d-5a7b-4a22-8b61-2b21148b0631","createdOn":"2022-10-27T12:11:45.667Z","lastModifiedOn":"2022-10-27T12:11:45.667Z"},"images":[{"width":640,"name":"Austin Peay vs. #9 Alabama","peers":[{"width":360,"name":"Austin Peay vs. #9 Alabama","url":"https://s.secure.espncdn.com/stitcher/artwork/collections/airings/59881286-a03f-49c1-8720-b04e1831a72f/16x9.png?timestamp=202211140312","height":640}],"url":"https://s.secure.espncdn.com/stitcher/artwork/collections/airings/59881286-a03f-49c1-8720-b04e1831a72f/16x9.png?timestamp=202211140312","height":360}],"artworkUrl":"https://artwork.api.espn.com/artwork/collections/airings/59881286-a03f-49c1-8720-b04e1831a72f","lastModifiedBy":"internal_cs","start":"2022-11-19T17:00:00.000+0000","externalId":"ncs.airingId:a116691250","lastModifiedOn":"2022-11-15T15:53:52.865+0000","appAiringLink":"sportscenter:https://x-callback-url/showWatchStream?playID=59881286-a03f-49c1-8720-b04e1831a72f","createdBy":"internal_cs","program_originalAirDate":"2022-11-19T17:00:00+0000","program_shortTitle":"Austin Peay vs. #9 Alabama","program_eventUrl":"https://events.api.espn.com/eventcalendar/api/events/ec1/401403946","network_shortName":"ESPN+","properties":{"hasEspnId3Heartbeats":"false","language":"en-US","shortTitle":"Aust Peay vs. #9 Alabama","trueOriginal":"true","title":"Austin Peay vs. #9 Alabama","simulcastAiringId":"116691250","contentCleared":"true","hasPassThroughAds":"false","dtcPackages":["ESPN_PLUS"],"isLive":"true","hasNielsenWatermarks":"false","artworkLastModified":"202211140312","allowStartOver":"true","trackingId":"59881286-a03f-49c1-8720-b04e1831a72f","commercialReplacement":"AD SERVE","allowedAccess":"domestic","reAir":"false","killDateTimestamp":"2022-12-19T17:00:00Z","sponsored":"false","liveReplay":"live_replay","nbStartTimestamp":"2022-11-19T17:00:00Z","origination":"EXCL","feedType":"NATIONAL FEED","ratingsId":"FBSA05843","name":"Austin Peay vs. #9 Alabama","shortName":"ESPN's Afternoon College Football","canIpAuthenticate":"false"}}],"shortName":"APSU @ ALA","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 12:00 PM EST","shortDetail":"11/19 - 12:00 PM EST"}},"status":"pre"},{"date":"2022-11-19T17:00:00Z","broadcast":"ESPN3","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401411166","playByPlayAvailable":false,"uid":"s:20~l:23~e:401411166~c:401411166","competitors":[{"alternateColor":"ceb888","competitionIdPrevious":"401411162","color":"782F40","displayName":"Florida State Seminoles","type":"team","abbreviation":"FSU","competitionIdNext":"401403958","uid":"s:20~l:23~t:52","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/52.png","winner":false,"record":"7-3","name":"Florida St","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/52.png","rank":23,"location":"Florida State","id":"52","order":0,"group":"44"},{"competitionIdPrevious":"401426370","color":"ce2842","displayName":"Louisiana Ragin' Cajuns","type":"team","abbreviation":"UL","competitionIdNext":"401426386","uid":"s:20~l:23~t:309","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/309.png","winner":false,"record":"5-5","name":"Louisiana","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/309.png","location":"Louisiana","id":"309","order":1,"group":"168"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401411166","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401411166&sourceLang=en","text":"WatchESPN","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"309","abbreviation":"UL"},"favorite":false,"moneyLine":1350},"away":{"moneyLine":1350},"spread":-23.5,"home":{"moneyLine":-3500},"overUnder":52,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"FSU -23.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"52","abbreviation":"FSU"},"favorite":true,"moneyLine":-3500},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401411166","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/florida-state-seminoles-football-tickets-doak-campbell-stadium-11-19-2022--sports-ncaa-football/production/3817286?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/doak-campbell-stadium-tickets/venue/474?wsUser=717","text":"Tickets","isPremium":false}],"id":"401411166","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 12:00 PM EST","seasonType":"2","competitionId":"401411166","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"ESPN3","type":"Web","priority":1,"broadcasterId":122,"broadcastId":122,"station":"ESPN3","name":"ESPN3","typeId":4,"lang":"en","region":"us","shortName":"ESPN3","slug":"espn3","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Louisiana Ragin' Cajuns at Florida State Seminoles","location":"Doak Campbell Stadium","shortName":"UL @ FSU","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 12:00 PM EST","shortDetail":"11/19 - 12:00 PM EST"}},"status":"pre"},{"date":"2022-11-19T19:00:00Z","broadcast":"BIG12|ESPN+","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401404117","playByPlayAvailable":false,"uid":"s:20~l:23~e:401404117~c:401404117","competitors":[{"alternateColor":"eaaa00","competitionIdPrevious":"401404112","color":"FFC600","displayName":"West Virginia Mountaineers","type":"team","abbreviation":"WVU","competitionIdNext":"401404123","uid":"s:20~l:23~t:277","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/277.png","winner":false,"record":"4-6","name":"West Virginia","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/277.png","location":"West Virginia","id":"277","order":0,"group":"4"},{"alternateColor":"e7d2ad","competitionIdPrevious":"401404109","color":"633194","displayName":"Kansas State Wildcats","type":"team","abbreviation":"KSU","competitionIdNext":"401404121","uid":"s:20~l:23~t:2306","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/2306.png","winner":false,"record":"7-3","name":"Kansas St","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2306.png","rank":19,"location":"Kansas State","id":"2306","order":1,"group":"4"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401404117","text":"Gamecast","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"2306","abbreviation":"KSU"},"favorite":true,"moneyLine":-292},"away":{"moneyLine":-292},"spread":7.5,"home":{"moneyLine":235},"overUnder":55,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"KSU -7.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"277","abbreviation":"WVU"},"favorite":false,"moneyLine":235},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401404117","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/west-virginia-mountaineers-football-tickets-mountaineer-field-11-19-2022--sports-ncaa-football/production/3799938?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/mountaineer-field-tickets/venue/2538?wsUser=717","text":"Tickets","isPremium":false}],"id":"401404117","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 2:00 PM EST","seasonType":"2","competitionId":"401404117","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"BIG 12 NOW","type":"Web","priority":1,"broadcasterId":762,"broadcastId":762,"station":"BIG 12 NOW","name":"BIG12|ESPN+","typeId":4,"lang":"en","region":"us","shortName":"BIG12|ESPN+","slug":"big-12-now","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":false,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Kansas State Wildcats at West Virginia Mountaineers","location":"Milan Puskar Stadium","airings":[{"withinPlayWindow":false,"program_eventId":"401404117","program_categories":[{"sportId":"23","artworkUrl":"https://artwork.api.espn.com/artwork/collections/categories/0f8e3d42-fa27-3f60-9e8d-276e4892f50e","name":"NCAA Football","id":"0f8e3d42-fa27-3f60-9e8d-276e4892f50e","type":"league"},{"sportId":"20","artworkUrl":"https://artwork.api.espn.com/artwork/collections/categories/60459870-f8fc-3b3a-a6b9-d8af4bf19223","name":"Football","id":"60459870-f8fc-3b3a-a6b9-d8af4bf19223","type":"sport"},{"artworkUrl":"https://artwork.api.espn.com/artwork/collections/categories/4f080ef0-4cf0-4e0f-9c60-b43a982d5cc8","name":"Big 12 Conference","id":"4f080ef0-4cf0-4e0f-9c60-b43a982d5cc8","type":"conference"},{"artworkUrl":"https://artwork.api.espn.com/artwork/collections/categories/cbb67d00-f4b6-4e03-933e-76bfc23ea306","name":"NCAA","id":"cbb67d00-f4b6-4e03-933e-76bfc23ea306","type":"organizer"},{"artworkUrl":"https://artwork.api.espn.com/artwork/collections/categories/0ce3542e-d057-4001-80aa-1d9649289920","name":"Big 12 Now","id":"0ce3542e-d057-4001-80aa-1d9649289920","type":"compilation"}],"program_firstPresented":"2022-11-19T19:00:00.000+0000","program":"962bf235-5af9-477f-a030-0c2b32d22967","createdOn":"2022-11-07T20:31:13.490+0000","network":"espn_dtc","appGameLink":"sportscenter:https://x-callback-url/showWatchStream?playGameID=401404117","policyUrl":"https://restrictions.api.espn.com/restrictions/policies/7fc3ef27-a0b9-4baf-bef0-725be6eb103d","network_displayName":"ESPN+","end":"2022-11-19T22:00:00.000+0000","networkId":"a698f0a3-dcfc-4684-9ca2-3082a28111cc","id":"3c0df7fc-232b-473a-83e0-8ee94588edbc","program_language":"English","webAiringLink":"https://www.espn.com/watch/player/_/id/3c0df7fc-232b-473a-83e0-8ee94588edbc","webGameLink":"https://www.espn.com/watch/player/_/eventCalendarId/401404117?gameId=401404117&sourceLang=en","policy":{"viewingPolicies":[{"audience":{"name":"Audience for US and territories whitelist","match":"NONE","externalId":"AS_GU_MP_PR_US_VI","id":"78f1ce73-384f-483f-b4de-dc959651a7e9","properties":{"iso3166":["AS","GU","MP","PR","US","VI"]}},"name":"Viewing policy for US and territories allow list","externalId":"AS_GU_MP_PR_US_VI","id":"e2fdc729-4ba1-413e-9a02-6ddc74d89689","actions":["reject_blackout"]},{"audience":{"name":"ESPN_PLUS entitlement audience","match":"ANY","externalId":"ESPN_PLUS","id":"fab7975c-b5b6-47bb-9ec7-227b81ca8518","properties":{"subscription":["ESPN_PLUS"]}},"name":"Viewing policy for ESPN_PLUS entitlement","externalId":"ESPN_PLUS","id":"d922dd59-10ff-4c9c-bd1e-cae6560698ef","actions":["allow_entitlement"]},{"audience":{"name":"Audience for ESPN base tier","match":"ANY","externalId":"ESPN_BASE","id":"52a51035-cfc5-46ad-890e-1c8e6b8d2fa8","properties":{"subscription":["ESPN_BASE"]}},"name":"Viewing policy to allow startover","externalId":"ALLOW_STARTOVER","id":"08397749-a2c3-41a9-93b8-22c833b861f3","actions":["allow_startover"]}],"createdBy":"anonymous","lastModifiedBy":"anonymous","id":"7fc3ef27-a0b9-4baf-bef0-725be6eb103d","createdOn":"2022-11-07T20:31:13.694Z","lastModifiedOn":"2022-11-07T20:31:13.694Z"},"images":[{"width":640,"name":"#19 Kansas State vs. West Virginia","peers":[{"width":360,"name":"#19 Kansas State vs. West Virginia","url":"https://s.secure.espncdn.com/stitcher/artwork/collections/airings/3c0df7fc-232b-473a-83e0-8ee94588edbc/16x9.png","height":640}],"url":"https://s.secure.espncdn.com/stitcher/artwork/collections/airings/3c0df7fc-232b-473a-83e0-8ee94588edbc/16x9.png","height":360}],"artworkUrl":"https://artwork.api.espn.com/artwork/collections/airings/3c0df7fc-232b-473a-83e0-8ee94588edbc","lastModifiedBy":"external_ds","start":"2022-11-19T19:00:00.000+0000","externalId":"ncs.airingId:a117268497","lastModifiedOn":"2022-11-15T15:53:44.922+0000","appAiringLink":"sportscenter:https://x-callback-url/showWatchStream?playID=3c0df7fc-232b-473a-83e0-8ee94588edbc","createdBy":"internal_cs","program_originalAirDate":"2022-11-19T19:00:00+0000","program_shortTitle":"#19 Kansas State vs. West Virginia","program_eventUrl":"https://events.api.espn.com/eventcalendar/api/events/ec1/401404117","network_shortName":"ESPN+","properties":{"hasEspnId3Heartbeats":"false","language":"en-US","shortTitle":"#19 Kansas St vs. W Virginia","trueOriginal":"true","title":"#19 Kansas State vs. West Virginia","simulcastAiringId":"117268497","contentCleared":"true","hasPassThroughAds":"false","dtcPackages":["ESPN_PLUS"],"isLive":"true","hasNielsenWatermarks":"false","allowStartOver":"true","trackingId":"3c0df7fc-232b-473a-83e0-8ee94588edbc","commercialReplacement":"AD SERVE","allowedAccess":"domestic","reAir":"false","killDateTimestamp":"2022-12-19T19:00:00Z","sponsored":"false","liveReplay":"live_replay","nbStartTimestamp":"2022-11-19T19:00:00Z","origination":"EXCL","feedType":"NATIONAL FEED","ratingsId":"FBSA06145","name":"#19 Kansas State vs. West Virginia","shortName":"ESPN's Afternoon College Football","canIpAuthenticate":"false"}}],"shortName":"KSU @ WVU","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 2:00 PM EST","shortDetail":"11/19 - 2:00 PM EST"}},"status":"pre"},{"date":"2022-11-19T19:30:00Z","broadcast":"NBC/Peacock","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401404132","playByPlayAvailable":false,"uid":"s:20~l:23~e:401404132~c:401404132","competitors":[{"alternateColor":"ae9142","competitionIdPrevious":"401404131","color":"00122b","displayName":"Notre Dame Fighting Irish","type":"team","abbreviation":"ND","competitionIdNext":"401404133","uid":"s:20~l:23~t:87","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/87.png","winner":false,"record":"7-3","name":"Notre Dame","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/87.png","rank":20,"location":"Notre Dame","id":"87","order":0,"group":"18"},{"alternateColor":"a39161","competitionIdPrevious":"401411161","color":"88001a","displayName":"Boston College Eagles","type":"team","abbreviation":"BC","competitionIdNext":"401411173","uid":"s:20~l:23~t:103","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/103.png","winner":false,"record":"3-7","name":"Boston College","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/103.png","location":"Boston College","id":"103","order":1,"group":"44"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401404132","text":"Gamecast","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"103","abbreviation":"BC"},"favorite":false,"moneyLine":1050},"away":{"moneyLine":1050},"spread":-21,"home":{"moneyLine":-2000},"overUnder":45,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"ND -21.0","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"87","abbreviation":"ND"},"favorite":true,"moneyLine":-2000},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401404132","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/notre-dame-fighting-irish-football-tickets-notre-dame-stadium-11-19-2022--sports-ncaa-football/production/3796812?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/notre-dame-stadium-tickets/venue/1211?wsUser=717","text":"Tickets","isPremium":false}],"id":"401404132","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 2:30 PM EST","seasonType":"2","competitionId":"401404132","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"NBC","type":"TV","priority":1,"broadcasterId":379,"broadcastId":379,"station":"NBC","name":"NBC","typeId":1,"lang":"en","region":"us","shortName":"NBC","slug":"nbc","isNational":true},{"callLetters":"Peacock","type":"Web","priority":2,"broadcasterId":789,"broadcastId":789,"station":"Peacock","name":"Peacock","typeId":4,"lang":"en","region":"us","shortName":"Peacock","slug":"peacock","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":false,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Boston College Eagles at Notre Dame Fighting Irish","location":"Notre Dame Stadium","shortName":"BC @ ND","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 2:30 PM EST","shortDetail":"11/19 - 2:30 PM EST"}},"status":"pre"},{"date":"2022-11-19T20:30:00Z","broadcast":"CBS","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401403949","playByPlayAvailable":false,"uid":"s:20~l:23~e:401403949~c:401403949","competitors":[{"alternateColor":"ffffff","competitionIdPrevious":"401403942","color":"005DAA","displayName":"Kentucky Wildcats","type":"team","abbreviation":"UK","competitionIdNext":"401403960","uid":"s:20~l:23~t:96","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/96.png","winner":false,"record":"6-4","name":"Kentucky","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/96.png","rank":24,"location":"Kentucky","id":"96","order":0,"group":"6"},{"alternateColor":"000000","competitionIdPrevious":"401403944","color":"CC0000","displayName":"Georgia Bulldogs","type":"team","abbreviation":"UGA","competitionIdNext":"401403959","uid":"s:20~l:23~t:61","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/61.png","winner":false,"record":"10-0","name":"Georgia","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/61.png","rank":1,"location":"Georgia","id":"61","order":1,"group":"6"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401403949","text":"Gamecast","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"61","abbreviation":"UGA"},"favorite":true,"moneyLine":-2400},"away":{"moneyLine":-2400},"spread":22.5,"home":{"moneyLine":1150},"overUnder":49.5,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"UGA -22.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"96","abbreviation":"UK"},"favorite":false,"moneyLine":1150},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401403949","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/kentucky-wildcats-football-tickets-kroger-field-11-19-2022--sports-ncaa-football/production/3784066?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/kroger-field-tickets/venue/375?wsUser=717","text":"Tickets","isPremium":false}],"id":"401403949","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 3:30 PM EST","seasonType":"2","competitionId":"401403949","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"CBS","type":"TV","priority":1,"broadcasterId":44,"broadcastId":44,"station":"CBS","name":"CBS","typeId":1,"lang":"en","region":"us","shortName":"CBS","slug":"cbs","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":false,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Georgia Bulldogs at Kentucky Wildcats","location":"Kroger Field","shortName":"UGA @ UK","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 3:30 PM EST","shortDetail":"11/19 - 3:30 PM EST"}},"status":"pre"},{"date":"2022-11-19T20:30:00Z","broadcast":"ABC","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401405144","playByPlayAvailable":false,"uid":"s:20~l:23~e:401405144~c:401405144","competitors":[{"alternateColor":"ffcd00","competitionIdPrevious":"401405140","color":"D5002B","displayName":"Maryland Terrapins","type":"team","abbreviation":"MD","competitionIdNext":"401405152","uid":"s:20~l:23~t:120","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/120.png","winner":false,"record":"6-4","name":"Maryland","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/120.png","location":"Maryland","id":"120","order":0,"group":"52"},{"alternateColor":"666666","competitionIdPrevious":"401405139","color":"DE3121","displayName":"Ohio State Buckeyes","type":"team","abbreviation":"OSU","competitionIdNext":"401405153","uid":"s:20~l:23~t:194","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/194.png","winner":false,"record":"10-0","name":"Ohio State","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/194.png","rank":2,"location":"Ohio State","id":"194","order":1,"group":"52"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401405144","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401405144&sourceLang=en","text":"WatchESPN","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"194","abbreviation":"OSU"},"favorite":true,"moneyLine":-7000},"away":{"moneyLine":-7000},"spread":27.5,"home":{"moneyLine":1800},"overUnder":65,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"OSU -27.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"120","abbreviation":"MD"},"favorite":false,"moneyLine":1800},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401405144","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/maryland-terrapins-football-tickets-maryland-stadium-11-19-2022--sports-ncaa-football/production/3765769?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/maryland-stadium-tickets/venue/250?wsUser=717","text":"Tickets","isPremium":false}],"id":"401405144","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 3:30 PM EST","seasonType":"2","competitionId":"401405144","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"ABC","type":"TV","priority":1,"broadcasterId":2,"broadcastId":2,"station":"ABC","name":"ABC","typeId":1,"lang":"en","region":"us","shortName":"ABC","slug":"abc","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Ohio State Buckeyes at Maryland Terrapins","location":"SECU Stadium","shortName":"OSU @ MD","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 3:30 PM EST","shortDetail":"11/19 - 3:30 PM EST"}},"status":"pre"},{"date":"2022-11-19T20:30:00Z","broadcast":"ESPN","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401411165","playByPlayAvailable":false,"uid":"s:20~l:23~e:401411165~c:401411165","competitors":[{"alternateColor":"522d80","competitionIdPrevious":"401411158","color":"F66733","displayName":"Clemson Tigers","type":"team","abbreviation":"CLEM","competitionIdNext":"401403962","uid":"s:20~l:23~t:228","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/228.png","winner":false,"record":"9-1","name":"Clemson","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/228.png","rank":10,"location":"Clemson","id":"228","order":0,"group":"44"},{"alternateColor":"f0f0f0","competitionIdPrevious":"401411160","color":"004325","displayName":"Miami Hurricanes","type":"team","abbreviation":"MIA","competitionIdNext":"401411175","uid":"s:20~l:23~t:2390","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/2390.png","winner":false,"record":"5-5","name":"Miami","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2390.png","location":"Miami","id":"2390","order":1,"group":"45"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401411165","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401411165&sourceLang=en","text":"WatchESPN","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"2390","abbreviation":"MIA"},"favorite":false,"moneyLine":700},"away":{"moneyLine":700},"spread":-19,"home":{"moneyLine":-1100},"overUnder":48,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"CLEM -19.0","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"228","abbreviation":"CLEM"},"favorite":true,"moneyLine":-1100},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401411165","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/clemson-tigers-football-tickets-clemson-memorial-stadium-11-19-2022--sports-ncaa-football/production/3850111?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/clemson-memorial-stadium-tickets/venue/2198?wsUser=717","text":"Tickets","isPremium":false}],"id":"401411165","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 3:30 PM EST","seasonType":"2","competitionId":"401411165","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"ESPN","type":"TV","priority":1,"broadcasterId":126,"broadcastId":126,"station":"ESPN","name":"ESPN","typeId":1,"lang":"en","region":"us","shortName":"ESPN","slug":"espn","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Miami Hurricanes at Clemson Tigers","location":"Memorial Stadium (Clemson, SC)","shortName":"MIA @ CLEM","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 3:30 PM EST","shortDetail":"11/19 - 3:30 PM EST"}},"status":"pre"},{"date":"2022-11-19T20:30:00Z","broadcast":"BTN","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401405147","playByPlayAvailable":false,"uid":"s:20~l:23~e:401405147~c:401405147","competitors":[{"alternateColor":"ffffff","competitionIdPrevious":"401405138","color":"d21034","displayName":"Rutgers Scarlet Knights","type":"team","abbreviation":"RUTG","competitionIdNext":"401405152","uid":"s:20~l:23~t:164","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/164.png","winner":false,"record":"4-6","name":"Rutgers","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/164.png","location":"Rutgers","id":"164","order":0,"group":"52"},{"alternateColor":"002e5c","competitionIdPrevious":"401405140","color":"00265D","displayName":"Penn State Nittany Lions","type":"team","abbreviation":"PSU","competitionIdNext":"401405154","uid":"s:20~l:23~t:213","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/213.png","winner":false,"record":"8-2","name":"Penn State","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/213.png","rank":14,"location":"Penn State","id":"213","order":1,"group":"52"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401405147","text":"Gamecast","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"213","abbreviation":"PSU"},"favorite":true,"moneyLine":-1400},"away":{"moneyLine":-1400},"spread":19.5,"home":{"moneyLine":800},"overUnder":45,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (Colorado)","id":"52","priority":1},"details":"PSU -19.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"164","abbreviation":"RUTG"},"favorite":false,"moneyLine":800},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401405147","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/rutgers-scarlet-knights-football-tickets-shi-stadium-11-26-2022--sports-ncaa-football/production/3784096?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/shi-stadium-tickets/venue/1481?wsUser=717","text":"Tickets","isPremium":false}],"id":"401405147","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 3:30 PM EST","seasonType":"2","competitionId":"401405147","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"BTN","type":"TV","priority":1,"broadcasterId":35,"broadcastId":35,"station":"BTN","name":"BTN","typeId":1,"lang":"en","region":"us","shortName":"BTN","slug":"btn","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":false,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Penn State Nittany Lions at Rutgers Scarlet Knights","location":"SHI Stadium","shortName":"PSU @ RUTG","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 3:30 PM EST","shortDetail":"11/19 - 3:30 PM EST"}},"status":"pre"},{"date":"2022-11-19T20:30:00Z","broadcast":"ACCN","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401411167","playByPlayAvailable":false,"uid":"s:20~l:23~e:401411167~c:401411167","competitors":[{"alternateColor":"cccccc","competitionIdPrevious":"401411158","color":"ad000a","displayName":"Louisville Cardinals","type":"team","abbreviation":"LOU","competitionIdNext":"401403960","uid":"s:20~l:23~t:97","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/97.png","winner":false,"record":"6-4","name":"Louisville","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/97.png","location":"Louisville","id":"97","order":0,"group":"44"},{"alternateColor":"231f20","competitionIdPrevious":"401411161","color":"EF1216","displayName":"NC State Wolfpack","type":"team","abbreviation":"NCST","competitionIdNext":"401411172","uid":"s:20~l:23~t:152","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/152.png","winner":false,"record":"7-3","name":"NC State","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/152.png","rank":16,"location":"NC State","id":"152","order":1,"group":"44"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401411167","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401411167&sourceLang=en","text":"WatchESPN","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"152","abbreviation":"NCST"},"favorite":false,"moneyLine":158},"away":{"moneyLine":158},"spread":-4,"home":{"moneyLine":-190},"overUnder":45,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"LOU -4.0","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"97","abbreviation":"LOU"},"favorite":true,"moneyLine":-190},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401411167","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/louisville-cardinals-football-tickets-cardinal-stadium-11-19-2022--sports-ncaa-football/production/3849952?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/venues/cardinal-stadium-tickets.html?wsUser=717","text":"Tickets","isPremium":false}],"id":"401411167","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 3:30 PM EST","seasonType":"2","competitionId":"401411167","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"ACC NETWORK","type":"TV","priority":1,"broadcasterId":20,"broadcastId":20,"station":"ACC NETWORK","name":"ACC Network","typeId":1,"lang":"en","region":"us","shortName":"ACCN","slug":"acc-network","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"NC State Wolfpack at Louisville Cardinals","location":"Cardinal Stadium","shortName":"NCST @ LOU","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 3:30 PM EST","shortDetail":"11/19 - 3:30 PM EST"}},"status":"pre"},{"date":"2022-11-19T20:30:00Z","broadcast":"FS1","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401404116","playByPlayAvailable":false,"uid":"s:20~l:23~e:401404116~c:401404116","competitors":[{"alternateColor":"e8000d","competitionIdPrevious":"401404111","color":"0022B4","displayName":"Kansas Jayhawks","type":"team","abbreviation":"KU","competitionIdNext":"401404121","uid":"s:20~l:23~t:2305","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/2305.png","winner":false,"record":"6-4","name":"Kansas","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2305.png","location":"Kansas","id":"2305","order":0,"group":"4"},{"alternateColor":"f0f0f0","competitionIdPrevious":"401404113","color":"EE7524","displayName":"Texas Longhorns","type":"team","abbreviation":"TEX","competitionIdNext":"401404119","uid":"s:20~l:23~t:251","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/251.png","winner":false,"record":"6-4","name":"Texas","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/251.png","rank":18,"location":"Texas","id":"251","order":1,"group":"4"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401404116","text":"Gamecast","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"251","abbreviation":"TEX"},"favorite":true,"moneyLine":-335},"away":{"moneyLine":-335},"spread":9,"home":{"moneyLine":260},"overUnder":64,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"TEX -9.0","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"2305","abbreviation":"KU"},"favorite":false,"moneyLine":260},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401404116","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/kansas-jayhawks-football-tickets-memorial-stadium-ks-11-19-2022--sports-ncaa-football/production/3801290?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/venues/memorial-stadium_ks-tickets.html?wsUser=717","text":"Tickets","isPremium":false}],"id":"401404116","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 3:30 PM EST","seasonType":"2","competitionId":"401404116","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"FS1","type":"TV","priority":1,"broadcasterId":661,"broadcastId":661,"station":"FS1","name":"FOX Sports 1","typeId":1,"lang":"en","region":"us","shortName":"FS1","slug":"fs1","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":false,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Texas Longhorns at Kansas Jayhawks","location":"David Booth Kansas Memorial Stadium","shortName":"TEX @ KU","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 3:30 PM EST","shortDetail":"11/19 - 3:30 PM EST"}},"status":"pre"},{"date":"2022-11-19T22:30:00Z","broadcast":"ESPN2","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401411168","playByPlayAvailable":false,"uid":"s:20~l:23~e:401411168~c:401411168","competitors":[{"alternateColor":"13294b","competitionIdPrevious":"401411164","color":"99bfe5","displayName":"North Carolina Tar Heels","type":"team","abbreviation":"UNC","competitionIdNext":"401411172","uid":"s:20~l:23~t:153","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/153.png","winner":false,"record":"9-1","name":"North Carolina","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/153.png","rank":15,"location":"North Carolina","id":"153","order":0,"group":"45"},{"alternateColor":"002c56","competitionIdPrevious":"401411160","color":"00223e","displayName":"Georgia Tech Yellow Jackets","type":"team","abbreviation":"GT","competitionIdNext":"401403959","uid":"s:20~l:23~t:59","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/59.png","winner":false,"record":"4-6","name":"Georgia Tech","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/59.png","location":"Georgia Tech","id":"59","order":1,"group":"45"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401411168","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401411168&sourceLang=en","text":"WatchESPN","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"59","abbreviation":"GT"},"favorite":false,"moneyLine":900},"away":{"moneyLine":900},"spread":-21.5,"home":{"moneyLine":-1600},"overUnder":63.5,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"UNC -21.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"153","abbreviation":"UNC"},"favorite":true,"moneyLine":-1600},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401411168","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/north-carolina-tar-heels-football-tickets-kenan-stadium-11-19-2022--sports-ncaa-football/production/3850036?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/venues/kenan-stadium-tickets.html?wsUser=717","text":"Tickets","isPremium":false}],"id":"401411168","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 5:30 PM EST","seasonType":"2","competitionId":"401411168","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"ESPN2","type":"TV","priority":1,"broadcasterId":139,"broadcastId":139,"station":"ESPN2","name":"ESPN2","typeId":1,"lang":"en","region":"us","shortName":"ESPN2","slug":"espn2","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Georgia Tech Yellow Jackets at North Carolina Tar Heels","location":"Kenan Stadium","shortName":"GT @ UNC","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 5:30 PM EST","shortDetail":"11/19 - 5:30 PM EST"}},"status":"pre"},{"date":"2022-11-20T00:00:00Z","broadcast":"ESPN","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401403953","playByPlayAvailable":false,"uid":"s:20~l:23~e:401403953~c:401403953","competitors":[{"alternateColor":"000000","competitionIdPrevious":"401403941","color":"670010","displayName":"South Carolina Gamecocks","type":"team","abbreviation":"SC","competitionIdNext":"401403962","uid":"s:20~l:23~t:2579","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/2579.png","winner":false,"record":"6-4","name":"South Carolina","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2579.png","location":"South Carolina","id":"2579","order":0,"group":"6"},{"alternateColor":"ffffff","competitionIdPrevious":"401403945","color":"EE9627","displayName":"Tennessee Volunteers","type":"team","abbreviation":"TENN","competitionIdNext":"401403964","uid":"s:20~l:23~t:2633","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/2633.png","winner":false,"record":"9-1","name":"Tennessee","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2633.png","rank":5,"location":"Tennessee","id":"2633","order":1,"group":"6"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401403953","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401403953&sourceLang=en","text":"WatchESPN","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"2633","abbreviation":"TENN"},"favorite":true,"moneyLine":-2000},"away":{"moneyLine":-2000},"spread":21.5,"home":{"moneyLine":1050},"overUnder":66,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"TENN -21.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"2579","abbreviation":"SC"},"favorite":false,"moneyLine":1050},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401403953","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/south-carolina-gamecocks-football-tickets-williams-brice-stadium-11-19-2022--sports-ncaa-football/production/3813379?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/williamsbrice-stadium-tickets/venue/1887?wsUser=717","text":"Tickets","isPremium":false}],"id":"401403953","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 7:00 PM EST","seasonType":"2","competitionId":"401403953","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"ESPN","type":"TV","priority":1,"broadcasterId":126,"broadcastId":126,"station":"ESPN","name":"ESPN","typeId":1,"lang":"en","region":"us","shortName":"ESPN","slug":"espn","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Tennessee Volunteers at South Carolina Gamecocks","location":"Williams-Brice Stadium","shortName":"TENN @ SC","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 7:00 PM EST","shortDetail":"11/19 - 7:00 PM EST"}},"status":"pre"},{"date":"2022-11-20T00:30:00Z","broadcast":"SECN","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401403947","playByPlayAvailable":false,"uid":"s:20~l:23~e:401403947~c:401403947","competitors":[{"alternateColor":"000000","competitionIdPrevious":"401403939","color":"9c1831","displayName":"Arkansas Razorbacks","type":"team","abbreviation":"ARK","competitionIdNext":"401403961","uid":"s:20~l:23~t:8","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/8.png","winner":false,"record":"5-5","name":"Arkansas","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/8.png","location":"Arkansas","id":"8","order":0,"group":"7"},{"alternateColor":"00205b","competitionIdPrevious":"401403943","color":"001148","displayName":"Ole Miss Rebels","type":"team","abbreviation":"MISS","competitionIdNext":"401403956","uid":"s:20~l:23~t:145","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/145.png","winner":false,"record":"8-2","name":"Ole Miss","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/145.png","rank":11,"location":"Ole Miss","id":"145","order":1,"group":"7"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401403947","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401403947&sourceLang=en","text":"WatchESPN","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"145","abbreviation":"MISS"},"favorite":true,"moneyLine":-130},"away":{"moneyLine":-130},"spread":2.5,"home":{"moneyLine":110},"overUnder":60.5,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"MISS -2.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"8","abbreviation":"ARK"},"favorite":false,"moneyLine":110},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401403947","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/arkansas-razorbacks-football-tickets-razorback-stadium-11-19-2022--sports-ncaa-football/production/3782842?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/razorback-stadium-tickets/venue/1392?wsUser=717","text":"Tickets","isPremium":false}],"id":"401403947","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 7:30 PM EST","seasonType":"2","competitionId":"401403947","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"SECN","type":"TV","priority":1,"broadcasterId":459,"broadcastId":459,"station":"SECN","name":"SEC Network","typeId":1,"lang":"en","region":"us","shortName":"SECN","slug":"secn","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Ole Miss Rebels at Arkansas Razorbacks","location":"Razorback Stadium","shortName":"MISS @ ARK","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 7:30 PM EST","shortDetail":"11/19 - 7:30 PM EST"}},"status":"pre"},{"date":"2022-11-20T01:00:00Z","broadcast":"FOX","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401404044","playByPlayAvailable":false,"uid":"s:20~l:23~e:401404044~c:401404044","competitors":[{"alternateColor":"ffc72c","competitionIdPrevious":"401404034","color":"005C8E","displayName":"UCLA Bruins","type":"team","abbreviation":"UCLA","competitionIdNext":"401404046","uid":"s:20~l:23~t:26","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/26.png","winner":false,"record":"8-2","name":"UCLA","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/26.png","rank":12,"location":"UCLA","id":"26","order":0,"group":"9"},{"alternateColor":"ae2531","competitionIdPrevious":"401404033","color":"ffc72c","displayName":"USC Trojans","type":"team","abbreviation":"USC","competitionIdNext":"401404133","uid":"s:20~l:23~t:30","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/30.png","winner":false,"record":"9-1","name":"USC","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/30.png","rank":8,"location":"USC","id":"30","order":1,"group":"9"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401404044","text":"Gamecast","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"30","abbreviation":"USC"},"favorite":true,"moneyLine":-125},"away":{"moneyLine":-125},"spread":2.5,"home":{"moneyLine":105},"overUnder":75,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"USC -2.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"26","abbreviation":"UCLA"},"favorite":false,"moneyLine":105},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401404044","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/ucla-bruins-football-tickets-rose-bowl-stadium-11-19-2022--sports-ncaa-football/production/3814317?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/rose-bowl-stadium-tickets/venue/1457?wsUser=717","text":"Tickets","isPremium":false}],"id":"401404044","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 8:00 PM EST","seasonType":"2","competitionId":"401404044","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"FOX","type":"TV","priority":1,"broadcasterId":148,"broadcastId":148,"station":"FOX","name":"FOX","typeId":1,"lang":"en","region":"us","shortName":"FOX","slug":"fox","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":false,"seasonStartDate":"2022-07-01T07:00:00Z","name":"USC Trojans at UCLA Bruins","location":"Rose Bowl","shortName":"USC @ UCLA","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 8:00 PM EST","shortDetail":"11/19 - 8:00 PM EST"}},"status":"pre"},{"date":"2022-11-20T02:00:00Z","broadcast":"ESPN2","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401426612","playByPlayAvailable":false,"uid":"s:20~l:23~e:401426612~c:401426612","competitors":[{"alternateColor":"2b0d57","competitionIdPrevious":"401403939","color":"fdd023","displayName":"LSU Tigers","type":"team","abbreviation":"LSU","competitionIdNext":"401403963","uid":"s:20~l:23~t:99","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/99.png","winner":false,"record":"8-2","name":"LSU","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/99.png","rank":7,"location":"LSU","id":"99","order":0,"group":"7"},{"alternateColor":"ffc845","competitionIdPrevious":"401426606","color":"003b28","displayName":"UAB Blazers","type":"team","abbreviation":"UAB","competitionIdNext":"401426616","uid":"s:20~l:23~t:5","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/5.png","winner":false,"record":"5-5","name":"UAB","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/5.png","location":"UAB","id":"5","order":1,"group":"12"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401426612","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401426612&sourceLang=en","text":"WatchESPN","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"5","abbreviation":"UAB"},"favorite":false,"moneyLine":430},"away":{"moneyLine":430},"spread":-14.5,"home":{"moneyLine":-600},"overUnder":52.5,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"LSU -14.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"99","abbreviation":"LSU"},"favorite":true,"moneyLine":-600},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401426612","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/lsu-tigers-football-tickets-lsu-tiger-stadium-11-19-2022--sports-ncaa-football/production/3782737?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/lsu-tiger-stadium-tickets/venue/949?wsUser=717","text":"Tickets","isPremium":false}],"id":"401426612","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 9:00 PM EST","seasonType":"2","competitionId":"401426612","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"ESPN2","type":"TV","priority":1,"broadcasterId":139,"broadcastId":139,"station":"ESPN2","name":"ESPN2","typeId":1,"lang":"en","region":"us","shortName":"ESPN2","slug":"espn2","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"UAB Blazers at LSU Tigers","location":"Tiger Stadium (LA)","shortName":"UAB @ LSU","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 9:00 PM EST","shortDetail":"11/19 - 9:00 PM EST"}},"status":"pre"},{"date":"2022-11-20T02:00:00Z","broadcast":"PAC12","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401404042","playByPlayAvailable":false,"uid":"s:20~l:23~e:401404042~c:401404042","competitors":[{"alternateColor":"e8e3d3","competitionIdPrevious":"401404037","color":"2B2F64","displayName":"Washington Huskies","type":"team","abbreviation":"WASH","competitionIdNext":"401404051","uid":"s:20~l:23~t:264","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/264.png","winner":false,"record":"8-2","name":"Washington","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/264.png","rank":25,"location":"Washington","id":"264","order":0,"group":"9"},{"alternateColor":"ffd200","competitionIdPrevious":"401404033","color":"d1c57e","displayName":"Colorado Buffaloes","type":"team","abbreviation":"COLO","competitionIdNext":"401404048","uid":"s:20~l:23~t:38","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/38.png","winner":false,"record":"1-9","name":"Colorado","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/38.png","location":"Colorado","id":"38","order":1,"group":"9"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401404042","text":"Gamecast","isPremium":false}],"odds":{"underOdds":-110,"overUnder":64,"awayTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"38","abbreviation":"COLO"},"favorite":false},"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"WASH -31.0","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"264","abbreviation":"WASH"},"favorite":true},"spread":-31,"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401404042","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/washington-huskies-football-tickets-husky-stadium-wa-11-19-2022--sports-ncaa-football/production/3805908?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/husky-stadiumwa-tickets/venue/769?wsUser=717","text":"Tickets","isPremium":false}],"id":"401404042","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 9:00 PM EST","seasonType":"2","competitionId":"401404042","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"PAC12","type":"TV","priority":1,"broadcasterId":683,"broadcastId":683,"station":"PAC12","name":"Pac-12 Network","typeId":1,"lang":"en","region":"us","shortName":"PAC12","slug":"pac12","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":false,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Colorado Buffaloes at Washington Huskies","location":"Husky Stadium","shortName":"COLO @ WASH","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 9:00 PM EST","shortDetail":"11/19 - 9:00 PM EST"}},"status":"pre"},{"date":"2022-11-20T03:30:00Z","broadcast":"ESPN","commentaryAvailable":false,"week":12,"timeValid":true,"link":"https://www.espn.com/college-football/game/_/gameId/401404043","playByPlayAvailable":false,"uid":"s:20~l:23~e:401404043~c:401404043","competitors":[{"alternateColor":"fee123","competitionIdPrevious":"401404037","color":"044520","displayName":"Oregon Ducks","type":"team","abbreviation":"ORE","competitionIdNext":"401404047","uid":"s:20~l:23~t:2483","homeAway":"home","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/2483.png","winner":false,"record":"8-2","name":"Oregon","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2483.png","rank":6,"location":"Oregon","id":"2483","order":0,"group":"9"},{"alternateColor":"7e8083","competitionIdPrevious":"401404038","color":"890012","displayName":"Utah Utes","type":"team","abbreviation":"UTAH","competitionIdNext":"401404048","uid":"s:20~l:23~t:254","homeAway":"away","score":"","logoDark":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/254.png","winner":false,"record":"8-2","name":"Utah","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/254.png","rank":13,"location":"Utah","id":"254","order":1,"group":"9"}],"appLinks":[{"isExternal":false,"shortText":"Summary","rel":["summary","sportscenter","app","event"],"language":"en-US","href":"sportscenter:https://x-callback-url/showGame?sportName=football&leagueAbbrev=college-football&gameId=401404043","text":"Gamecast","isPremium":false},{"isExternal":false,"shortText":"WatchESPN","rel":["watchespn","app","event"],"language":"en-US","href":"watchespn:https://showEvent?gameId=401404043&sourceLang=en","text":"WatchESPN","isPremium":false}],"odds":{"underOdds":-110,"awayTeamOdds":{"spreadOdds":-110,"underdog":true,"team":{"id":"254","abbreviation":"UTAH"},"favorite":false,"moneyLine":130},"away":{"moneyLine":130},"spread":-3,"home":{"moneyLine":-155},"overUnder":61.5,"spreadWinner":false,"moneylineWinner":false,"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"ORE -3.0","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":false,"team":{"id":"2483","abbreviation":"ORE"},"favorite":true,"moneyLine":-155},"overOdds":-110},"seasonTypeHasGroups":false,"season":2022,"links":[{"isExternal":false,"rel":["summary","desktop","event"],"language":"en-US","href":"https://www.espn.com/college-football/game/_/gameId/401404043","text":"Gamecast","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","event"],"language":"en-US","href":"https://www.vividseats.com/oregon-ducks-football-tickets-autzen-stadium-11-19-2022--sports-ncaa-football/production/3805334?wsUser=717","text":"Tickets","isPremium":false},{"isExternal":true,"rel":["tickets","desktop","venue"],"language":"en-US","href":"https://www.vividseats.com/autzen-stadium-tickets/venue/2232?wsUser=717","text":"Tickets","isPremium":false}],"id":"401404043","recent":false,"group":{"groupId":"2","name":"Regular Season","abbreviation":"reg","shortName":"REG"},"summary":"11/19 - 10:30 PM EST","seasonType":"2","competitionId":"401404043","period":0,"gamecastAvailable":false,"weekText":"Week 12","broadcasts":[{"callLetters":"ESPN","type":"TV","priority":1,"broadcasterId":126,"broadcastId":126,"station":"ESPN","name":"ESPN","typeId":1,"lang":"en","region":"us","shortName":"ESPN","slug":"espn","isNational":true}],"clock":"0:00","seasonEndDate":"2022-12-11T07:59:00Z","onWatch":true,"seasonStartDate":"2022-07-01T07:00:00Z","name":"Utah Utes at Oregon Ducks","location":"Autzen Stadium","shortName":"UTAH @ ORE","fullStatus":{"period":0,"displayClock":"0:00","clock":0,"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 10:30 PM EST","shortDetail":"11/19 - 10:30 PM EST"}},"status":"pre"}]}],"name":"Football","id":"20","slug":"football"}],"zipcodes":{}},
queue: [],
indexTopics: {"supportedPubKeys":{"espn-es-co-soccer-index":true,"espnin-en-soccer-index":true,"espn-es-ar-frontpage-index":true,"espn-es-cl-soccer-index":true,"espnin-en-cricket-index":true,"espnuk-en-rugby-index":true,"espnau-en-frontpage-index":true,"espnuk-en-tennis-index":true,"espn-es-cl-frontpage-index":true,"espnuk-en-frontpage-index":true,"espn-en-ncaa-index":true,"espnin-en-frontpage-index":true,"espn-en-tennis-index":true,"espn-es-ar-rpm-index":true,"espn-es-mx-soccer-index":true,"espn-en-womenbb-index":true,"espnuk-en-cricket-index":true,"espnin-en-tennis-index":true,"espn-es-ve-soccer-index":true,"espn-es-ar-soccer-index":true,"espn-es-us-frontpage-index":true,"espn-es-ar-tennis-index":true,"espn-es-co-frontpage-index":true,"espn-es-us-other-sports-index":true,"espn-es-us-soccer-index":true,"espnau-en-rugby-index":true,"espnza-en-frontpage-index":true,"espnuk-en-soccer-index":true,"espn-en-frontpage-index":true,"17784479":true,"espn-es-ve-frontpage-index":true,"espn-es-mx-frontpage-index":true,"espn-es-ar-rugby-index":true,"espnza-en-soccer-index":true,"espn-en-rpm-index":true,"espn-en-frontpage-grant-test-index":true}}
};
</script>
<script type='text/javascript'>jQuery.subscribe('espn.defer.end', function () { espn.scoreboard.init(); });</script>
<script>
(function() {
function loadDefer() {
var deferScripts = [
'https://a.espncdn.com/redesign/0.618.2/js/espn-defer.js',
'https://a.espncdn.com/redesign/0.618.2/js/espn-defer-low.js'
];
$.when(deferScripts.map(function (script) {
var deferred = $.Deferred();
$.getScriptCache(script, deferred.resolve);
return deferred;
})).done(function () {
if(espn.siteType === 'data-lite' && typeof espn.ads.loadGPT === 'function') {
espn.ads.loadGPT();
}
});
}
if(window.espn.loadType === "loadEnd" && espn_ui.deviceType !== 'desktop') {
var race = [];
$.when(function () {
var deferred = $.Deferred();
$(window).load(deferred.resolve);
if(espn.siteType !== 'data-lite') {
setTimeout( deferred.resolve, 5000 );
}
return deferred;
}()).then(loadDefer)
}else{
loadDefer();
}
})();
</script>
<script>espn_ui.Helpers.translate.init();</script>
<script type="text/javascript">
(function($) {
var espn = window.espn || {},
DTCpackages = window.DTCpackages || [];
espn.gamepackage = espn.gamepackage || {};
espn.gamepackage.gameId = "401403947";
espn.gamepackage.type = "game";
espn.gamepackage.timestamp = "2022-11-20T00:30Z";
espn.gamepackage.status = "pre";
espn.gamepackage.league = "college-football";
espn.gamepackage.leagueId = 23;
espn.gamepackage.sport = "football";
espn.gamepackage.network = "SECN";
espn.gamepackage.awayTeamName = "ole-miss-rebels";
espn.gamepackage.homeTeamName = "arkansas-razorbacks";
espn.gamepackage.awayTeamId = "145";
espn.gamepackage.homeTeamId = "8";
espn.gamepackage.awayTeamColor = "001148";
espn.gamepackage.homeTeamColor = "9c1831";
espn.gamepackage.showGamebreak = false;
espn.gamepackage.supportsHeadshots = true
espn.gamepackage.playByPlaySource = "none";
espn.gamepackage.numPeriods = null;
espn.scoreboard = espn.scoreboard || {};
espn.scoreboard.hiddenGameId = "401403947";
espn.gamepackage.data = {"news":{"link":{"isExternal":false,"shortText":"All News","rel":["index","desktop","league"],"language":"en-US","href":"https://www.espn.com/college-football/","text":"All NCAAF News","isPremium":false},"header":"NCAAF News","articles":[{"images":[{"name":"3 Virginia football players killed Sunday in Charlottesville shooting","width":576,"alt":"","caption":"Mark Schlabach reports from the University of Virginia on the latest surrounding the shooting on campus.","url":"https://a.espncdn.com/media/motion/2022/1115/dm_221115_svp_mark_schlabach_on_school_shooting104/dm_221115_svp_mark_schlabach_on_school_shooting104.jpg","height":324}],"premium":false,"description":"Mark Schlabach reports from the University of Virginia on the latest surrounding the shooting on campus.","links":{"web":{"short":{"href":"https://es.pn/3E1kykA"},"href":"https://www.espn.com/video/clip?id=35030011"},"api":{"news":{"href":"https://api-app.espn.com/v1/video/clips/35030011"},"self":{"href":"https://api-app.espn.com/v1/video/clips/35030011"}}},"published":"2022-11-15T18:50:57Z","lastModified":"2022-11-15T18:50:56Z","categories":[{"uid":"s:20~l:23","sportId":23,"leagueId":23,"league":{"description":"College Football","links":{"web":{"leagues":{"href":"https://www.espn.com/college-football/"}},"mobile":{"leagues":{"href":"https://m.espn.com/ncf/"}},"api":{"leagues":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football"}}},"id":23},"description":"College Football","id":9571,"type":"league","createDate":"2022-11-15T05:14:34Z"},{"uid":"s:20~l:23~t:258","sportId":23,"teamId":258,"description":"Virginia Cavaliers","id":1066,"team":{"description":"Virginia Cavaliers","links":{"web":{"teams":{"href":"https://www.espn.com/college-football/team/_/id/258/virginia-cavaliers"}},"mobile":{"teams":{"href":"https://m.espn.com/ncf/clubhouse?teamId=258"}},"api":{"teams":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football/teams/258"}}},"id":258},"type":"team","createDate":"2022-11-15T05:14:34Z"},{"guid":"0f8e3d42-fa27-3f60-9e8d-276e4892f50e","type":"guid","createDate":"2022-11-15T05:14:34Z"},{"guid":"b5c648b50b1fba55a77e8150a1869d4c","type":"guid","createDate":"2022-11-15T05:14:34Z"}],"type":"Media","headline":"3 Virginia football players killed Sunday in Charlottesville shooting"},{"images":[{"name":"CFP picture remains muddled, but could sort itself out","width":576,"alt":"","caption":"Thinking Out Loud's Spencer Hall and Richard Johnson debate the myriad of College Football Playoff scenarios that are still in play as the regular season winds down.","url":"https://a.espncdn.com/media/motion/2022/1114/dm_221114_SEC_NCF_Analysis_CFP_picture_221114/dm_221114_SEC_NCF_Analysis_CFP_picture_221114.jpg","height":324}],"premium":false,"description":"Thinking Out Loud's Spencer Hall and Richard Johnson debate the myriad of College Football Playoff scenarios that are still in play as the regular season winds down.","links":{"web":{"short":{"href":"https://es.pn/3UZmst9"},"href":"https://www.espn.com/video/clip?id=35028776"},"api":{"news":{"href":"https://api-app.espn.com/v1/video/clips/35028776"},"self":{"href":"https://api-app.espn.com/v1/video/clips/35028776"}}},"published":"2022-11-15T18:45:19Z","lastModified":"2022-11-15T18:45:18Z","categories":[{"sportId":0,"topicId":89,"description":"sec network","id":126329,"type":"topic","createDate":"2022-11-15T01:40:51Z"},{"uid":"s:20~l:23~t:61","sportId":23,"teamId":61,"description":"Georgia Bulldogs","id":1091,"team":{"description":"Georgia Bulldogs","links":{"web":{"teams":{"href":"https://www.espn.com/college-football/team/_/id/61/georgia-bulldogs"}},"mobile":{"teams":{"href":"https://m.espn.com/ncf/clubhouse?teamId=61"}},"api":{"teams":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football/teams/61"}}},"id":61},"type":"team","createDate":"2022-11-15T01:40:51Z"},{"uid":"s:20~l:23","sportId":23,"leagueId":23,"league":{"description":"College Football","links":{"web":{"leagues":{"href":"https://www.espn.com/college-football/"}},"mobile":{"leagues":{"href":"https://m.espn.com/ncf/"}},"api":{"leagues":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football"}}},"id":23},"description":"College Football","id":9571,"type":"league","createDate":"2022-11-15T01:40:51Z"},{"uid":"s:20~l:23~t:99","sportId":23,"teamId":99,"description":"LSU Tigers","id":1098,"team":{"description":"LSU Tigers","links":{"web":{"teams":{"href":"https://www.espn.com/college-football/team/_/id/99/lsu-tigers"}},"mobile":{"teams":{"href":"https://m.espn.com/ncf/clubhouse?teamId=99"}},"api":{"teams":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football/teams/99"}}},"id":99},"type":"team","createDate":"2022-11-15T01:40:51Z"},{"uid":"s:20~l:23~t:2633","sportId":23,"teamId":2633,"description":"Tennessee Volunteers","id":1095,"team":{"description":"Tennessee Volunteers","links":{"web":{"teams":{"href":"https://www.espn.com/college-football/team/_/id/2633/tennessee-volunteers"}},"mobile":{"teams":{"href":"https://m.espn.com/ncf/clubhouse?teamId=2633"}},"api":{"teams":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football/teams/2633"}}},"id":2633},"type":"team","createDate":"2022-11-15T01:40:51Z"},{"guid":"b9a22bd6744992bc0e95a6d8da673b3e","type":"guid","createDate":"2022-11-15T01:40:51Z"},{"guid":"de276cc4dc02159f0c1c67ddaf02a9ea","type":"guid","createDate":"2022-11-15T01:40:51Z"},{"guid":"7863289179dda9abc720008c86f843de","type":"guid","createDate":"2022-11-15T01:40:51Z"},{"guid":"4351fef8fe6953b1ea5772684b36ec35","type":"guid","createDate":"2022-11-15T01:40:51Z"},{"guid":"0f8e3d42-fa27-3f60-9e8d-276e4892f50e","type":"guid","createDate":"2022-11-15T01:40:51Z"}],"type":"Media","headline":"CFP picture remains muddled, but could sort itself out"},{"images":[{"name":"Catch of the year candidates: Who did it best?","width":576,"alt":"","caption":"Notre Dame's Braden Lenzy and Vikings' Justin Jefferson go head to head for catch of the year.","url":"https://a.espncdn.com/media/motion/2022/1114/dm_221114_Catch_of_the_year_Jefferson_ND/dm_221114_Catch_of_the_year_Jefferson_ND.jpg","height":324}],"premium":false,"description":"Notre Dame's Braden Lenzy and Vikings' Justin Jefferson go head to head for catch of the year.","links":{"web":{"short":{"href":"https://es.pn/3GayoE9"},"href":"https://www.espn.com/video/clip?id=35026467"},"api":{"news":{"href":"https://api-app.espn.com/v1/video/clips/35026467"},"self":{"href":"https://api-app.espn.com/v1/video/clips/35026467"}}},"published":"2022-11-15T18:41:01Z","lastModified":"2022-11-15T18:41:00Z","categories":[{"sportId":0,"topicId":615,"description":"nfl game footage","id":177758,"type":"topic","createDate":"2022-11-14T16:56:58Z"},{"uid":"s:20~l:28","sportId":28,"leagueId":28,"league":{"description":"NFL","links":{"web":{"leagues":{"href":"https://www.espn.com/nfl/"}},"mobile":{"leagues":{"href":"https://m.espn.com/nfl/"}},"api":{"leagues":{"href":"https://now.core.api.espn.com/v1/sports/football/nfl"}}},"id":28},"description":"NFL","id":9572,"type":"league","createDate":"2022-11-14T16:56:58Z"},{"uid":"s:20~l:28~a:4262921","sportId":28,"athleteId":4262921,"athlete":{"description":"Justin Jefferson","links":{"web":{"athletes":{"href":"https://www.espn.com/nfl/player/_/id/4262921/justin-jefferson"}},"mobile":{"athletes":{"href":"https://m.espn.com/nfl/playercard?playerId=4262921"}},"api":{"athletes":{"href":"https://now.core.api.espn.com/v1/sports/football/nfl/athletes/4262921"}}},"id":4262921},"description":"Justin Jefferson","id":435021,"type":"athlete","createDate":"2022-11-14T16:56:58Z"},{"uid":"s:20~l:28~t:16","sportId":28,"teamId":16,"description":"Minnesota Vikings","id":1920,"team":{"description":"Minnesota Vikings","links":{"web":{"teams":{"href":"https://www.espn.com/nfl/team/_/name/min/minnesota-vikings"}},"mobile":{"teams":{"href":"https://m.espn.com/nfl/clubhouse?teamId=16"}},"api":{"teams":{"href":"https://now.core.api.espn.com/v1/sports/football/nfl/teams/16"}}},"id":16},"type":"team","createDate":"2022-11-14T16:56:58Z"},{"uid":"s:20~l:23~a:4372770","sportId":23,"athleteId":4372770,"athlete":{"description":"Braden Lenzy","links":{"web":{"athletes":{"href":"https://www.espn.com/college-football/player/_/id/4372770/braden-lenzy"}},"mobile":{"athletes":{"href":"https://m.espn.com/ncf/playercard?playerId=4372770"}},"api":{"athletes":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football/athletes/4372770"}}},"id":4372770},"description":"Braden Lenzy","id":224638,"type":"athlete","createDate":"2022-11-14T16:56:58Z"},{"uid":"s:20~l:23","sportId":23,"leagueId":23,"league":{"description":"College Football","links":{"web":{"leagues":{"href":"https://www.espn.com/college-football/"}},"mobile":{"leagues":{"href":"https://m.espn.com/ncf/"}},"api":{"leagues":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football"}}},"id":23},"description":"College Football","id":9571,"type":"league","createDate":"2022-11-14T16:56:58Z"},{"uid":"s:20~l:23~t:87","sportId":23,"teamId":87,"description":"Notre Dame Fighting Irish","id":1164,"team":{"description":"Notre Dame Fighting Irish","links":{"web":{"teams":{"href":"https://www.espn.com/college-football/team/_/id/87/notre-dame-fighting-irish"}},"mobile":{"teams":{"href":"https://m.espn.com/ncf/clubhouse?teamId=87"}},"api":{"teams":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football/teams/87"}}},"id":87},"type":"team","createDate":"2022-11-14T16:56:58Z"},{"guid":"f8991a6443741ab8f9b7f008ae9817ec","type":"guid","createDate":"2022-11-14T16:56:58Z"},{"guid":"0f8e3d42-fa27-3f60-9e8d-276e4892f50e","type":"guid","createDate":"2022-11-14T16:56:58Z"},{"guid":"c7fb199625307f989f2f572debf989f4","type":"guid","createDate":"2022-11-14T16:56:58Z"},{"guid":"ebc2999c2ff48435ca469641e9f9ea10","type":"guid","createDate":"2022-11-14T16:56:58Z"},{"guid":"3db556c9ed76a7a54ccba92fc6db4334","type":"guid","createDate":"2022-11-14T16:56:58Z"},{"guid":"17256dc5749f706aefe0b8d4f205c4f3","type":"guid","createDate":"2022-11-14T16:56:58Z"},{"guid":"ad4c3bd2-ddb6-3f8c-8abf-744855a08fa4","type":"guid","createDate":"2022-11-14T16:56:58Z"}],"type":"Media","headline":"Catch of the year candidates: Who did it best?"},{"images":[{"name":"Smart reveals Georgia's secret to avoiding complacency","width":576,"alt":"","caption":"Kirby Smart explains how the No. 1 Bulldogs remain hungry after working their way to the top and breaks down Kentucky QB Will Levis' unaffected play style.","url":"https://a.espncdn.com/media/motion/2022/1114/dm_221114_SEC_NCF_Presser_UGA_KIrby_221114/dm_221114_SEC_NCF_Presser_UGA_KIrby_221114.jpg","height":324}],"premium":false,"description":"Kirby Smart explains how the No. 1 Bulldogs remain hungry after working their way to the top and breaks down Kentucky QB Will Levis' unaffected play style.","links":{"web":{"short":{"href":"https://es.pn/3TvYfJz"},"href":"https://www.espn.com/video/clip?id=35026945"},"api":{"news":{"href":"https://api-app.espn.com/v1/video/clips/35026945"},"self":{"href":"https://api-app.espn.com/v1/video/clips/35026945"}}},"published":"2022-11-15T18:41:20Z","lastModified":"2022-11-15T18:41:20Z","categories":[{"sportId":0,"topicId":89,"description":"sec network","id":126329,"type":"topic","createDate":"2022-11-14T18:25:41Z"},{"uid":"s:20~l:23","sportId":23,"leagueId":23,"league":{"description":"College Football","links":{"web":{"leagues":{"href":"https://www.espn.com/college-football/"}},"mobile":{"leagues":{"href":"https://m.espn.com/ncf/"}},"api":{"leagues":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football"}}},"id":23},"description":"College Football","id":9571,"type":"league","createDate":"2022-11-14T18:25:41Z"},{"sportId":3170,"teamId":61,"description":"Georgia Bulldogs","id":14521,"team":{"description":"Georgia Bulldogs","links":{"web":{"teams":{"href":"https://www.espn.com/college-sports/team/_/name/:abbreviation/:location-:name"}},"mobile":{"teams":{}},"api":{"teams":{}}},"id":61},"type":"team","createDate":"2022-11-14T18:25:41Z"},{"uid":"s:20~l:23~t:61","sportId":23,"teamId":61,"description":"Georgia Bulldogs","id":1091,"team":{"description":"Georgia Bulldogs","links":{"web":{"teams":{"href":"https://www.espn.com/college-football/team/_/id/61/georgia-bulldogs"}},"mobile":{"teams":{"href":"https://m.espn.com/ncf/clubhouse?teamId=61"}},"api":{"teams":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football/teams/61"}}},"id":61},"type":"team","createDate":"2022-11-14T18:25:41Z"},{"guid":"4351fef8fe6953b1ea5772684b36ec35","type":"guid","createDate":"2022-11-14T18:25:41Z"},{"guid":"7863289179dda9abc720008c86f843de","type":"guid","createDate":"2022-11-14T18:25:41Z"},{"guid":"0f8e3d42-fa27-3f60-9e8d-276e4892f50e","type":"guid","createDate":"2022-11-14T18:25:41Z"}],"type":"Media","headline":"Smart reveals Georgia's secret to avoiding complacency"},{"images":[{"name":"Hogs' Pittman shares thrill of night game vs. Rebels","width":576,"alt":"","caption":"Sam Pittman points to Arkansas' recent improvements and identifies specific No. 11 Ole Miss talent and its disruptive defense as threats in the Week 12 matchup.","url":"https://a.espncdn.com/media/motion/2022/1114/dm_221114_SEC_NCF_Presser_Ark_Pittman_221114/dm_221114_SEC_NCF_Presser_Ark_Pittman_221114.jpg","height":324}],"premium":false,"description":"Sam Pittman points to Arkansas' recent improvements and identifies specific No. 11 Ole Miss talent and its disruptive defense as threats in the Week 12 matchup.","links":{"web":{"short":{"href":"https://es.pn/3UYzxTc"},"href":"https://www.espn.com/video/clip?id=35027487"},"api":{"news":{"href":"https://api-app.espn.com/v1/video/clips/35027487"},"self":{"href":"https://api-app.espn.com/v1/video/clips/35027487"}}},"published":"2022-11-15T18:41:10Z","lastModified":"2022-11-15T18:41:09Z","categories":[{"sportId":0,"topicId":89,"description":"sec network","id":126329,"type":"topic","createDate":"2022-11-14T20:58:25Z"},{"uid":"s:20~l:23","sportId":23,"leagueId":23,"league":{"description":"College Football","links":{"web":{"leagues":{"href":"https://www.espn.com/college-football/"}},"mobile":{"leagues":{"href":"https://m.espn.com/ncf/"}},"api":{"leagues":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football"}}},"id":23},"description":"College Football","id":9571,"type":"league","createDate":"2022-11-14T20:58:25Z"},{"sportId":3170,"teamId":8,"description":"Arkansas Razorbacks","id":14491,"team":{"description":"Arkansas Razorbacks","links":{"web":{"teams":{"href":"https://www.espn.com/college-sports/team/_/name/:abbreviation/:location-:name"}},"mobile":{"teams":{}},"api":{"teams":{}}},"id":8},"type":"team","createDate":"2022-11-14T20:58:25Z"},{"uid":"s:20~l:23~t:8","sportId":23,"teamId":8,"description":"Arkansas Razorbacks","id":1097,"team":{"description":"Arkansas Razorbacks","links":{"web":{"teams":{"href":"https://www.espn.com/college-football/team/_/id/8/arkansas-razorbacks"}},"mobile":{"teams":{"href":"https://m.espn.com/ncf/clubhouse?teamId=8"}},"api":{"teams":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football/teams/8"}}},"id":8},"type":"team","createDate":"2022-11-14T20:58:25Z"},{"guid":"7863289179dda9abc720008c86f843de","type":"guid","createDate":"2022-11-14T20:58:25Z"},{"guid":"10e2d279fb500b76ba893dbe9d43fa2f","type":"guid","createDate":"2022-11-14T20:58:25Z"},{"guid":"0f8e3d42-fa27-3f60-9e8d-276e4892f50e","type":"guid","createDate":"2022-11-14T20:58:25Z"}],"type":"Media","headline":"Hogs' Pittman shares thrill of night game vs. Rebels"},{"images":[{"name":"Kelly praises No. 6 LSU for making winning 'a habit'","width":576,"alt":"","caption":"Brian Kelly says the Tigers have developed an undeniable winning attitude, but that non-conference foe UAB presents challenges.","url":"https://a.espncdn.com/media/motion/2022/1114/dm_221114_SEC_NCF_Presser_LSU_Kelly_221114/dm_221114_SEC_NCF_Presser_LSU_Kelly_221114.jpg","height":324}],"premium":false,"description":"Brian Kelly says the Tigers have developed an undeniable winning attitude, but that non-conference foe UAB presents challenges.","links":{"web":{"short":{"href":"https://es.pn/3UU6foN"},"href":"https://www.espn.com/video/clip?id=35027490"},"api":{"news":{"href":"https://api-app.espn.com/v1/video/clips/35027490"},"self":{"href":"https://api-app.espn.com/v1/video/clips/35027490"}}},"published":"2022-11-15T18:40:48Z","lastModified":"2022-11-15T18:40:47Z","categories":[{"uid":"s:20~l:23","sportId":23,"leagueId":23,"league":{"description":"College Football","links":{"web":{"leagues":{"href":"https://www.espn.com/college-football/"}},"mobile":{"leagues":{"href":"https://m.espn.com/ncf/"}},"api":{"leagues":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football"}}},"id":23},"description":"College Football","id":9571,"type":"league","createDate":"2022-11-14T21:03:52Z"},{"uid":"s:20~l:23~t:99","sportId":23,"teamId":99,"description":"LSU Tigers","id":1098,"team":{"description":"LSU Tigers","links":{"web":{"teams":{"href":"https://www.espn.com/college-football/team/_/id/99/lsu-tigers"}},"mobile":{"teams":{"href":"https://m.espn.com/ncf/clubhouse?teamId=99"}},"api":{"teams":{"href":"https://now.core.api.espn.com/v1/sports/football/college-football/teams/99"}}},"id":99},"type":"team","createDate":"2022-11-14T21:03:52Z"},{"sportId":0,"topicId":89,"description":"sec network","id":126329,"type":"topic","createDate":"2022-11-14T21:03:52Z"},{"sportId":3170,"teamId":99,"description":"LSU Tigers","id":14537,"team":{"description":"LSU Tigers","links":{"web":{"teams":{"href":"https://www.espn.com/college-sports/team/_/name/:abbreviation/:location-:name"}},"mobile":{"teams":{}},"api":{"teams":{}}},"id":99},"type":"team","createDate":"2022-11-14T21:03:52Z"},{"guid":"0f8e3d42-fa27-3f60-9e8d-276e4892f50e","type":"guid","createDate":"2022-11-14T21:03:52Z"},{"guid":"b9a22bd6744992bc0e95a6d8da673b3e","type":"guid","createDate":"2022-11-14T21:03:52Z"},{"guid":"7863289179dda9abc720008c86f843de","type":"guid","createDate":"2022-11-14T21:03:52Z"}],"type":"Media","headline":"Kelly praises No. 6 LSU for making winning 'a habit'"}]},"ticketsInfo":{"tickets":[{"type":"league","ticketLink":"https://www.vividseats.com/ncaaf/?wsUser=717","ticketName":"All COLLEGE-FOOTBALL Tickets"},{"type":"team","ticketLink":"https://www.vividseats.com/ncaaf/arkansas-razorbacks-tickets.html?wsUser=717","ticketName":"All Arkansas Razorbacks Tickets"},{"type":"event","ticketLink":"https://www.vividseats.com/arkansas-razorbacks-football-tickets-razorback-stadium-11-19-2022--sports-ncaa-football/production/3782842?wsUser=717","ticketName":"11/19 vs Ole Miss Rebels 946 tickets left"},{"type":"event","ticketLink":"https://www.vividseats.com/missouri-tigers-football-tickets-faurot-field-11-26-2022--sports-ncaa-football/production/3784075?wsUser=717","ticketName":"11/25 @ Missouri Tigers 1733 tickets left"}],"seatSituation":{"venueName":"Razorback Stadium","summary":"Tickets as low as $23","date":"2022-11-20T00:30:00Z","venueLink":"https://www.vividseats.com/razorback-stadium-tickets/venue/1392?wsUser=717","teamLink":"https://www.vividseats.com/ncaaf/arkansas-razorbacks-tickets.html?wsUser=717","homeAway":"home","dateShort":"11/19","genericLink":"https://www.vividseats.com?wsUser=717","dateDay":"Sat","currentTeamName":"Arkansas Razorbacks","opponentTeamName":"Ole Miss Rebels","eventLink":"https://www.vividseats.com/arkansas-razorbacks-football-tickets-razorback-stadium-11-19-2022--sports-ncaa-football/production/3782842?wsUser=717"}},"pickcenter":[{"overUnder":60.5,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"teamId":"145","favorite":true,"moneyLine":-130},"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"MISS -2.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"teamId":"8","favorite":false,"moneyLine":110},"spread":2.5},{"overUnder":60.5,"awayTeamOdds":{"spreadOdds":-111,"underdog":false,"teamId":"145","favorite":true,"moneyLine":-138,"winPercentage":89},"provider":{"name":"consensus","id":"1004","priority":0},"details":"MISS -2.5","links":[],"homeTeamOdds":{"spreadOdds":-109,"underdog":true,"teamId":"8","favorite":false,"moneyLine":115,"winPercentage":11},"spread":2.5},{"overUnder":61,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"teamId":"145","spreadRecord":{"wins":4,"summary":"4-5-1","losses":5,"pushes":1},"favorite":true,"moneyLine":-129,"averageScore":32.2},"provider":{"name":"teamrankings","id":"1002","priority":0},"details":"MISS -2.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"teamId":"8","spreadRecord":{"wins":5,"summary":"5-5-0","losses":5,"pushes":0},"favorite":false,"moneyLine":111,"averageScore":29.6},"spread":2.5}],"lastFiveGames":[{"team":{"uid":"s:20~l:23~t:8","displayName":"Arkansas Razorbacks","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/8.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/8/arkansas-razorbacks","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/8","text":"Schedule"}],"id":"8","abbreviation":"ARK"},"events":[{"homeShootoutScore":"0","week":6,"homeAggregateScore":"0","leagueAbbreviation":"NCAAF","gameDate":"2022-10-08T16:00Z","gameResult":"L","awayShootoutScore":"0","awayAggregateScore":"0","leagueName":"NCAA - Football","score":"40-17 ","homeTeamScore":"40","opponent":{"uid":"s:20~l:23~t:344","displayName":"Mississippi State Bulldogs","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/344.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/344/mississippi-state-bulldogs","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/344","text":"Schedule"}],"id":"344","abbreviation":"MSST","curatedRank":{"current":23}},"awayTeamScore":"17","links":[{"href":"https://www.espn.com/college-football/game/_/gameId/401403914","text":"Gamecast"}],"id":"401403914","homeTeamId":"344","atVs":"@","awayTeamId":"8","opponentLogo":"https://a.espncdn.com/i/teamlogos/ncaa/500/344.png"},{"homeShootoutScore":"0","week":7,"homeAggregateScore":"0","leagueAbbreviation":"NCAAF","gameDate":"2022-10-15T19:30Z","gameResult":"W","awayShootoutScore":"0","awayAggregateScore":"0","leagueName":"NCAA - Football","score":"52-35 ","homeTeamScore":"35","opponent":{"uid":"s:20~l:23~t:252","displayName":"BYU Cougars","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/252.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/252/byu-cougars","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/252","text":"Schedule"}],"id":"252","abbreviation":"BYU","curatedRank":{"current":99}},"awayTeamScore":"52","links":[{"href":"https://www.espn.com/college-football/game/_/gameId/401403916","text":"Gamecast"}],"id":"401403916","homeTeamId":"252","atVs":"@","awayTeamId":"8","opponentLogo":"https://a.espncdn.com/i/teamlogos/ncaa/500/252.png"},{"homeShootoutScore":"0","week":9,"homeAggregateScore":"0","leagueAbbreviation":"NCAAF","gameDate":"2022-10-29T16:00Z","gameResult":"W","awayShootoutScore":"0","awayAggregateScore":"0","leagueName":"NCAA - Football","score":"41-27 ","homeTeamScore":"27","opponent":{"uid":"s:20~l:23~t:2","displayName":"Auburn Tigers","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/2/auburn-tigers","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/2","text":"Schedule"}],"id":"2","abbreviation":"AUB","curatedRank":{"current":99}},"awayTeamScore":"41","links":[{"href":"https://www.espn.com/college-football/game/_/gameId/401403927","text":"Gamecast"}],"id":"401403927","homeTeamId":"2","atVs":"@","awayTeamId":"8","opponentLogo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2.png"},{"homeShootoutScore":"0","week":10,"homeAggregateScore":"0","leagueAbbreviation":"NCAAF","gameDate":"2022-11-05T20:00Z","gameResult":"L","awayShootoutScore":"0","awayAggregateScore":"0","leagueName":"NCAA - Football","score":"21-19 ","homeTeamScore":"19","opponent":{"uid":"s:20~l:23~t:2335","displayName":"Liberty Flames","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2335.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/2335/liberty-flames","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/2335","text":"Schedule"}],"id":"2335","abbreviation":"LIB","curatedRank":{"current":99}},"awayTeamScore":"21","links":[{"href":"https://www.espn.com/college-football/game/_/gameId/401403932","text":"Gamecast"}],"id":"401403932","homeTeamId":"8","atVs":"vs","awayTeamId":"2335","opponentLogo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2335.png"},{"homeShootoutScore":"0","week":11,"homeAggregateScore":"0","leagueAbbreviation":"NCAAF","gameDate":"2022-11-12T17:00Z","gameResult":"L","awayShootoutScore":"0","awayAggregateScore":"0","leagueName":"NCAA - Football","score":"13-10 ","homeTeamScore":"10","opponent":{"uid":"s:20~l:23~t:99","displayName":"LSU Tigers","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/99.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/99/lsu-tigers","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/99","text":"Schedule"}],"id":"99","abbreviation":"LSU","curatedRank":{"current":7}},"awayTeamScore":"13","links":[{"href":"https://www.espn.com/college-football/game/_/gameId/401403939","text":"Gamecast"}],"id":"401403939","homeTeamId":"8","atVs":"vs","awayTeamId":"99","opponentLogo":"https://a.espncdn.com/i/teamlogos/ncaa/500/99.png"}]},{"team":{"uid":"s:20~l:23~t:145","displayName":"Ole Miss Rebels","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/145.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/145/ole-miss-rebels","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/145","text":"Schedule"}],"id":"145","abbreviation":"MISS"},"events":[{"homeShootoutScore":"0","week":6,"homeAggregateScore":"0","leagueAbbreviation":"NCAAF","gameDate":"2022-10-08T20:00Z","gameResult":"W","awayShootoutScore":"0","awayAggregateScore":"0","leagueName":"NCAA - Football","score":"52-28 ","homeTeamScore":"28","opponent":{"uid":"s:20~l:23~t:238","displayName":"Vanderbilt Commodores","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/238.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/238/vanderbilt-commodores","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/238","text":"Schedule"}],"id":"238","abbreviation":"VAN","curatedRank":{"current":99}},"awayTeamScore":"52","links":[{"href":"https://www.espn.com/college-football/game/_/gameId/401403915","text":"Gamecast"}],"id":"401403915","homeTeamId":"238","atVs":"@","awayTeamId":"145","opponentLogo":"https://a.espncdn.com/i/teamlogos/ncaa/500/238.png"},{"homeShootoutScore":"0","week":7,"homeAggregateScore":"0","leagueAbbreviation":"NCAAF","gameDate":"2022-10-15T16:00Z","gameResult":"W","awayShootoutScore":"0","awayAggregateScore":"0","leagueName":"NCAA - Football","score":"48-34 ","homeTeamScore":"48","opponent":{"uid":"s:20~l:23~t:2","displayName":"Auburn Tigers","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/2/auburn-tigers","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/2","text":"Schedule"}],"id":"2","abbreviation":"AUB","curatedRank":{"current":99}},"awayTeamScore":"34","links":[{"href":"https://www.espn.com/college-football/game/_/gameId/401403920","text":"Gamecast"}],"id":"401403920","homeTeamId":"145","atVs":"vs","awayTeamId":"2","opponentLogo":"https://a.espncdn.com/i/teamlogos/ncaa/500/2.png"},{"homeShootoutScore":"0","week":8,"homeAggregateScore":"0","leagueAbbreviation":"NCAAF","gameDate":"2022-10-22T19:30Z","gameResult":"L","awayShootoutScore":"0","awayAggregateScore":"0","leagueName":"NCAA - Football","score":"45-20 ","homeTeamScore":"45","opponent":{"uid":"s:20~l:23~t:99","displayName":"LSU Tigers","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/99.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/99/lsu-tigers","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/99","text":"Schedule"}],"id":"99","abbreviation":"LSU","curatedRank":{"current":99}},"awayTeamScore":"20","links":[{"href":"https://www.espn.com/college-football/game/_/gameId/401403923","text":"Gamecast"}],"id":"401403923","homeTeamId":"99","atVs":"@","awayTeamId":"145","opponentLogo":"https://a.espncdn.com/i/teamlogos/ncaa/500/99.png"},{"homeShootoutScore":"0","week":9,"homeAggregateScore":"0","leagueAbbreviation":"NCAAF","gameDate":"2022-10-29T23:30Z","gameResult":"W","awayShootoutScore":"0","awayAggregateScore":"0","leagueName":"NCAA - Football","score":"31-28 ","homeTeamScore":"28","opponent":{"uid":"s:20~l:23~t:245","displayName":"Texas A&M Aggies","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/245.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/245/texas-am-aggies","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/245","text":"Schedule"}],"id":"245","abbreviation":"TA&M","curatedRank":{"current":99}},"awayTeamScore":"31","links":[{"href":"https://www.espn.com/college-football/game/_/gameId/401403931","text":"Gamecast"}],"id":"401403931","homeTeamId":"245","atVs":"@","awayTeamId":"145","opponentLogo":"https://a.espncdn.com/i/teamlogos/ncaa/500/245.png"},{"homeShootoutScore":"0","week":11,"homeAggregateScore":"0","leagueAbbreviation":"NCAAF","gameDate":"2022-11-12T20:30Z","gameResult":"L","awayShootoutScore":"0","awayAggregateScore":"0","leagueName":"NCAA - Football","score":"30-24 ","homeTeamScore":"24","opponent":{"uid":"s:20~l:23~t:333","displayName":"Alabama Crimson Tide","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/333.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/333/alabama-crimson-tide","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/333","text":"Schedule"}],"id":"333","abbreviation":"ALA","curatedRank":{"current":9}},"awayTeamScore":"30","links":[{"href":"https://www.espn.com/college-football/game/_/gameId/401403943","text":"Gamecast"}],"id":"401403943","homeTeamId":"145","atVs":"vs","awayTeamId":"333","opponentLogo":"https://a.espncdn.com/i/teamlogos/ncaa/500/333.png"}]}],"zipcodes":{},"winprobability":[],"gameInfo":{"venue":{"images":[{"width":2000,"alt":"","rel":["full","day"],"href":"https://a.espncdn.com/i/venues/college-football/day/3887.jpg","height":1125},{"width":2000,"alt":"","rel":["full","day","interior"],"href":"https://a.espncdn.com/i/venues/college-football/day/interior/3887.jpg","height":1125}],"address":{"zipCode":"72701","city":"Fayetteville","state":"AR"},"grass":false,"fullName":"Razorback Stadium","id":"3887","capacity":76212},"weather":{"precipitation":0,"conditionId":"33","highTemperature":51,"temperature":51,"link":{"isExternal":true,"shortText":"Weather","rel":["72701"],"language":"en-US","href":"https://www.accuweather.com/en/us/donald-w-reynolds-razorback-stadium-ar/72701/hourly-weather-forecast/53533_poi?day=11&hbhhour=18&lang=en-us","text":"Weather","isPremium":false},"lowTemperature":51,"gust":13}},"boxscore":{"teams":[{"team":{"shortDisplayName":"Rebels","uid":"s:20~l:23~t:145","alternateColor":"00205b","color":"001148","displayName":"Ole Miss Rebels","name":"Rebels","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/145.png","location":"Ole Miss","id":"145","abbreviation":"MISS","slug":"ole-miss-rebels"},"statistics":[{"displayValue":"36.1","name":"totalPointsPerGame","label":"Points Per Game"},{"displayValue":"485.7","name":"yardsPerGame","label":"Total Yards"},{"displayValue":"225.9","name":"passingYardsPerGame","label":"Yards Passing"},{"displayValue":"259.8","name":"rushingYardsPerGame","label":"Yards Rushing"},{"displayValue":"22.4","name":"totalPointsPerGameAllowed","label":"Points Allowed Per Game"},{"displayValue":"371.9","name":"yardsPerGameAllowed","label":"Yards Allowed"},{"displayValue":"220.9","name":"passingYardsPerGameAllowed","label":"Pass Yards Allowed"},{"displayValue":"151.0","name":"rushingYardsPerGameAllowed","label":"Rush Yards Allowed"}]},{"team":{"shortDisplayName":"Razorbacks","uid":"s:20~l:23~t:8","alternateColor":"000000","color":"9c1831","displayName":"Arkansas Razorbacks","name":"Razorbacks","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/8.png","location":"Arkansas","id":"8","abbreviation":"ARK","slug":"arkansas-razorbacks"},"statistics":[{"displayValue":"29.9","name":"totalPointsPerGame","label":"Points Per Game"},{"displayValue":"461.7","name":"yardsPerGame","label":"Total Yards"},{"displayValue":"238.4","name":"passingYardsPerGame","label":"Yards Passing"},{"displayValue":"223.3","name":"rushingYardsPerGame","label":"Yards Rushing"},{"displayValue":"28.9","name":"totalPointsPerGameAllowed","label":"Points Allowed Per Game"},{"displayValue":"426.8","name":"yardsPerGameAllowed","label":"Yards Allowed"},{"displayValue":"280.5","name":"passingYardsPerGameAllowed","label":"Pass Yards Allowed"},{"displayValue":"146.3","name":"rushingYardsPerGameAllowed","label":"Rush Yards Allowed"}]}]},"broadcasts":[],"leaders":[{"leaders":[{"displayName":"Passing Yards","name":"passingYards","leaders":[{"displayValue":"148-222, 1981 YDS, 17 TD, 3 INT","athlete":{"uid":"s:20~l:23~a:4567149","lastName":"Jefferson","displayName":"KJ Jefferson","headshot":{"alt":"KJ Jefferson","href":"https://a.espncdn.com/i/headshots/college-football/players/full/4567149.png"},"jersey":"1","guid":"7a906e88fdac6d8e1eca6be32ece2d8a","fullName":"KJ Jefferson","links":[{"rel":["playercard","desktop","athlete"],"href":"https://www.espn.com/college-football/player/_/id/4567149/kj-jefferson","text":"Player Card"}],"id":"4567149","position":{"abbreviation":"QB"},"shortName":"K. Jefferson"}}]},{"displayName":"Rushing Yards","name":"rushingYards","leaders":[{"displayValue":"185 CAR, 1147 YDS, 7 TD","athlete":{"uid":"s:20~l:23~a:4601080","lastName":"Sanders","displayName":"Raheim Sanders","headshot":{"alt":"Raheim Sanders","href":"https://a.espncdn.com/i/headshots/college-football/players/full/4601080.png"},"jersey":"5","guid":"7065be65-729f-30dc-891c-97c90744eaa9","fullName":"Raheim Sanders","links":[{"rel":["playercard","desktop","athlete"],"href":"https://www.espn.com/college-football/player/_/id/4601080/raheim-sanders","text":"Player Card"}],"id":"4601080","position":{"abbreviation":"RB"},"shortName":"R. Sanders"}}]},{"displayName":"Receiving Yards","name":"receivingYards","leaders":[{"displayValue":"37 REC, 663 YDS, 4 TD","athlete":{"uid":"s:20~l:23~a:4259550","lastName":"Landers","displayName":"Matt Landers","headshot":{"alt":"Matt Landers","href":"https://a.espncdn.com/i/headshots/college-football/players/full/4259550.png"},"jersey":"3","guid":"31d8a8622e9abde2e905ef64d01fbb12","fullName":"Matt Landers","links":[{"rel":["playercard","desktop","athlete"],"href":"https://www.espn.com/college-football/player/_/id/4259550/matt-landers","text":"Player Card"}],"id":"4259550","position":{"abbreviation":"WR"},"shortName":"M. Landers"}}]}],"team":{"uid":"s:20~l:23~t:8","displayName":"Arkansas Razorbacks","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/8.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/8/arkansas-razorbacks","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/8","text":"Schedule"}],"id":"8","abbreviation":"ARK"}},{"leaders":[{"displayName":"Passing Yards","name":"passingYards","leaders":[{"displayValue":"150-247, 2123 YDS, 15 TD, 7 INT","athlete":{"uid":"s:20~l:23~a:4689114","lastName":"Dart","displayName":"Jaxson Dart","headshot":{"alt":"Jaxson Dart","href":"https://a.espncdn.com/i/headshots/college-football/players/full/4689114.png"},"jersey":"2","guid":"13e97d3e-2171-371b-9a7a-2c44670b5a62","fullName":"Jaxson Dart","links":[{"rel":["playercard","desktop","athlete"],"href":"https://www.espn.com/college-football/player/_/id/4689114/jaxson-dart","text":"Player Card"}],"id":"4689114","position":{"abbreviation":"QB"},"shortName":"J. Dart"}}]},{"displayName":"Rushing Yards","name":"rushingYards","leaders":[{"displayValue":"205 CAR, 1171 YDS, 15 TD","athlete":{"uid":"s:20~l:23~a:4685702","lastName":"Judkins","displayName":"Quinshon Judkins","headshot":{"alt":"Quinshon Judkins","href":"https://a.espncdn.com/i/headshots/college-football/players/full/4685702.png"},"jersey":"4","guid":"d5a1025a-0474-3cc4-90d2-99ebf41df879","fullName":"Quinshon Judkins","links":[{"rel":["playercard","desktop","athlete"],"href":"https://www.espn.com/college-football/player/_/id/4685702/quinshon-judkins","text":"Player Card"}],"id":"4685702","position":{"abbreviation":"RB"},"shortName":"Q. Judkins"}}]},{"displayName":"Receiving Yards","name":"receivingYards","leaders":[{"displayValue":"37 REC, 723 YDS, 5 TD","athlete":{"uid":"s:20~l:23~a:4426485","lastName":"Mingo","displayName":"Jonathan Mingo","headshot":{"alt":"Jonathan Mingo","href":"https://a.espncdn.com/i/headshots/college-football/players/full/4426485.png"},"jersey":"1","guid":"25762dc3737c851c92fd84e8cf31054a","fullName":"Jonathan Mingo","links":[{"rel":["playercard","desktop","athlete"],"href":"https://www.espn.com/college-football/player/_/id/4426485/jonathan-mingo","text":"Player Card"}],"id":"4426485","position":{"abbreviation":"WR"},"shortName":"J. Mingo"}}]}],"team":{"uid":"s:20~l:23~t:145","displayName":"Ole Miss Rebels","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/145.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/145/ole-miss-rebels","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/145","text":"Schedule"}],"id":"145","abbreviation":"MISS"}}],"standings":{"fullViewLink":{"text":"Full Standings","href":"https://www.espn.com/college-football/standings"},"groups":[{"header":"2022 Southeastern Conference Standings","href":"https://www.espn.com/college-football/standings/_/group/8/view/fbs-i-a","divisions":[{"header":"SEC - East","standings":{"entries":[{"uid":"s:20~l:23~t:61","stats":[{"shortDisplayName":"OVER","summary":"10-0","displayValue":"10-0","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"7-0","displayValue":"7-0","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/61/georgia-bulldogs","logo":[{"lastUpdated":"2018-06-05T12:08Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/61.png","height":500}],"team":"Georgia","id":"61"},{"uid":"s:20~l:23~t:2633","stats":[{"shortDisplayName":"OVER","summary":"9-1","displayValue":"9-1","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"5-1","displayValue":"5-1","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/2633/tennessee-volunteers","logo":[{"lastUpdated":"2022-08-31T05:24Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/2633.png","height":500}],"team":"Tennessee","id":"2633"},{"uid":"s:20~l:23~t:96","stats":[{"shortDisplayName":"OVER","summary":"6-4","displayValue":"6-4","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"3-4","displayValue":"3-4","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/96/kentucky-wildcats","logo":[{"lastUpdated":"2018-06-05T12:08Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/96.png","height":500}],"team":"Kentucky","id":"96"},{"uid":"s:20~l:23~t:57","stats":[{"shortDisplayName":"OVER","summary":"6-4","displayValue":"6-4","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"3-4","displayValue":"3-4","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/57/florida-gators","logo":[{"lastUpdated":"2022-08-30T21:58Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/57.png","height":500}],"team":"Florida","id":"57"},{"uid":"s:20~l:23~t:2579","stats":[{"shortDisplayName":"OVER","summary":"6-4","displayValue":"6-4","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"3-4","displayValue":"3-4","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/2579/south-carolina-gamecocks","logo":[{"lastUpdated":"2022-08-31T05:08Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/2579.png","height":500}],"team":"South Carolina","id":"2579"},{"uid":"s:20~l:23~t:142","stats":[{"shortDisplayName":"OVER","summary":"4-6","displayValue":"4-6","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"2-5","displayValue":"2-5","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/142/missouri-tigers","logo":[{"lastUpdated":"2022-08-31T04:52Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/142.png","height":500}],"team":"Missouri","id":"142"},{"uid":"s:20~l:23~t:238","stats":[{"shortDisplayName":"OVER","summary":"4-6","displayValue":"4-6","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"1-5","displayValue":"1-5","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/238/vanderbilt-commodores","logo":[{"lastUpdated":"2022-04-28T14:31Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/238.png","height":500}],"team":"Vanderbilt","id":"238"}]}},{"header":"SEC - West","standings":{"entries":[{"uid":"s:20~l:23~t:99","stats":[{"shortDisplayName":"OVER","summary":"8-2","displayValue":"8-2","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"6-1","displayValue":"6-1","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/99/lsu-tigers","logo":[{"lastUpdated":"2021-06-25T17:25Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/99.png","height":500}],"team":"LSU","id":"99"},{"uid":"s:20~l:23~t:333","stats":[{"shortDisplayName":"OVER","summary":"8-2","displayValue":"8-2","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"5-2","displayValue":"5-2","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/333/alabama-crimson-tide","logo":[{"lastUpdated":"2022-08-30T21:52Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/333.png","height":500}],"team":"Alabama","id":"333"},{"uid":"s:20~l:23~t:145","stats":[{"shortDisplayName":"OVER","summary":"8-2","displayValue":"8-2","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"4-2","displayValue":"4-2","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/145/ole-miss-rebels","logo":[{"lastUpdated":"2018-06-05T12:08Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/145.png","height":500}],"team":"Ole Miss","id":"145"},{"uid":"s:20~l:23~t:344","stats":[{"shortDisplayName":"OVER","summary":"6-4","displayValue":"6-4","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"3-4","displayValue":"3-4","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/344/mississippi-state-bulldogs","logo":[{"lastUpdated":"2022-08-31T05:02Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/344.png","height":500}],"team":"Mississippi State","id":"344"},{"uid":"s:20~l:23~t:8","stats":[{"shortDisplayName":"OVER","summary":"5-5","displayValue":"5-5","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"2-4","displayValue":"2-4","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/8/arkansas-razorbacks","logo":[{"lastUpdated":"2018-06-05T12:08Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/8.png","height":500}],"team":"Arkansas","id":"8"},{"uid":"s:20~l:23~t:2","stats":[{"shortDisplayName":"OVER","summary":"4-6","displayValue":"4-6","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"2-5","displayValue":"2-5","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/2/auburn-tigers","logo":[{"lastUpdated":"2020-05-28T16:24Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/2.png","height":500}],"team":"Auburn","id":"2"},{"uid":"s:20~l:23~t:245","stats":[{"shortDisplayName":"OVER","summary":"3-7","displayValue":"3-7","displayName":"Overall","name":"overall","description":"Overall Record","id":"0","abbreviation":"overall","type":"total"},{"shortDisplayName":"CONF","summary":"1-6","displayValue":"1-6","displayName":"vs. Conference","name":"vsConf","description":"Conference Record","id":"9","abbreviation":"CONF","type":"vsconf"}],"link":"https://www.espn.com/college-football/team/_/id/245/texas-am-aggies","logo":[{"lastUpdated":"2021-06-02T21:28Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/245.png","height":500}],"team":"Texas A&M","id":"245"}]}}]}]},"againstTheSpread":[{"records":[],"team":{"uid":"s:20~l:23~t:145","displayName":"Ole Miss Rebels","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/145.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/145/ole-miss-rebels","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/145","text":"Schedule"}],"id":"145","abbreviation":"MISS"}},{"records":[],"team":{"uid":"s:20~l:23~t:8","displayName":"Arkansas Razorbacks","logo":"https://a.espncdn.com/i/teamlogos/ncaa/500/8.png","links":[{"href":"https://www.espn.com/college-football/team/_/id/8/arkansas-razorbacks","text":"Clubhouse"},{"href":"https://www.espn.com/college-football/team/schedule/_/id/8","text":"Schedule"}],"id":"8","abbreviation":"ARK"}}],"header":{"uid":"s:20~l:23~e:401403947","week":12,"timeValid":true,"league":{"uid":"s:20~l:23","midsizeName":"NCAA Football","name":"NCAA - Football","links":[{"rel":["index","desktop","league"],"href":"https://www.espn.com/college-football/","text":"Index"},{"rel":["index","sportscenter","app","league"],"href":"sportscenter:https://x-callback-url/showClubhouse?uid=s:20~l:23","text":"Index"},{"rel":["schedule","desktop","league"],"href":"https://www.espn.com/college-football/schedule","text":"Schedule"},{"rel":["schedule","sportscenter","app","league"],"href":"sportscenter:https://x-callback-url/showClubhouse?uid=s:20~l:23§ion=scores","text":"Schedule"},{"rel":["standings","desktop","league"],"href":"https://www.espn.com/college-football/standings","text":"Standings"},{"rel":["standings","sportscenter","app","league"],"href":"sportscenter:https://x-callback-url/showClubhouse?uid=s:20~l:23§ion=standings","text":"Standings"},{"rel":["rankings","desktop","league"],"href":"https://www.espn.com/college-football/rankings","text":"Rankings"},{"rel":["scores","desktop","league"],"href":"https://www.espn.com/college-football/scoreboard","text":"Scores"},{"rel":["scores","sportscenter","app","league"],"href":"sportscenter:https://x-callback-url/showClubhouse?uid=s:20~l:23§ion=scores","text":"Scores"},{"rel":["stats","desktop","league"],"href":"https://www.espn.com/college-football/stats","text":"Stats"},{"rel":["teams","desktop","league"],"href":"https://www.espn.com/college-football/teams","text":"Teams"},{"rel":["athletes","desktop","league"],"href":"https://www.espn.com/college-football/players","text":"Players"},{"rel":["injuries","desktop","league"],"href":"https://www.espn.com/college-football/injuries","text":"Injuries"}],"id":"23","abbreviation":"NCAAF","slug":"college-football","isTournament":false},"competitions":[{"date":"2022-11-20T00:30Z","commentaryAvailable":false,"conferenceCompetition":true,"liveAvailable":false,"broadcasts":[{"market":{"id":"1","type":"National"},"media":{"shortName":"SECN"},"type":{"id":"1","shortName":"TV"},"lang":"en","region":"us"}],"groups":{"midsizeName":"SEC","name":"Southeastern Conference","id":"8","abbreviation":"sec","shortName":"SEC"},"playByPlaySource":"none","uid":"s:20~l:23~e:401403947~c:401403947","competitors":[{"uid":"s:20~l:23~t:8","homeAway":"home","record":[{"summary":"5-5","displayValue":"5-5","type":"total"},{"summary":"2-4","displayValue":"2-4","type":"vsconf"}],"possession":false,"id":"8","team":{"uid":"s:20~l:23~t:8","alternateColor":"000000","color":"9c1831","displayName":"Arkansas Razorbacks","name":"Razorbacks","nickname":"Arkansas","location":"Arkansas","links":[{"rel":["clubhouse","desktop","team"],"href":"https://www.espn.com/college-football/team/_/id/8/arkansas-razorbacks","text":"Clubhouse"}],"id":"8","abbreviation":"ARK","logos":[{"lastUpdated":"2018-06-05T12:08Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/8.png","height":500},{"lastUpdated":"2018-06-05T12:08Z","width":500,"alt":"","rel":["full","dark"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/8.png","height":500}]},"order":0},{"uid":"s:20~l:23~t:145","homeAway":"away","record":[{"summary":"8-2","displayValue":"8-2","type":"total"},{"summary":"4-2","displayValue":"4-2","type":"vsconf"}],"possession":false,"rank":11,"id":"145","team":{"uid":"s:20~l:23~t:145","alternateColor":"00205b","color":"001148","displayName":"Ole Miss Rebels","name":"Rebels","nickname":"Ole Miss","location":"Ole Miss","links":[{"rel":["clubhouse","desktop","team"],"href":"https://www.espn.com/college-football/team/_/id/145/ole-miss-rebels","text":"Clubhouse"}],"id":"145","abbreviation":"MISS","logos":[{"lastUpdated":"2018-06-05T12:08Z","width":500,"alt":"","rel":["full","default"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500/145.png","height":500},{"lastUpdated":"2018-06-05T12:08Z","width":500,"alt":"","rel":["full","dark"],"href":"https://a.espncdn.com/i/teamlogos/ncaa/500-dark/145.png","height":500}]},"order":1}],"onWatchESPN":true,"boxscoreAvailable":false,"id":"401403947","neutralSite":false,"recent":false,"boxscoreSource":"none","status":{"type":{"name":"STATUS_SCHEDULED","description":"Scheduled","id":"1","state":"pre","completed":false,"detail":"Sat, November 19th at 7:30 PM EST","shortDetail":"11/19 - 7:30 PM EST"}}}],"season":{"year":2022,"type":2},"links":[{"isExternal":false,"shortText":"Summary","rel":["summary","desktop","event"],"href":"https://www.espn.com/college-football/game/_/gameId/401403947","text":"Gamecast","isPremium":false},{"isExternal":true,"shortText":"Tickets","rel":["tickets","desktop"],"href":"https://www.vividseats.com/arkansas-razorbacks-football-tickets-razorback-stadium-11-19-2022--sports-ncaa-football/production/3782842?wsUser=717","text":"Tickets","isPremium":false}],"id":"401403947"},"predictor":{"awayTeam":{"gameProjection":"67.9","id":"145","teamChanceLoss":"32.1"},"header":"Matchup Predictor","homeTeam":{"gameProjection":"32.1","id":"8","teamChanceLoss":"67.9"}}};
if (window.espnSB) {
$(document).one("page.render", function() { window.espnSB.setHiddenGameId("college-football", "401403947"); });
}
if(!DTCpackages || (DTCpackages && DTCpackages.length === 0)) {
window.DTCpackages = [{"allowsRestore":true,"upgrade":{"requiredEntitlement":"ESPN_PLUS","requiredSource":"D2C","ctaButtonSubheader":"GET UFC 281 & ESPN+ ANNUAL PLAN FOR {price}","subtitle":"EXCLUSIVELY FOR MONTHLY SUBSCRIBERS","requiredCategoryCodes":["espn_switch_from"],"ctaButtonTitle":"UPGRADE AND BUY","ctaButtonHeader":"SAVE 30% WHEN YOU UPGRADE & BUNDLE","billingDisclaimer":"You will be charged {price} (plus tax, where applicable) upon purchase. Your ESPN+ annual plan will renew for $99.99 (plus tax, where applicable), one year from the date of the end of your monthly subscription. Cancel any time before then to avoid being charged. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and The Walt Disney Family of Companies.","voucherCode":"ESPN_PPV281BNDL_VOCHR","disclaimer":"Your ESPN+ annual subscription will auto-renew at $99.99 per year (plus tax, where applicable). Cancel anytime. Subject to terms at espn.com/plus-terms.","billing":{"showCheckBox":true,"billingDisclosureError":"Please check the above box to agree to the annual renewal","ctaButtonTitle":"Agree & Subscribe","billingDisclosure":"I agree to the automatic renewal provision."},"campaignCode":"ESPN_PURCHASE_CMPGN"},"entitlement":"ESPN_PLUS_UFC_PPV_281","subscription":{"subscribeText":"Purchase","subscribedText":"Purchased","name":"UFC 281","backgroundColors":[""],"subscriptionExpiredText":"Expired","description":"11/12/2022 - Adesanya vs. Pereira","deeplinkAction":"sportscenter:https://x-callback-url/showPaywall"},"tuneIn":{"buttonText":"Subscribe Now","upsellTextKey":"<p>More <span>Sports.<\/span> More <span>Leagues.<\/span><\/p><p>More <span>Teams.<\/span> More <span>Games.<\/span><\/p>"},"concurrencyLimit":2,"billing":{"showCheckBox":false,"billingDisclosureError":"Please check the above box to agree to the annual renewal","ctaButtonTitle":"Buy {price}","billingDisclosure":"I agree to the automatic renewal provision."},"isPPV":true,"paywall":{"ctaButtonSubheader":"Buy UFC 281 PPV for {price}","ctaButtonTitle":"BUY UFC 281","backgroundColors":[""],"informativeLoginText":"Already an ESPN+ subscriber? Login below to watch your PPV or purchase for $74.99.","title":"UFC 281 - Saturday, November 12 - Adesanya vs. Pereira"},"countryCodes":["US"],"isIap":true,"accountsHold":[{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"direct","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to es.pn/billing."},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"hulu","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to secure.hulu.com/account."},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"disneyplus","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to disneyplus.com/account."},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"google","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to https://play.google.com/store/paymentmethods"},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"apple","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to https://apps.apple.com/account/billing."},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"generic","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to the platform where you purchased ESPN+."},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume your ESPN+ Subscription","type":"xfinity","enabled":true,"subHeader":"This PPV is available exclusively for ESPN+ subscribers for only $74.99. Your ESPN+ subscription is on hold. Please update your account by going to the platform where you purchased ESPN+."}],"name":"UFC 281","postPurchaseScreen":{"promo":{"linkUrl":"https://go.onelink.me/Ecx6/52c116c4","linkText":"BUY NOW","message":"app.iap.espnplus.postpurchase.promo.message","enabled":false,"logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/welcome/promo/promo-full.png"},"buttonText":"Start Streaming Now","message":"Score! You're all set.","enabled":false,"logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/[email protected]","backgroundImageUrl":"https://secure.espncdn.com/paywall/ios/[email protected]"},"id":57,"embeddedPaywall":{"ctaButtonTitle":"Purchase","title":"app.iap.Paywall_Sub_UFC_PPV_281_ios"},"shortName":"UFC","billingDisclaimer":"You will be charged {price} (plus tax, where applicable) upon purchase. Subject to terms at espn.com/plus-terms.","showPregame":true,"bundle":{"requiredEntitlement":"ESPN_PLUS","paywalls":[{"legalText1":"Available in US Only","disclaimerText2":"By clicking \"Agree & Subscribe\" below, you also agree to the ESPN+ Subscriber Agreement, and acknowledge that you have read our Privacy Policy. Not for commercial use.","disclaimerText1":"Savings compared to price of an Annual Plan and the standalone PPV price. By clicking \"Agree & Subscribe\", you are enrolling in automatic payments of $99.99/year (plus tax, where applicable) that will continue until you cancel. Cancel anytime, effective at the end of your billing period. No refunds or credits for partial months or years.","buttons":[{"buttonImage":" ","headerText":"STEP 1 of 2","buttonHighlightedImage":" ","title":"Agree & Subscribe","subheaderText":"Sign up for an ESPN+ Annual Plan for $99.99","textColor":"#ffffff","disclaimer":"You will be charged yearly until you cancel. Cancel anytime. Subject to ESPN+ Subscriber Agreement below."}],"legalText4":"- No refunds for the current subscription period are granted. Cancellations of the current subscription take effect at the conclusion of the current subscription period.Terms of Use - [https://disneytermsofuse.com](https://disneytermsofuse.com)Privacy Policy - [https://privacy.thewaltdisneycompany.com/en/](https://privacy.thewaltdisneycompany.com/en/)ESPN+ Subscriber Agreement - [https://es.pn/plus-terms](https://es.pn/plus-terms)Blackout Policy - [https://es.pn/plus-blackouts](https://es.pn/plus-blackouts)Do Not Sell My Info - (https://privacy.thewaltdisneycompany.com/en/dnsmi)","footer":{"subtitle":"Buy UFC 281 PPV at discounted price of <font color=\"#FFAE00\">$24.99<\/font><br/>(originally $74.99)","title":"STEP 2 of 2","disclaimer":"Must purchase UFC 281 within 48 hours of purchase of ESPN+ annual plan on this device to qualify for discounted PPV price."},"legalText3":"- Your subscription may be managed, and auto-renewal may be turned off, by going to your iTunes account settings after purchase. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+ and The Walt Disney Family of Companies.","legalText2":"- Payment will be charged to your iTunes Account at confirmation of purchase, unless you are offered and are eligible for a free trial. If you receive a free trial, you will be charged when your free trial period ends. Your account will be charged for renewal within 24 hours prior to the end of the current period. If you cancel prior to such 24 hour period, you will not be charged for the following applicable subscription period.","ctaButtonTitle":"SUBSCRIBE FOR $99.99/YEAR","subscriberAgreementTitle":"https://es.pn/plus-terms","title":"EXCLUSIVELY ON ESPN+:","heroImageUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS_UFC_PPV_281.background.58x13.jpg","logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS_EXCLUSIVE.logo.png","termsOfUse":"https://es.pn/plus-terms","subtitle":"Over 30% discount","backgroundColors":["#2a2a2a","#2a2a2a"],"notPurchaseableText":"The event you are trying to watch is not available for purchase on this device. Please visit the ESPN website to learn more.","secondaryTitle":"UFC 281 & ESPN+ Annual Plan for $124.98","ctaButtonStyle":"#F9B300","informativeLoginText":"BUNDLE_PAYWALL_INFORMATIVELOGINTEXT_PLACEHOLDER","disclaimer":"BUNDLE_PAYWALL_DISCLAIMERKEY_PLACEHOLDER","order":1,"backgroundImageUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS_UFC_PPV_281.background.jpg","ctaButtonTextStyle":"#FFFFFF"},{"legalText1":"Must purchase UFC 281 within 48 hours of purchase of ESPN+ annual plan on this device to qualify for discounted PPV price.","buttons":[{"buttonImage":" ","headerText":"STEP 2 of 2","buttonHighlightedImage":" ","title":"BUY UFC 281 NOW","textColor":"#ffffff","disclaimer":"You will be charged $24.99 for the event (plus tax, where applicable). Subject to terms at espn.com/plus-terms. Not for commercial use."}],"ctaButtonTitle":"app.bundlepaywall.paywall2.buttons.title","subscriberAgreementTitle":"BUNDLE_PAYWALL_SUBSCRIBERAGREEMENTTITLE_PLACEHOLDER","heroImageUrl":" ","logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS_EXCLUSIVE.logo.png","subtitle":"You now have an ESPN+ Annual Plan","backgroundColors":["#2a2a2a","#2a2a2a"],"notPurchaseableText":"BUNDLE_PAYWALL_NOTPURCHASEABLETEXT_PLACEHOLDER","header":{"subtitle":"You now have an ESPN+ Annual Plan","title":"STEP 1 of 2 COMPLETE"},"ctaButtonStyle":"#F9B300","informativeLoginText":"BUNDLE_PAYWALL_INFORMATIVELOGINTEXT_PLACEHOLDER","disclaimer":"BUNDLE_PAYWALL_DISCLAIMERKEY_PLACEHOLDER","order":2,"backgroundImageUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS_UFC_PPV_281.background.jpg","ctaButtonTextStyle":"#FFFFFF"}],"subtitle":"Exclusive: UFC 281 & ESPN+ Annual Plan only {price}. Original Value $174.98","postPurchaseScreen":{"promo":{"linkUrl":"https://go.onelink.me/Ecx6/52c116c4","linkText":"BUY NOW","message":"app.iap.espnplus.postpurchase.promo.message","enabled":false,"logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/welcome/promo/promo-full.png"},"buttonText":"Start Streaming Now","message":"Score! You're all set.","enabled":false,"logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/[email protected]","backgroundImageUrl":"https://secure.espncdn.com/paywall/ios/[email protected]"},"gracePeriodSeconds":172800,"billingDisclaimer":"You will be charged {price} (plus tax, where applicable) upon purchase. Your ESPN+ annual plan will renew for $69.99 (plus tax, where applicable) one year from the date of purchase. Cancel any time before then to avoid being charged. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and The Walt Disney Family of Companies.","enabled":true,"voucherCode":"ESPN_PPV281BNDL_VOCHR","disclaimer":"For new subscribers only. Your ESPN+ annual plan will auto-renew at $99.99 per year (plus tax, where applicable). Cancel anytime. Subject to terms at espn.com/plus-terms.","billing":{"showCheckBox":true,"billingDisclosureError":"Please check the above box to agree to the annual renewal","ctaButtonTitle":"Agree & Subscribe","billingDisclosure":"I agree to the automatic renewal provision."},"campaignCode":"ESPN_PURCHASE_CMPGN"},"voucherCode":"ESPN_PPV281BNDL_VOCHR","campaignCode":"ESPN_PURCHASE_CMPGN"},{"priceIncrease":[{},{}],"subscriptions":[{},{},{}],"entitlement":"ESPN_PLUS","subscription":{"bundled":{"manageExpiredText":"Your expired subscription can be managed on the website where it was purchased.","manageActiveText":"Your active subscription can be managed on the website where it was purchased.","name":"Disney+, Hulu, and ESPN+","description":"The Disney Bundle","logoUrl":"https://static.web.plus.espn.com/espn/data/mobile/subscription-espn-plus{scale}.png"},"subscribeText":"Subscribe","subscribedText":"Subscribed","name":"ESPN+","backgroundColors":[""],"subscriptionExpiredText":"Expired","description":"Watch More Sports. Anytime. Anywhere.","heroImageUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/[email protected]"},"tuneIn":{"buttonText":"Subscribe Now","upsellHref":"https://secure.web.plus.espn.com/billing/purchase/ESPN_PURCHASE_CMPGN/ESPN_PURCHASE_VOCHR/MESPN","upsellTextKey":"<p>More <span>Sports.<\/span> More <span>Leagues.<\/span><\/p><p>More <span>Teams.<\/span> More <span>Games.<\/span><\/p>","overlayImgUrl":"/redesign/assets/img/logos/espnplus/ESPN+White.svg","backgroundImgUrl":"/redesign/assets/img/dtc/espn-plus.png"},"concurrencyLimit":5,"trial":{"paywall":{"ctaButtonTitle":"Start 7-Day Free Trial","disclaimer":"7-Day free trial for new subscribers, then $6.99. You will be charged monthly until you cancel. Cancel anytime. Subject to terms. Details at espn.com/plus-terms."},"length":"7","categoryCode":"ESPN_submgmt_products","billingDisclaimer":"Your {trialLength}-day free trial will start on {date}. You will be billed {price} a month (plus tax where applicable) starting {trialEndDayDate}. Cancel anytime before then to avoid being charged. Subject to terms. Details at espn.com/plus-terms. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and the Walt Disney Family of Companies.","voucherCode":"ESPN_FT_7D_VOCHR","campaignCode":"ESPN_FT_CMPGN"},"isPPV":false,"trialActive":false,"paywall":{"legalText1":"* Compared to monthly.","termsOfUseText":"Terms of Use","subscriberAgreementText":"The event you are trying to watch is not available for purchase on this device. Please visit the ESPN website to learn more.","ctaButtonTitle":"Subscribe Now","backgroundColors":[""],"backgroundVideoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS.background.mp4","notPurchaseableText":"The event you are trying to watch is not available for purchase on this device. Please visit the ESPN website to learn more.","toggle":{"enabled":true,"sections":[{"disclaimerText2":"By clicking \"Agree & Subscribe\" below, you also agree to the ESPN+ Subscriber Agreement, and acknowledge that you have read our Privacy Policy. Go to https://es.pn/plus-terms for Terms and Conditions. Not for commercial use.","isDefault":true,"disclaimerText1":"By clicking \"Agree & Subscribe\", you are enrolling in automatic payments of $99.99/year (plus tax, where applicable) that will continue until you cancel. Cancel anytime, effective at the end of your billing period. No refunds or credits for partial months or years.","notes":[{"image":"https://a.espncdn.com/paywall/ios/ios-yellow-checkmark@{scale}.png","subtitle":"/ per year","title":"{price}"},{"image":"https://a.espncdn.com/paywall/ios/ios-yellow-checkmark@{scale}.png","title":"$9.99"}],"buttons":[{"trialActive":false,"analyticsName":"1999199910204019951899000_espn","sku":"espn_web_yearly","title":"Subscribe Now","billingDisclaimer":"You will be billed {price} a year (plus tax where applicable) starting {date}. Subject to terms. Details at espn.com/plus-terms. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and the Walt Disney Family of Companies.","textColor":"#ffffff","disclaimer":"$99.99 a year until you cancel. Cancel Anytime. Subject to terms. Details at espn.com/plus-terms. *Compared to monthly.","trial":{"paywall":{"disclaimer":"Then {price} a year until you cancel (increasing to $99.99/year on 8/23/22). Cancel Anytime. Subject to terms. Details at espn.com/plus-terms. *Compared to monthly."},"length":"7","categoryCode":"ESPN_submgmt_products","billingDisclaimer":"Your {trialLength}-day free trial will start on {date}. You will be billed {price} a year (plus tax where applicable) starting {trialEndDayDate}. Cancel anytime before then to avoid being charged. Subject to terms. Details at espn.com/plus-terms. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and the Walt Disney Family of Companies.","voucherCode":"ESPN_FT_7D_VOCHR","campaignCode":"ESPN_FT_CMPGN"},"billing":{"showCheckBox":true,"billingDisclosureError":"Please check the above box to agree to the annual renewal","ctaButtonTitle":"Agree & Subscribe","billingDisclosure":"I agree to the automatic renewal provision."}}],"analyticsName":"Annual","text":"ANNUAL PLAN","flagText":"SAVE OVER 15%*","key":"annually"},{"disclaimerText2":"By clicking \"Agree & Subscribe\" below, you also agree to the ESPN+ Subscriber Agreement, and acknowledge that you have read our Privacy Policy. Go to https://es.pn/plus-terms for Terms and Conditions. Not for commercial use.","isDefault":false,"disclaimerText1":"By clicking \"Agree & Subscribe\", you are enrolling in automatic payments of $9.99/month (plus tax, where applicable) that will continue until you cancel. Cancel anytime, effective at the end of your billing period. No refunds or credits for partial months or years.","notes":[{"image":"https://secure.espncdn.com/paywall/ios/ios-yellow-checkmark@{scale}.png","subtitle":"/ per month","title":"{price}"},{"image":"https://a.espncdn.com/paywall/ios/ios-yellow-checkmark@{scale}.png"}],"buttons":[{"trialActive":false,"analyticsName":"1999199910204019951899000_espn","sku":"1999199910204019951899000_espn","title":"Subscribe Now","billingDisclaimer":"You will be billed {price} a month (plus tax where applicable) starting {date}. Subject to terms. Details at espn.com/plus-terms. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and the Walt Disney Family of Companies.","textColor":"#ffffff","disclaimer":"Then {price}. You will be charged monthly until you cancel. Cancel anytime. Subject to ESPN+ Subscriber Agreement below. Available in US Only.","trial":{"paywall":{"disclaimer":"Then {price} a month until you cancel. Cancel Anytime. Subject to terms. Details at espn.com/plus-terms."},"length":"7","categoryCode":"ESPN_submgmt_products","billingDisclaimer":"Your {trialLength}-day free trial will start on {date}. You will be billed {price} a month (plus tax where applicable) starting {trialEndDayDate}. Cancel anytime before then to avoid being charged. Subject to terms. Details at espn.com/plus-terms. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and the Walt Disney Family of Companies.","voucherCode":"ESPN_FT_7D_VOCHR","campaignCode":"ESPN_FT_CMPGN"}}],"analyticsName":"Monthly","text":"MONTHLY PLAN","key":"monthly"}]},"privacyPolicyText":"Privacy Policy","purchaseSuccessText":"You are now subscribed to ESPN+","title":"Get Your Favorite Sports with ESPN+"},"countryCodes":["US"],"isIap":true,"accountsHold":[{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume Subscription","type":"direct","enabled":true,"subHeader":"Your subscription is currently on hold. Please update your payment details to resume your subscription by going to es.pn/billing"},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume Subscription","type":"hulu","enabled":true,"subHeader":"Your subscription is currently on hold. Please update your payment details to resume your subscription by going to secure.hulu.com/account"},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume Subscription","type":"disneyplus","enabled":true,"subHeader":"Your subscription is currently on hold. Please update your payment details to resume your subscription by going to disneyplus.com/account"},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume Subscription","type":"google","enabled":true,"subHeader":"Your subscription is currently on hold. Please update your payment details to resume your subscription by going to https://play.google.com/store/paymentmethods"},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume Subscription","type":"apple","enabled":true,"subHeader":"Your subscription is currently on hold. Please update your payment details to resume your subscription by going to https://apps.apple.com/account/billing."},{"ctaUrl":"\"\"","refreshEntitlementErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaText":"Refresh","networkErrorMessage":"Your payment info was not updated. Please try updating it again in a few minutes.","ctaAction":"REFRESH","errorMessage":"Your payment info was not updated. Please try updating it again.","header":"Resume Subscription","type":"generic","enabled":true,"subHeader":"Your subscription is currently on hold. Please update your payment details to resume your subscription by going to the platform where you purchased ESPN+."}],"name":"ESPN+","postPurchaseScreen":{"promo":{"linkUrl":"https://go.onelink.me/Ecx6/52c116c4","linkText":"BUY NOW","message":"app.iap.espnplus.postpurchase.promo.message","enabled":false,"logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/welcome/promo/promo-full.png"},"buttonText":"Start Streaming Now","message":"Score! You're all set.","enabled":false,"logoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/[email protected]","backgroundImageUrl":"https://secure.espncdn.com/paywall/ios/[email protected]"},"id":1,"embeddedPaywall":{"ctaButtonTitle":"Subscribe Now","title":"Stream Your Favorite Sports, ESPN+ Originals, and More."},"billingDisclaimer":"You will be billed {price} a month (plus tax where applicable) starting {date}. Subject to terms. Details at espn.com/plus-terms. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+, and the Walt Disney Family of Companies.","showPregame":true,"voucherCode":"ESPN_PURCHASE_VOCHR","campaignCode":"ESPN_PURCHASE_CMPGN"},{"entitlement":"ESPN_PLUS_MLB","subscription":{"subscribeText":"Subscribe","subscribedText":"Subscribed","name":"MLB.tv","backgroundColors":[""],"subscriptionExpiredText":"Expired","description":"Every Out-of-Market Game","heroImageUrl":"https://static.web.plus.espn.com/espn/data/mobile/subscription-mlb-tv-xxxhdpi.png"},"tuneIn":{"buttonText":"SUBSCRIBE TO MLB.TV","upsellHref":"https://secure.web.plus.espn.com/billing/purchase/ESPN_PURCHASE_CMPGN/ESPN_PURCHASE_VOCHR/MESPNMLB20","upsellTextKey":"<p class=\"bold\">Watch EVERY out-of-market<br>regular season game<br>LIVE or on demand in HD<\/p>","overlayImgUrl":"/redesign/assets/img/dtc/mlbtv-logo.svg","backgroundImgUrl":"/redesign/assets/img/dtc/mlb-tv.png"},"concurrencyLimit":5,"isPPV":false,"paywall":{"legalText1":"Available in US Only","legalText4":"- No refunds for the current subscription period are granted. Cancellations of the current subscription take effect at the conclusion of the current subscription period.Terms of Use - [https://disneytermsofuse.com](https://disneytermsofuse.com)Privacy Policy - [https://privacy.thewaltdisneycompany.com/en/](https://privacy.thewaltdisneycompany.com/en/)ESPN+ Subscriber Agreement - [https://es.pn/plus-terms](https://es.pn/plus-terms)Blackout Policy - [https://es.pn/plus-blackouts](https://es.pn/plus-blackouts)Do Not Sell My Info - (https://privacy.thewaltdisneycompany.com/en/dnsmi)","legalText3":"- Your subscription may be managed, and auto-renewal may be turned off, by going to your iTunes account settings after purchase. By signing up for a subscription, you will receive updates, special offers, and other information from ESPN, ESPN+ and The Walt Disney Family of Companies.","sponsorImageUrl":"https://url-of-the-amex-promo-image.png","legalText2":"- Payment will be charged to your iTunes Account at confirmation of purchase, unless you are offered and are eligible for a free trial. If you receive a free trial, you will be charged when your free trial period ends. Your account will be charged for renewal within 24 hours prior to the end of the current period. If you cancel prior to such 24 hour period, you will not be charged for the following applicable subscription period.","ctaButtonTitle":"app.iap.Purchase_Button_MLB","backgroundColors":[""],"backgroundVideoUrl":"https://secure.espncdn.com/watchespn/images/espnplus/paywalls/ESPN_PLUS.background.mp4","purchaseSuccessText":"You are now subscribed to MLB.TV","title":"Watch Live Major League Baseball"},"countryCodes":["US"],"isIap":true,"name":"MLB.tv","id":3,"embeddedPaywall":{"ctaButtonTitle":"Subscribe Now","title":"Stream Your Favorite Sports, ESPN+ Originals, and More."},"showPregame":false,"isOOM":true}];
}
// add data for mvpd/e+ and blackouts
espn.gamepackage.onWatch = true;
espn.gamepackage.airings = "null";
espn.gamepackage.zipcodes = {};
espn.gamepackage.pickcenter = [{"overUnder":60.5,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"teamId":"145","favorite":true,"moneyLine":-130},"provider":{"name":"Caesars Sportsbook (New Jersey)","id":"45","priority":1},"details":"MISS -2.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"teamId":"8","favorite":false,"moneyLine":110},"spread":2.5},{"overUnder":60.5,"awayTeamOdds":{"spreadOdds":-111,"underdog":false,"teamId":"145","favorite":true,"moneyLine":-138,"winPercentage":89},"provider":{"name":"consensus","id":"1004","priority":0},"details":"MISS -2.5","links":[],"homeTeamOdds":{"spreadOdds":-109,"underdog":true,"teamId":"8","favorite":false,"moneyLine":115,"winPercentage":11},"spread":2.5},{"overUnder":61,"awayTeamOdds":{"spreadOdds":-110,"underdog":false,"teamId":"145","spreadRecord":{"wins":4,"summary":"4-5-1","losses":5,"pushes":1},"favorite":true,"moneyLine":-129,"averageScore":32.2},"provider":{"name":"teamrankings","id":"1002","priority":0},"details":"MISS -2.5","links":[],"homeTeamOdds":{"spreadOdds":-110,"underdog":true,"teamId":"8","spreadRecord":{"wins":5,"summary":"5-5-0","losses":5,"pushes":0},"favorite":false,"moneyLine":111,"averageScore":29.6},"spread":2.5}];
function loadScripts() {
var src = "https://a.espncdn.com/redesign/0.618.2/js/dist/gamepackage-static.min.js",
script;
if (espn.gamepackage.status === "in") {
if (!espn.gamepackage.core) {