Spaces:
Runtime error
Runtime error
File size: 125,006 Bytes
86eebeb |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 |
<!DOCTYPE html>
<html>
<head lang="en">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XPPLXMRF6Z"></script>
<script>
// Used for Video players on Tropes
var tropes_videos_commands = tropes_videos_commands || [];
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XPPLXMRF6Z');
window.googletag = window.googletag || {cmd: []};
</script>
<script type="text/javascript">
var site_htl_settings = {
"adx" : "yes", // yes/no if we should include adx on page
"groupname" : "Recap", // track groupname in htl/gam
"is_testing" : "no", // yes/no if in testing mode
"split_testing" : "1", // 0/1, 0=control, 1=test, for a/b testing
"send_reports" : "false", // true/false if reports should be sent for logging in DataBricks
"report_url" : "https://analytics.tvtropes.org/analytics-data/tvtropes/", // Endpoint for logging (data stream)
"logging_turned_on": "1", // true/false if console logging should be turned on
"site_name" : "tvtropes", // Site name for display in logging
"sticky_slot_names": ["tvtropes_dt_sticky", "tvtropes_m_sticky"], // Possible slot names for the sticky slot
}
</script>
<script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
<script>
// Create the ad project
var ads_project = (function(sent_in_settings){
var is_mobile = (document.innerWidth <= 768) ? true : false;
//default settings
var setting_defaults = {
"adx" : "yes",
"groupname" : "",
"is_testing" : "no",
"split_testing" : "0",
"send_reports" : "0",
"logging_turned_on": "false",
"site_name" : "site_name",
"report_url" : "",
"page_template" : "",
"sticky_slot_names": []
}
// Combine defaults with sent in parameters
var project_settings = {...setting_defaults, ...sent_in_settings};
/***************************************
--------------- AD CODE ---------------
***************************************/
// Variables for refresh logic (sticky)
var refresh = true;
var sticky_refresh_counter = 1;
var refresh_timer;
var global_ad_slot_name = "";
var global_bidder_name = "";
var last_refresh_time = "";
var unfilled_count = 0;
window.htlbid = window.htlbid || {};
htlbid.cmd = htlbid.cmd || [];
htlbid.cmd.push(function() {
htlbid.layout('universal');
// Only set these if given in settings
if(project_settings.groupname != "") htlbid.setTargeting("groupname", project_settings.groupname);
if(project_settings.page_template != "") htlbid.setTargeting("page_template", project_settings.page_template);
htlbid.setTargeting("adx", project_settings.adx);
htlbid.setTargeting('is_testing', project_settings.is_testing);
htlbid.setTargeting('split_testing', project_settings.split_testing);
htlbid.setTargeting('website', project_settings.site_name);
// On slot rendering (or unfilled)
googletag.pubads().addEventListener('slotRenderEnded', function(event){
var slot_targeting = event.slot.getTargetingMap();
var bidder_name, size = 0;
// If it's empty, no bids?
var cpm = (slot_targeting["hb_pb"]) ? slot_targeting["hb_pb"][0] : 0;
// In case there is no size from anywhere
if(event.size && event.size.length > 0) size = event.size[0]+"x"+event.size[1];
// Either Amazon/ADX or Unfilled
if(event.advertiserId != 5280547887){
if(event.advertiserId == 4467125037){
bidder_name = "adx";
if(cpm == 0) cpm = 0.11;
}
else if(event.advertiserId == 5279698200){
bidder_name = "amazon";
if(cpm == 0) cpm = 0.11;
}
else if(event.advertiserId == 5291323376) bidder_name = "house";
else if(!event.advertiserId || event.isEmpty) bidder_name = "unfilled";
else bidder_name = "unknown";
if(bidder_name != "unknown" && bidder_name != "unfilled") output_logging("ADX/Amazon bid report");
else output_logging("unknown/unfilled bid report");
}
// Bidder won the auction
else{
output_logging("Bidders bid report");
bidder_name = (slot_targeting["hb_bidder"]) ? slot_targeting["hb_bidder"][0] : "unknown";
}
var slot = {
"slotName" : validate_value(event.slot.getAdUnitPath().replace("/1026302/", ""), "string", 50),
"cpm" : validate_value(parseFloat(cpm), "number"),
"bidder" : validate_value(bidder_name, "string", 50),
"size" : validate_value(size, "string", 50),
"adUnitCode": validate_value(event.slot.getSlotId().getDomId(), "string", 50),
"empty" : validate_value(event.isEmpty, "boolean")
};
var slot_tracking = Object.assign({}, page_tracking_data);
// Override ad-unit with this ad unit to send reporting data
slot_tracking.ad_unit = slot;
// Loggin out bid report
output_logging(slot_tracking);
output_logging(slot_tracking.ad_unit.slotName + " "+ slot_tracking.ad_unit.bidder + ", "+ slot_tracking.ad_unit.cpm);
if(project_settings.send_reports == "1"){
try{
// Send actual bid report
send_bid_report(slot_tracking);
}
catch(e){
output_logging("Bid report error");
}
}
// Sticky changes
if(project_settings.sticky_slot_names.includes(slot_tracking.ad_unit.slotName)){
// Check if the bidder is one of these bidders, if so, hide the sticky container
if(["gumgum", "kargo", "unknown", "unfilled"].includes(bidder_name)){
document.getElementById("outer_sticky").style.display = "none";
}
// All other bidders use our sticky container, show it
else{
document.getElementById("outer_sticky").style.display = "";
}
// Unfilled slot
if(bidder_name == "unfilled"){
unfilled_count++;
// Stop refreshing after 3 unfilled impressions
if(unfilled_count >= 3){
refresh = false;
console.log("Refreshed turned off after 3 unfilled impressions");
}
}
// Reset unfilled count if it's not in a row
else if(bidder_name != "house") unfilled_count = 0;
// Start refresh check after every sticky ad has been filled (refreshed)
start_refresh(slot_tracking.ad_unit.adUnitCode, bidder_name);
}
});
});
// Functions for Refresh
function start_refresh(ad_slot_name, bidder_name){
// Remove old listener before adding a new one
document.removeEventListener("visibilitychange", visibility_change_logic);
// Stop here if we don't need to refresh the sticky (or max number of refreshes has been reached)
if(!refresh || sticky_refresh_counter > 10){
output_logging("no timer needed");
refresh = false;
return;
}
global_ad_slot_name = ad_slot_name;
global_bidder_name = bidder_name;
document.addEventListener("visibilitychange", visibility_change_logic);
output_logging('refresh timer started');
// Use 35 second tracker on mobile, 40 on desktop
if(is_mobile) refresh_timer = refresh_timer_tracker(35, refresh_sticky);
else refresh_timer = refresh_timer_tracker(40, refresh_sticky);
}
// Logic for visibility change
function visibility_change_logic(){
// Pause refresh timer
if(document.hidden){
refresh_timer.pause()
}
// Start refresh timer
else if(refresh){
refresh_timer.resume();
}
}
// Timer ended, do refresh
function refresh_sticky(){
// If you aren't supposed to refresh
output_logging('refresh timer ended');
refresh_timer.delete();
// Kargo
if(global_bidder_name == "kargo"){
//close if Kargo container exists, otherwise don't refresh (must have been manually closed)
if(window.Kargo) Kargo.CreativeRegister.getCreativesOfType('Hover')[0].destroy();
else refresh = false;
}
// Gumgum
else if(global_bidder_name == "gumgum") {
//close if GumGum container exists, otherwise don't refresh (must have been manually closed)
if(document.getElementById("GG_PXS") && document.getElementById("GG_PXS").parentNode){
document.getElementById("GG_PXS").parentNode.remove();
}
else refresh = false;
}
// Ogury
else if(global_bidder_name == "ogury"){
if(document.getElementById("ogy-ad-slot")){
window.top.dispatchEvent(new Event('ogy_hide'));
if(document.getElementById("ogy-ad-slot")) document.getElementById("ogy-ad-slot").remove();
}
else refresh=false;
}
// Refresh slot (if container wasn't manually closed)
if(refresh){
sticky_refresh_counter++;
//safeguards (max refresh check, minimum time between refreshes)
if(sticky_refresh_counter > 12){
refresh = false;
refresh_timer.delete();
document.removeEventListener("visibilitychange", visibility_change_logic);
return;
}
if(last_refresh_time != ""){
var current_time = new Date().getTime();
var diff_time = current_time - last_refresh_time;
if(diff_time<(30*1000)){
output_logging(diff_time + " less than 30 seconds since last refresh, something wrong with timer");
refresh = false;
refresh_timer.delete();
document.removeEventListener("visibilitychange", visibility_change_logic);
return;
}
}
last_refresh_time = new Date().getTime();
output_logging("slot "+global_ad_slot_name+" refreshed");
var sticky_refresh_counter_display = (sticky_refresh_counter < 10) ? "0"+sticky_refresh_counter : sticky_refresh_counter;
if(document.getElementById('sticky_ad_container')) document.getElementById('sticky_ad_container').dataset.targeting="{\"sticky_refresh\":\""+sticky_refresh_counter_display+"\"}";
htlbid.forceRefresh([global_ad_slot_name]);
}
else{
output_logging('no refresh - container must have been closed')
}
}
// Force close sticky area
function close_sticky(){
document.getElementById('outer_sticky').remove();
refresh = false;
output_logging('refresh timer ended');
refresh_timer.delete();
}
/***************************************
------------ REPORTING CODE ------------
***************************************/
// Get $_GET variables
var uri = decodeURIComponent(window.location.search.substring(1)).split('&');
var get_vars = {};
for(var x = 0; x < uri.length; x++){
var parts = uri[x].split('=');
get_vars[parts[0]] = parts[1];
}
// UTM options we track
var utm_vars = [
'utm_medium',
'utm_source',
'utm_campaign',
'utm_term',
'utm_content',
'utm_template',
'utm_referrer',
'utm_adset',
'utm_subid',
'gclid',
'fbclid'
];
var utm_confirmed = {}, this_utm_var;
// See if any UTM variables are defined in the query parameters or session storage
utm_vars.forEach(function(utm_var){
// (can be blank, so check for null (not set))
if(sessionStorage.getItem(utm_var) !== null) this_utm_var = sessionStorage.getItem(utm_var);
else{
this_utm_var = (typeof get_vars[utm_var] == 'undefined') ? "" : get_vars[utm_var];
sessionStorage.setItem(utm_var, this_utm_var);
}
utm_confirmed[utm_var] = this_utm_var;
});
// Determine browser
var browser = '';
if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i)) browser = 'iOS';
else if(/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent)) browser = 'opera';
else if(/MSIE (\d+\.\d+);/.test(navigator.userAgent)) browser = 'MSIE';
else if(/Navigator[\/\s](\d+\.\d+)/.test(navigator.userAgent)) browser = 'netscape';
else if(/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)) browser = 'chrome';
else if(/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)) browser = 'safari';
else if(/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)) browser = 'firefox';
else browser = 'internet_explorer';
var session_guid, session_referrer;
// Check for session guid in session storage
if(sessionStorage.getItem("session_guid")) session_guid = sessionStorage.getItem("session_guid");
else{
session_guid = generate_uuid();
sessionStorage.setItem("session_guid", session_guid);
}
// Check for referrer in session storage (can be blank, so check for null (not set))
if(sessionStorage.getItem("session_referrer") !== null) session_referrer = sessionStorage.getItem("session_referrer");
else{
session_referrer = document.referrer || "";
sessionStorage.setItem("session_referrer", session_referrer);
}
var page_tracking_data = {
"referrer" : validate_value(session_referrer, "string"),
// UTM variables
"utm_variables" : {
"utm_source" : validate_value(utm_confirmed.utm_source, "string", 100),
"utm_campaign" : validate_value(utm_confirmed.utm_campaign, "string"),
"utm_medium" : validate_value(utm_confirmed.utm_medium, "string", 100),
"utm_term" : validate_value(utm_confirmed.utm_term, "string", 100),
"utm_content" : validate_value(utm_confirmed.utm_content, "string", 100),
"utm_template" : validate_value(utm_confirmed.utm_template, "string", 100),
"utm_referrer" : validate_value(utm_confirmed.utm_referrer, "string", 100),
"utm_adset" : validate_value(utm_confirmed.utm_adset, "string", 100),
"utm_subid" : validate_value(utm_confirmed.utm_subid, "string", 100)
},
// User information
"user" : {
"session_guid" : validate_value(session_guid, "string"),
"os" : validate_value(get_os(), "string", 50),
"browser" : validate_value(browser, "string", 50),
"device" : validate_value((is_mobile ? "mobile" : "desktop"), "string", 15),
"country" : ""
},
// Page information
"page" : {
"page_guid" : validate_value(generate_uuid(), "string"),
"url" : validate_value(window.location.href, "string"),
"url_path" : validate_value(window.location.pathname, "string", 200)
// "editor" : validate_value(properPage.page_meta.editor, "string", 150),
// "writer" : validate_value(properPage.page_meta.writer, "string", 150)
},
// Ad unit information
"ad_unit" : {}
// Not sure if we are going to use these, comment out for now
// "category" : validate_value(page_meta.category),
// "tags" : validate_value(page_meta.tags.join(",")),
// "website" : validate_value(site_name),
// "is_mobile" : validate_value(device_type),
// "is_isolated" : validate_value(isolated),
// "session_depth" : validate_value(sessionData.depth),
// "page_type" : validate_value(page_meta.page_type),
// "custom" : validateCustom(page_meta.custom),
//
// "use_ssl" : validate_value(use_ssl),
// "resolution_width" : validate_value(width),
// "resolution_height" : validate_value(height),
// "gclid" : validate_value(sessionData.gclid),
// "fbclid" : validate_value(sessionData.fbclid),
// "buyer" : validate_value(page_meta.buyer),
// "split" : validate_value(page_meta.split),
// "adblock" : validate_value(adblock.detected)
};
// Logging
function output_logging(content){
if(project_settings.logging_turned_on){
if(typeof content == "string") console.log(project_settings.site_name + " Ads: " + content);
else console.log(content);
}
}
// Get OS
function get_os(){
var os = navigator.userAgent;
var return_os = "";
if(os.search('Windows') !== -1) return_os = "Windows";
else if(os.search('Mac') !== -1) return_os = "MacOS";
else if(os.search('X11') !== -1 && !(os.search('Linux') !== -1)) return_os = "UNIX";
else if(os.search('Linux') !== -1 && os.search('X11') !== -1) return_os = "Linux"
return return_os;
}
// Validate any value benig sent in reporting
function validate_value(value, type, max_length = 255){
// Validate string logic
if(type == "string"){
// Convert number to string
if(typeof value === 'number') value = value.toString();
// If it's not a string, make it empty by default
if(typeof value !== 'string') value = "";
// Trim max length
if(value.length > max_length) value = value.substring(0, max_length);
}
// Validate number logic
else if(type == "number"){
// Convert string to number
if(typeof value === 'string') value = value.toString();
// If it's not a number, make it 0 by default
if(typeof value !== 'number') value = 0;
}
// Validate boolean logic
else if(type == "boolean"){
// Convert string to boolean
if(typeof value === 'string'){
if(['false', '0'].includes(value)) value = false;
else if(['true', '1'].includes(value)) value = true;
}
// Convert number to boolean
else if(typeof value === 'number'){
if(value == 0) value = false;
else if(value == 1) value = true;
}
// If it's not a boolean, make it false by default
if(typeof value !== 'boolean') value = false;
}
return value;
}
// Generate UUID (unique ID)
function generate_uuid(){
var d = new Date().getTime();
// Use high-precision timer if available (time on page)
if(window.performance && typeof window.performance.now === "function"){
d += performance.now();
}
var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = (d + Math.random()*16)%16 | 0;
d = Math.floor(d/16);
return (c == 'x' ? r : (r&0x3|0x8)).toString(16);
});
return uuid;
}
// Function to send Requests for data logging
function send_bid_report(data){
// If there is no report endpoint
if(project_settings.report_url == "") return;
var request = new XMLHttpRequest();
request.open("post", project_settings.report_url, 1);
request.setRequestHeader("Content-Type", "application/json; charset=UTF-8")
request.onload = function(){
if(request.status == 200) output_logging("Bid Report sent");
else output_logging("Failed to send bid report");
}
request.send(JSON.stringify(data));
}
// Timer for leaving the page and pausing refresh
function refresh_timer_tracker(seconds, oncomplete){
console.log('refresh_timer_tracker: called');
var timerId, start, remaining = parseInt(seconds)*1000;
this.pause = function() {
window.clearTimeout(timerId);
timerId = null;
remaining -= Date.now() - start;
output_logging('refresh_timer_tracker: pause = '+remaining);
};
this.resume = function() {
if (timerId) return;
start = Date.now();
timerId = window.setTimeout(oncomplete, remaining);
output_logging('refresh_timer_tracker: resume = '+remaining);
};
this.delete = function(){
if (!timerId) return;
clearInterval(timerId);
output_logging('refresh_timer_tracker: delete');
}
this.resume();
return this;
}
return {
data: page_tracking_data,
close_sticky: close_sticky
};
})(site_htl_settings); </script>
<script async src="https://htlbid.com/v3/tvtropes.org/htlbid.js"></script>
<script async src="https://fundingchoicesmessages.google.com/i/pub-2575788690798282?ers=1" nonce="7aDjgy4Z6ho9CCJZZfPh4g"></script><script nonce="7aDjgy4Z6ho9CCJZZfPh4g">(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();</script>
<script>(function(){/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
'use strict';var aa=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}},ba="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},k;if("function"==typeof Object.setPrototypeOf)k=Object.setPrototypeOf;else{var m;a:{var ca={a:!0},n={};try{n.__proto__=ca;m=n.a;break a}catch(a){}m=!1}k=m?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null}
var p=k,q=function(a,b){a.prototype=ba(b.prototype);a.prototype.constructor=a;if(p)p(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype},r=this||self,da=function(){},t=function(a){return a};var u;var w=function(a,b){this.g=b===v?a:""};w.prototype.toString=function(){return this.g+""};var v={},x=function(a){if(void 0===u){var b=null;var c=r.trustedTypes;if(c&&c.createPolicy){try{b=c.createPolicy("goog#html",{createHTML:t,createScript:t,createScriptURL:t})}catch(d){r.console&&r.console.error(d.message)}u=b}else u=b}a=(b=u)?b.createScriptURL(a):a;return new w(a,v)};var A=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^Date.now()).toString(36)};var B={},C=null;var D="function"===typeof Uint8Array;function E(a,b,c){return"object"===typeof a?D&&!Array.isArray(a)&&a instanceof Uint8Array?c(a):F(a,b,c):b(a)}function F(a,b,c){if(Array.isArray(a)){for(var d=Array(a.length),e=0;e<a.length;e++){var f=a[e];null!=f&&(d[e]=E(f,b,c))}Array.isArray(a)&&a.s&&G(d);return d}d={};for(e in a)Object.prototype.hasOwnProperty.call(a,e)&&(f=a[e],null!=f&&(d[e]=E(f,b,c)));return d}
function ea(a){return F(a,function(b){return"number"===typeof b?isFinite(b)?b:String(b):b},function(b){var c;void 0===c&&(c=0);if(!C){C={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"],f=0;5>f;f++){var h=d.concat(e[f].split(""));B[f]=h;for(var g=0;g<h.length;g++){var l=h[g];void 0===C[l]&&(C[l]=g)}}}c=B[c];d=Array(Math.floor(b.length/3));e=c[64]||"";for(f=h=0;h<b.length-2;h+=3){var y=b[h],z=b[h+1];l=b[h+2];g=c[y>>2];y=c[(y&3)<<
4|z>>4];z=c[(z&15)<<2|l>>6];l=c[l&63];d[f++]=""+g+y+z+l}g=0;l=e;switch(b.length-h){case 2:g=b[h+1],l=c[(g&15)<<2]||e;case 1:b=b[h],d[f]=""+c[b>>2]+c[(b&3)<<4|g>>4]+l+e}return d.join("")})}var fa={s:{value:!0,configurable:!0}},G=function(a){Array.isArray(a)&&!Object.isFrozen(a)&&Object.defineProperties(a,fa);return a};var H;var J=function(a,b,c){var d=H;H=null;a||(a=d);d=this.constructor.u;a||(a=d?[d]:[]);this.j=d?0:-1;this.h=null;this.g=a;a:{d=this.g.length;a=d-1;if(d&&(d=this.g[a],!(null===d||"object"!=typeof d||Array.isArray(d)||D&&d instanceof Uint8Array))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=null):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)a=c[b],a<this.l?(a+=this.j,(d=this.g[a])?G(d):this.g[a]=I):(d=this.l+this.j,this.g[d]||(this.i=this.g[d]={}),(d=this.i[a])?
G(d):this.i[a]=I)},I=Object.freeze(G([])),K=function(a,b){if(-1===b)return null;if(b<a.l){b+=a.j;var c=a.g[b];return c!==I?c:a.g[b]=G([])}if(a.i)return c=a.i[b],c!==I?c:a.i[b]=G([])},M=function(a,b){var c=L;if(-1===b)return null;a.h||(a.h={});if(!a.h[b]){var d=K(a,b);d&&(a.h[b]=new c(d))}return a.h[b]};J.prototype.toJSON=function(){var a=N(this,!1);return ea(a)};
var N=function(a,b){if(a.h)for(var c in a.h)if(Object.prototype.hasOwnProperty.call(a.h,c)){var d=a.h[c];if(Array.isArray(d))for(var e=0;e<d.length;e++)d[e]&&N(d[e],b);else d&&N(d,b)}return a.g},O=function(a,b){H=b=b?JSON.parse(b):null;a=new a(b);H=null;return a};J.prototype.toString=function(){return N(this,!1).toString()};var P=function(a){J.call(this,a)};q(P,J);function ha(a){var b,c=(a.ownerDocument&&a.ownerDocument.defaultView||window).document,d=null===(b=c.querySelector)||void 0===b?void 0:b.call(c,"script[nonce]");(b=d?d.nonce||d.getAttribute("nonce")||"":"")&&a.setAttribute("nonce",b)};var Q=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)},R=function(a){this.g=a||r.document||document};R.prototype.appendChild=function(a,b){a.appendChild(b)};var S=function(a,b,c,d,e,f){try{var h=a.g,g=Q(a.g,"SCRIPT");g.async=!0;g.src=b instanceof w&&b.constructor===w?b.g:"type_error:TrustedResourceUrl";ha(g);h.head.appendChild(g);g.addEventListener("load",function(){e();d&&h.head.removeChild(g)});g.addEventListener("error",function(){0<c?S(a,b,c-1,d,e,f):(d&&h.head.removeChild(g),f())})}catch(l){f()}};var ia=r.atob("aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vaW1hZ2VzL2ljb25zL21hdGVyaWFsL3N5c3RlbS8xeC93YXJuaW5nX2FtYmVyXzI0ZHAucG5n"),ja=r.atob("WW91IGFyZSBzZWVpbmcgdGhpcyBtZXNzYWdlIGJlY2F1c2UgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlIGlzIGludGVyZmVyaW5nIHdpdGggdGhpcyBwYWdlLg=="),ka=r.atob("RGlzYWJsZSBhbnkgYWQgb3Igc2NyaXB0IGJsb2NraW5nIHNvZnR3YXJlLCB0aGVuIHJlbG9hZCB0aGlzIHBhZ2Uu"),la=function(a,b,c){this.h=a;this.j=new R(this.h);this.g=null;this.i=[];this.l=!1;this.o=b;this.m=c},V=function(a){if(a.h.body&&!a.l){var b=
function(){T(a);r.setTimeout(function(){return U(a,3)},50)};S(a.j,a.o,2,!0,function(){r[a.m]||b()},b);a.l=!0}},T=function(a){for(var b=W(1,5),c=0;c<b;c++){var d=X(a);a.h.body.appendChild(d);a.i.push(d)}b=X(a);b.style.bottom="0";b.style.left="0";b.style.position="fixed";b.style.width=W(100,110).toString()+"%";b.style.zIndex=W(2147483544,2147483644).toString();b.style["background-color"]=ma(249,259,242,252,219,229);b.style["box-shadow"]="0 0 12px #888";b.style.color=ma(0,10,0,10,0,10);b.style.display=
"flex";b.style["justify-content"]="center";b.style["font-family"]="Roboto, Arial";c=X(a);c.style.width=W(80,85).toString()+"%";c.style.maxWidth=W(750,775).toString()+"px";c.style.margin="24px";c.style.display="flex";c.style["align-items"]="flex-start";c.style["justify-content"]="center";d=Q(a.j.g,"IMG");d.className=A();d.src=ia;d.style.height="24px";d.style.width="24px";d.style["padding-right"]="16px";var e=X(a),f=X(a);f.style["font-weight"]="bold";f.textContent=ja;var h=X(a);h.textContent=ka;Y(a,
e,f);Y(a,e,h);Y(a,c,d);Y(a,c,e);Y(a,b,c);a.g=b;a.h.body.appendChild(a.g);b=W(1,5);for(c=0;c<b;c++)d=X(a),a.h.body.appendChild(d),a.i.push(d)},Y=function(a,b,c){for(var d=W(1,5),e=0;e<d;e++){var f=X(a);b.appendChild(f)}b.appendChild(c);c=W(1,5);for(d=0;d<c;d++)e=X(a),b.appendChild(e)},W=function(a,b){return Math.floor(a+Math.random()*(b-a))},ma=function(a,b,c,d,e,f){return"rgb("+W(Math.max(a,0),Math.min(b,255)).toString()+","+W(Math.max(c,0),Math.min(d,255)).toString()+","+W(Math.max(e,0),Math.min(f,
255)).toString()+")"},X=function(a){a=Q(a.j.g,"DIV");a.className=A();return a},U=function(a,b){0>=b||null!=a.g&&0!=a.g.offsetHeight&&0!=a.g.offsetWidth||(na(a),T(a),r.setTimeout(function(){return U(a,b-1)},50))},na=function(a){var b=a.i;var c="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];b=c?c.call(b):{next:aa(b)};for(c=b.next();!c.done;c=b.next())(c=c.value)&&c.parentNode&&c.parentNode.removeChild(c);a.i=[];(b=a.g)&&b.parentNode&&b.parentNode.removeChild(b);a.g=null};var pa=function(a,b,c,d,e){var f=oa(c),h=function(l){l.appendChild(f);r.setTimeout(function(){f?(0!==f.offsetHeight&&0!==f.offsetWidth?b():a(),f.parentNode&&f.parentNode.removeChild(f)):a()},d)},g=function(l){document.body?h(document.body):0<l?r.setTimeout(function(){g(l-1)},e):b()};g(3)},oa=function(a){var b=document.createElement("div");b.className=a;b.style.width="1px";b.style.height="1px";b.style.position="absolute";b.style.left="-10000px";b.style.top="-10000px";b.style.zIndex="-10000";return b};var L=function(a){J.call(this,a)};q(L,J);var qa=function(a){J.call(this,a)};q(qa,J);var ra=function(a,b){this.l=a;this.m=new R(a.document);this.g=b;this.i=K(this.g,1);b=M(this.g,2);this.o=x(K(b,4)||"");this.h=!1;b=M(this.g,13);b=x(K(b,4)||"");this.j=new la(a.document,b,K(this.g,12))};ra.prototype.start=function(){sa(this)};
var sa=function(a){ta(a);S(a.m,a.o,3,!1,function(){a:{var b=a.i;var c=r.btoa(b);if(c=r[c]){try{var d=O(P,r.atob(c))}catch(e){b=!1;break a}b=b===K(d,1)}else b=!1}b?Z(a,K(a.g,14)):(Z(a,K(a.g,8)),V(a.j))},function(){pa(function(){Z(a,K(a.g,7));V(a.j)},function(){return Z(a,K(a.g,6))},K(a.g,9),K(a.g,10),K(a.g,11))})},Z=function(a,b){a.h||(a.h=!0,a=new a.l.XMLHttpRequest,a.open("GET",b,!0),a.send())},ta=function(a){var b=r.btoa(a.i);a.l[b]&&Z(a,K(a.g,5))};(function(a,b){r[a]=function(c){for(var d=[],e=0;e<arguments.length;++e)d[e-0]=arguments[e];r[a]=da;b.apply(null,d)}})("__h82AlnkH6D91__",function(a){"function"===typeof window.atob&&(new ra(window,O(qa,window.atob(a)))).start()});}).call(this);
window.__h82AlnkH6D91__("WyJwdWItMjU3NTc4ODY5MDc5ODI4MiIsW251bGwsbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9iL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyIl0sbnVsbCxudWxsLCJodHRwczovL2Z1bmRpbmdjaG9pY2VzbWVzc2FnZXMuZ29vZ2xlLmNvbS9lbC9BR1NLV3hWV0tMOXhFeS1ZVk1sOTdzcC10MW5mbkxvWmZweWVjaGRJdUxJU244LXpjbUwxM1R5Mlhhb2RoQTJFU3VNS3ljQm1kVHgxSUNlMVBrX2hIeUxHa1ZZNHJ3XHUwMDNkXHUwMDNkP3RlXHUwMDNkVE9LRU5fRVhQT1NFRCIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZCeVhDdDlWajY1eXNrMWFHVW9LUUpLdktrTlh4WVdlRDBhYnhmS3RVUi00eDZfRTNWOXpqSm5vYkFfVzIxeGNDb3F3M1RmN1dYRmxXZFZaazVMMFlQQ2dcdTAwM2RcdTAwM2Q/YWJcdTAwM2QxXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFV4bEsxQ0dxcEpGY3lvcXZXZ0ZnWWRBRjhMMzBOU0Y1ci1paGZSd1VRNzV4YmF6NGxydWVfRUhoWmU1ai00UUhRYXc4MUVZREFkQ2pBN21Tb1BxUUsxaFFcdTAwM2RcdTAwM2Q/YWJcdTAwM2QyXHUwMDI2c2JmXHUwMDNkMSIsImh0dHBzOi8vZnVuZGluZ2Nob2ljZXNtZXNzYWdlcy5nb29nbGUuY29tL2VsL0FHU0tXeFZJUWxpOV9jN0NuWWlHWkU3S2xIV2JWVi10NlpYQ2hQTnlHVTRobGhmSjdLQnJnNjllSFhHYm9aSXRqRm42MDViNWpuaG5KYkxCcU1ySURyY2lLVEk0VmdcdTAwM2RcdTAwM2Q/c2JmXHUwMDNkMiIsImRpdi1ncHQtYWQiLDIwLDEwMCwiY0hWaUxUSTFOelUzT0RnMk9UQTNPVGd5T0RJXHUwMDNkIixbbnVsbCxudWxsLG51bGwsImh0dHBzOi8vd3d3LmdzdGF0aWMuY29tLzBlbW4vZi9wL3B1Yi0yNTc1Nzg4NjkwNzk4MjgyLmpzP3VzcXBcdTAwM2RDQkEiXSwiaHR0cHM6Ly9mdW5kaW5nY2hvaWNlc21lc3NhZ2VzLmdvb2dsZS5jb20vZWwvQUdTS1d4V1hNUEJXZjVaNURyT1VGdDZwVVR5eGh1YzBFNlVGQnJJZUhuUUNCMVlUOWVtYlJTbGxYQ3F6NDV5ODdqT3RVWC1SX3JkcmdudFdjejdtazA2WkZYWDQyd1x1MDAzZFx1MDAzZCJd");
</script>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Ted Lasso S1 E10 "The Hope that Kills You" / Recap - TV Tropes</title>
<meta name="description" content="A page for describing Recap: Ted Lasso S1 E10 "The Hope that Kills You". Nate arrives at the club one morning only to find all of his job duties being done …" />
<link rel="canonical" href="https://tvtropes.org/pmwiki/pmwiki.php/Recap/TedLassoS1E10TheHopeThatKillsYou" />
<link rel="shortcut icon" href="https://assets.tvtropes.org/img/icons/favicon.ico" type="image/x-icon" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@tvtropes" />
<meta name="twitter:owner" content="@tvtropes" />
<meta name="twitter:title" content="Ted Lasso S1 E10 "The Hope that Kills You" / Recap - TV Tropes" />
<meta name="twitter:description" content="A page for describing Recap: Ted Lasso S1 E10 "The Hope that Kills You". Nate arrives at the club one morning only to find all of his job duties being done …" />
<meta name="twitter:image:src" content="https://static.tvtropes.org/logo_blue_small.png" />
<meta property="og:site_name" content="TV Tropes" />
<meta property="og:locale" content="en_US" />
<meta property="article:publisher" content="https://www.facebook.com/tvtropes" />
<meta property="og:title" content="Ted Lasso S1 E10 "The Hope that Kills You" / Recap - TV Tropes" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://tvtropes.org/pmwiki/pmwiki.php/Recap/TedLassoS1E10TheHopeThatKillsYou" />
<meta property="og:image" content="https://static.tvtropes.org/logo_blue_small.png" />
<meta property="og:description" content="Nate arrives at the club one morning only to find all of his job duties being done by someone named Will, who claims to be the new kit man. Believing he's been fired, Nate begins to get angry until Ted and Rebecca reveal that he's actually been …" />
<link rel="apple-touch-icon" sizes="57x57" href="https://assets.tvtropes.org/img/icons/apple-icon-57x57.png" type="image/png">
<link rel="apple-touch-icon" sizes="60x60" href="https://assets.tvtropes.org/img/icons/apple-icon-60x60.png" type="image/png">
<link rel="apple-touch-icon" sizes="72x72" href="https://assets.tvtropes.org/img/icons/apple-icon-72x72.png" type="image/png">
<link rel="apple-touch-icon" sizes="76x76" href="https://assets.tvtropes.org/img/icons/apple-icon-76x76.png" type="image/png">
<link rel="apple-touch-icon" sizes="114x114" href="https://assets.tvtropes.org/img/icons/apple-icon-114x114.png" type="image/png">
<link rel="apple-touch-icon" sizes="120x120" href="https://assets.tvtropes.org/img/icons/apple-icon-120x120.png" type="image/png">
<link rel="apple-touch-icon" sizes="144x144" href="https://assets.tvtropes.org/img/icons/apple-icon-144x144.png" type="image/png">
<link rel="apple-touch-icon" sizes="152x152" href="https://assets.tvtropes.org/img/icons/apple-icon-152x152.png" type="image/png">
<link rel="apple-touch-icon" sizes="180x180" href="https://assets.tvtropes.org/img/icons/apple-icon-180x180.png" type="image/png">
<link rel="icon" sizes="16x16" href="https://assets.tvtropes.org/img/icons/favicon-16x16.png" type="image/png">
<link rel="icon" sizes="32x32" href="https://assets.tvtropes.org/img/icons/favicon-32x32.png" type="image/png">
<link rel="icon" sizes="96x96" href="https://assets.tvtropes.org/img/icons/favicon-96x96.png" type="image/png">
<link rel="icon" sizes="192x192" href="https://assets.tvtropes.org/img/icons/favicon-192x192.png" type="image/png">
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<link rel="stylesheet" href="https://assets.tvtropes.org/design/assets/bundle.css?rev=9c76350f0dedcc812ef2a3bb38db7d3467c2d023" />
<script>
function object(objectId) {
if (document.getElementById && document.getElementById(objectId)) {
return document.getElementById(objectId);
} else if (document.all && document.all(objectId)) {
return document.all(objectId);
} else if (document.layers && document.layers[objectId]) {
return document.layers[objectId];
} else {
return false;
}
}
// JAVASCRIPT COOKIES CODE: for getting and setting user viewing preferences
var cookies = {
create: function (name, value, days2expire, path) {
var date = new Date();
date.setTime(date.getTime() + (days2expire * 24 * 60 * 60 * 1000));
var expires = date.toUTCString();
document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';';
},
createWithExpire: function(name, value, expires, path) {
document.cookie = name + '=' + value + ';' + 'expires=' + expires + ';domain=.tvtropes.org;' + 'path=' + path + ';';
},
read: function (name) {
var cookie_value = "",
current_cookie = "",
name_expr = name + "=",
all_cookies = document.cookie.split(';'),
n = all_cookies.length;
for (var i = 0; i < n; i++) {
current_cookie = all_cookies[i].trim();
if (current_cookie.indexOf(name_expr) === 0) {
cookie_value = current_cookie.substring(name_expr.length, current_cookie.length);
break;
}
}
return cookie_value;
},
update: function (name, val) {
this.create(name, val, 300, "/");
},
remove: function (name) {
//delete cookie with and without domain setting
document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=.tvtropes.org; path=/;";
document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;";
}
};
function updateUserPrefs() {
//GENERAL: detect and set browser, if not cookied (will be treated like a user-preference and added to the #user-pref element)
if( !cookies.read('user-browser') ){
var broswer = '';
if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ){
browser = 'iOS';
} else if (/Opera[\/\s](\d+\.\d+)/.test(navigator.userAgent)) {
browser = 'opera';
} else if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {
browser = 'MSIE';
} else if (/Navigator[\/\s](\d+\.\d+)/.test(navigator.userAgent)) {
browser = 'netscape';
} else if (/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent)) {
browser = 'chrome';
} else if (/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)) {
browser = 'safari';
/Version[\/\s](\d+\.\d+)/.test(navigator.userAgent);
browserVersion = new Number(RegExp.$1);
} else if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)) {
browser = 'firefox';
} else {
browser = 'internet_explorer';
}
cookies.create('user-browser',browser,1,'/');
document.getElementById('user-prefs').classList.add('browser-' + browser);
} else {
document.getElementById('user-prefs').classList.add('browser-' + cookies.read('user-browser'));
}
//update user preference settings
if (cookies.read('wide-load') !== '') document.getElementById('user-prefs').classList.add('wide-load');
if (cookies.read('night-vision') !== '') document.getElementById('user-prefs').classList.add('night-vision');
if (cookies.read('sticky-header') !== '') document.getElementById('user-prefs').classList.add('sticky-header');
if (cookies.read('show-spoilers') !== '') document.getElementById('user-prefs').classList.add('show-spoilers');
if (cookies.read('folders-open') !== '') document.getElementById('user-prefs').classList.add('folders-open');
if (cookies.read('lefthand-sidebar') !== '') document.getElementById('user-prefs').classList.add('lefthand-sidebar');
if (cookies.read('highlight-links') !== '') document.getElementById('user-prefs').classList.add('highlight-links');
if (cookies.read('forum-gingerbread') !== '') document.getElementById('user-prefs').classList.add('forum-gingerbread');
//if the user is logged in, update cookies based on their database settings
//updates element
if(cookies.read('shared-avatars') !== '') document.getElementById('user-prefs').classList.add('shared-avatars');
if(cookies.read('new-search') !== '') document.getElementById('user-prefs').classList.add('new-search');
if(cookies.read('stop-auto-play-video') !== '') document.getElementById('user-prefs').classList.add('stop-auto-play-video');
//desktop view on mobile
if (cookies.read('desktop-on-mobile') !== ''){
document.getElementById('user-prefs').classList.add('desktop-on-mobile');
var viewport = document.querySelector("meta[name=viewport]");
viewport.setAttribute('content', 'width=1000');
}
}
function updateDesktopPrefs() {
if (cookies.read('wide-load') !== '') document.getElementById('sidebar-toggle-wideload').classList.add('active');
if (cookies.read('night-vision') !== '') document.getElementById('sidebar-toggle-nightvision').classList.add('active');
if (cookies.read('sticky-header') !== '') document.getElementById('sidebar-toggle-stickyheader').classList.add('active');
if (cookies.read('show-spoilers') !== '') document.getElementById('sidebar-toggle-showspoilers').classList.add('active');
}
function updateMobilePrefs() {
if (cookies.read('show-spoilers') !== '') document.getElementById('mobile-toggle-showspoilers').classList.add('active');
if (cookies.read('night-vision') !== '') document.getElementById('mobile-toggle-nightvision').classList.add('active');
if (cookies.read('sticky-header') !== '') document.getElementById('mobile-toggle-stickyheader').classList.add('active');
if (cookies.read('highlight-links') !== '') document.getElementById('mobile-toggle-highlightlinks').classList.add('active');
}
function is_mobile() {
if(document.body.clientWidth && document.body.clientWidth<=768) return true;
else return false;
}
</script>
<script type="text/javascript">
var tvtropes_config = {
asteri_stream_enabled : "1",
is_logged_in : "",
handle : "",
get_asteri_stream : "",
revnum : "9c76350f0dedcc812ef2a3bb38db7d3467c2d023",
img_domain : "https://static.tvtropes.org",
adblock : "1",
adblock_url : "propermessage.io",
pause_editing : "0",
pause_editing_msg : "",
pause_site_changes : "",
assets_domain : "https://assets.tvtropes.org"
};
</script>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-3821842-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="">
<i id="user-prefs"></i>
<script>updateUserPrefs();</script>
<div id="fb-root"></div>
<div id="modal-box"></div>
<header id="main-header-bar" class="headroom-element ">
<div id="main-header-bar-inner">
<span id="header-spacer-left" class="header-spacer"></span>
<a href="#mobile-menu" id="main-mobile-toggle" class="mobile-menu-toggle-button tablet-on"><span></span><span></span><span></span></a>
<a href="/" id="main-header-logoButton" class="no-dev"></a>
<span id="header-spacer-right" class="header-spacer"></span>
<nav id="main-header-nav" class="tablet-off">
<a href="/pmwiki/pmwiki.php/Main/Tropes">Tropes</a>
<a href="/pmwiki/pmwiki.php/Main/Media">Media</a>
<a href="/pmwiki/browse.php" class="nav-browse">Browse</a>
<a href="/pmwiki/index_report.php">Indexes</a>
<a href="/pmwiki/topics.php">Forums</a>
<a href="/pmwiki/recent_videos.php" class="nav-browse">Videos</a>
</nav>
<div id="main-header-bar-right">
<div id="signup-login-box" class="font-xs mobile-off">
<a href="/pmwiki/login.php" class="hover-underline bold" data-modal-target="signup">Join</a>
<a href="/pmwiki/login.php" class="hover-underline bold" data-modal-target="login">Login</a>
</div>
<div id="signup-login-mobileToggle" class="mobile-on inline">
<a href="/pmwiki/login.php" data-modal-target="login"><i class="fa fa-user"></i></a>
</div>
<div id="search-box">
<form class="search" action="/pmwiki/search_result.php">
<input type="text" name="q" class="search-box" placeholder="Search" value="" required>
<input type="submit" class="submit-button" value="" />
<input type="hidden" name="search_type" value="article">
<input type="hidden" name="page_type" value="all">
<input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v">
<input type="hidden" name="cof" value="FORID:10">
<input type="hidden" name="ie" value="ISO-8859-1">
<input name="siteurl" type="hidden" value="">
<input name="ref" type="hidden" value="">
<input name="ss" type="hidden" value="">
</form>
<a href="#close-search" class="mobile-on mobile-search-toggle close-x"><i class="fa fa-close"></i></a>
</div>
<div id="random-box">
<a href="/pmwiki/pmwiki.php/Main/CrushBlush" class="button-random-trope" rel="nofollow" onclick="ga('send', 'event', 'button', 'click', 'random trope');"></a>
<a href="/pmwiki/pmwiki.php/Music/KylieMinogue" class="button-random-media" rel="nofollow" onclick="ga('send', 'event', 'button', 'click', 'random media');"></a>
</div>
</div>
</div>
<div id="mobile-menu" class="tablet-on"><div class="mobile-menu-options">
<div class="nav-wrapper">
<a href="/pmwiki/pmwiki.php/Main/Tropes" class="xl">Tropes</a>
<a href="/pmwiki/pmwiki.php/Main/Media" class="xl">Media</a>
<a href="/pmwiki/browse.php" class="xl">Browse</a>
<a href="/pmwiki/index_report.php" class="xl">Indexes</a>
<a href="/pmwiki/topics.php" class="xl">Forums</a>
<a href="/pmwiki/recent_videos.php" class="xl">Videos</a>
<a href="/pmwiki/query.php?type=att">Ask The Tropers</a>
<a href="/pmwiki/query.php?type=tf">Trope Finder</a>
<a href="/pmwiki/query.php?type=ykts">You Know That Show...</a>
<a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a>
<a href="/pmwiki/query.php?type=wl">Wishlist</a>
<a href="#tools" data-click-toggle="active">Tools <i class="fa fa-chevron-down"></i></a>
<div class="tools-dropdown mobile-dropdown-linkList">
<a href="/pmwiki/cutlist.php">Cut List</a>
<a href="/pmwiki/changes.php">New Edits</a>
<a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a>
<a href="/pmwiki/launches.php">Launches</a>
<a href="/pmwiki/img_list.php">Images List</a>
<a href="/pmwiki/crown_activity.php">Crowner Activity</a>
<a href="/pmwiki/no_types.php">Un-typed Pages</a>
<a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a>
</div>
<a href="#hq" data-click-toggle="active">Tropes HQ <i class="fa fa-chevron-down"></i></a>
<div class="tools-dropdown mobile-dropdown-linkList">
<a href="/pmwiki/about.php">About Us</a>
<a href="/pmwiki/contact.php">Contact Us</a>
<a href="mailto:[email protected]">Advertise</a>
<a href="/pmwiki/dmca.php">DMCA Notice</a>
<a href="/pmwiki/privacypolicy.php">Privacy Policy</a>
</div>
<a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a>
<a href="/pmwiki/query.php?type=bug">Report Bug</a>
<div class="toggle-switches">
<ul class="mobile-menu display-toggles">
<li>Show Spoilers <div id="mobile-toggle-showspoilers" class="display-toggle show-spoilers"></div></li>
<li>Night Vision <div id="mobile-toggle-nightvision" class="display-toggle night-vision"></div></li>
<li>Sticky Header <div id="mobile-toggle-stickyheader" class="display-toggle sticky-header"></div></li>
<li>Highlight Links <div id="mobile-toggle-highlightlinks" class="display-toggle highlight-links"></div></li>
</ul>
<script>updateMobilePrefs();</script>
</div>
</div>
</div>
</div>
</header>
<div id="homepage-introBox-mobile" class="mobile-on">
<a href="/"><img src="/images/logo-white-big.png" class="logo-small" /></a>
<form class="search" action="/pmwiki/search_result.php" style="margin:10px -5px -6px -5px;">
<input type="text" name="q" class="search-box" placeholder="Search" value="" required>
<input type="submit" class="submit-button" value="" />
<input type="hidden" name="search_type" value="article">
<input type="hidden" name="page_type" value="all">
<input type="hidden" name="cx" value="partner-pub-6610802604051523:amzitfn8e7v">
<input type="hidden" name="cof" value="FORID:10">
<input type="hidden" name="ie" value="ISO-8859-1">
<input name="siteurl" type="hidden" value="">
<input name="ref" type="hidden" value="">
<input name="ss" type="hidden" value="">
</form>
</div>
<div id="outer_sticky" style="display: none;">
<div id="close_sticky" onclick="ads_project.close_sticky(); return false;"><i class="fa fa-close"></i></div>
<script>
</script>
</div>
<div id="tvtropes_oop_ad_slot" style="display: none;"></div>
<div id="header-fad-wrapper" class="fad">
<div id="header-fad">
<div class="fad-size-970x90" style="height:20px"> </div> </div>
</div>
<div id="main-container">
<div id="action-bar-top" class="action-bar mobile-off">
<div class="action-bar-right">
<p>Follow TV Tropes</p>
<a href="https://www.facebook.com/TVTropes" class="button-fb">
<i class="fa fa-facebook"></i></a>
<a href="https://www.twitter.com/TVTropes" class="button-tw">
<i class="fa fa-twitter"></i></a>
<a href="https://www.reddit.com/r/TVTropes" class="button-re">
<i class="fa fa-reddit-alien"></i></a>
</div>
<nav class="actions-wrapper" itemscope itemtype="http://schema.org/SiteNavigationElement">
<ul id="top_main_list" class="page-actions">
<li class="link-edit">
<a rel = "nofollow" class = "article-edit-button"data-modal-target= "login"href = "/pmwiki/pmwiki.php/Recap/TedLassoS1E10TheHopeThatKillsYou?action=edit">
<i class="fa fa-pencil"></i> Edit Page</a></li><li class="link-related"><a href="/pmwiki/relatedsearch.php?term=Recap/TedLassoS1E10TheHopeThatKillsYou">
<i class="fa fa-share-alt"></i> Related</a></li><li class="link-history"><a href="/pmwiki/article_history.php?article=Recap.TedLassoS1E10TheHopeThatKillsYou">
<i class="fa fa-history"></i> History</a></li><li class="link-discussion"><a href="/pmwiki/remarks.php?trope=Recap.TedLassoS1E10TheHopeThatKillsYou">
<i class="fa fa-comment"></i> Discussion</a></li> </ul>
<button id="top_more_button" onclick="toggle_more_menu('top');" type="button" class="nav__dropdown-toggle">More</button>
<ul id="top_more_list" class="more_menu hidden_more_list">
<li class="link-todo tuck-always more_list_item"><a href="#todo" data-modal-target="login"><i class="fa fa-check-circle"></i> To Do</a></li><li class="link-pageSource tuck-always more_list_item"><a href="/pmwiki/pmwiki.php/Recap/TedLassoS1E10TheHopeThatKillsYou?action=source" target="_blank" rel="nofollow"data-modal-target= "login"><i class="fa fa-code"></i> Page Source</a></li> </ul>
</nav>
<div class="WikiWordModalStub"></div>
<div class="ImgUploadModalStub" data-page-type="Article"></div>
<div class="login-alert" style="display: none;">
You need to <a href="/pmwiki/login.php" style="color:#21A0E8">login</a> to do this. <a href="/pmwiki/login.php?tab=register_account" style="color:#21A0E8">Get Known</a> if you don't have an account
</div>
</div>
<div id="main-content" class="page-Article ">
<article id="main-entry" class="with-sidebar">
<!-- HIDDEN INPUTS FOR JS -->
<input type="hidden" id="groupname-hidden" value="Recap"/>
<input type="hidden" id="title-hidden" value="TedLassoS1E10TheHopeThatKillsYou"/>
<input type="hidden" id="article_id" value="846575" />
<input type="hidden" id="logged_in" value="false" />
<p id="current_url" class="hidden">http://tvtropes.org/pmwiki/pmwiki.php/Recap/TedLassoS1E10TheHopeThatKillsYou</p>
<meta itemprop="datePublished" content=""/>
<meta itemprop="articleSection" content="" />
<meta itemprop="image" content="">
<a href="#watch" class="watch-button " data-modal-target="login" >Follow<span>ing</span></a>
<h1 itemprop="headline" class="entry-title">
<strong>Recap / </strong>
Ted Lasso S1 E10 "The Hope that Kills You"
</h1>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "tvtropes.org",
"item": "https://tvtropes.org"
},{
"@type": "ListItem",
"position": 2,
"name": "Recap",
"item": "https://tvtropes.org/pmwiki/index_report.php?groupname=Recap"
},{
"@type": "ListItem",
"position": 3,
"name": "Ted Lasso S1 E10 \"The Hope that Kills You\"" }]
}
</script>
<a href="#mobile-actions-toggle" id="mobile-actionbar-toggle" class="mobile-actionbar-toggle mobile-on" data-click-toggle="active" >
<p class="tiny-off">Go To</p><span></span><span></span><span></span><i class="fa fa-pencil"></i></a>
<nav id="mobile-actions-bar" class="mobile-actions-wrapper mobile-on"></nav>
<div id="editLockModal" class="modal fade hidden-until-active" >
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span></button>
<h4 class="modal-title">Edit Locked</h4>
</div>
<div class="modal-body">
<div class="row">
<div class="body">
<div class="danger troper_locked_message"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<nav class="body-options" itemscope itemtype="http://schema.org/SiteNavigationElement">
<ul class="subpage-links">
<li>
<a href="/pmwiki/pmwiki.php/Recap/TedLassoS1E10TheHopeThatKillsYou" class="subpage-link curr-subpage" title="The Recap page">
<span class="wrapper"><span class="spi recap"></span>Recap</span></a>
</li>
<li>
<a href="/pmwiki/pmwiki.php/VideoExamples/TedLassoS1E10TheHopeThatKillsYou" class="subpage-link video-examples-tab " title="Video Examples">
<img src="/images/play-button-logo.png" alt="play" class="">
<span class="wrapper">VideoExamples</span>
</a>
</li>
<li class="create-subpage dropdown">
<a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
<span class="wrapper">Create New <i class="fa fa-plus-circle"></i></span>
</a>
<select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);">
<option value="">- Create New -</option>
<option value="/pmwiki/pmwiki.php/Analysis/TedLassoS1E10TheHopeThatKillsYou?action=edit">Analysis</option>
<option value="/pmwiki/pmwiki.php/Characters/TedLassoS1E10TheHopeThatKillsYou?action=edit">Characters</option>
<option value="/pmwiki/pmwiki.php/FanficRecs/TedLassoS1E10TheHopeThatKillsYou?action=edit">FanficRecs</option>
<option value="/pmwiki/pmwiki.php/FanWorks/TedLassoS1E10TheHopeThatKillsYou?action=edit">FanWorks</option>
<option value="/pmwiki/pmwiki.php/Fridge/TedLassoS1E10TheHopeThatKillsYou?action=edit">Fridge</option>
<option value="/pmwiki/pmwiki.php/Haiku/TedLassoS1E10TheHopeThatKillsYou?action=edit">Haiku</option>
<option value="/pmwiki/pmwiki.php/Headscratchers/TedLassoS1E10TheHopeThatKillsYou?action=edit">Headscratchers</option>
<option value="/pmwiki/pmwiki.php/ImageLinks/TedLassoS1E10TheHopeThatKillsYou?action=edit">ImageLinks</option>
<option value="/pmwiki/pmwiki.php/Laconic/TedLassoS1E10TheHopeThatKillsYou?action=edit">Laconic</option>
<option value="/pmwiki/pmwiki.php/PlayingWith/TedLassoS1E10TheHopeThatKillsYou?action=edit">PlayingWith</option>
<option value="/pmwiki/pmwiki.php/Quotes/TedLassoS1E10TheHopeThatKillsYou?action=edit">Quotes</option>
<option value="/pmwiki/pmwiki.php/ReferencedBy/TedLassoS1E10TheHopeThatKillsYou?action=edit">ReferencedBy</option>
<option value="/pmwiki/pmwiki.php/Synopsis/TedLassoS1E10TheHopeThatKillsYou?action=edit">Synopsis</option>
<option value="/pmwiki/pmwiki.php/Timeline/TedLassoS1E10TheHopeThatKillsYou?action=edit">Timeline</option>
<option value="/pmwiki/pmwiki.php/Trivia/TedLassoS1E10TheHopeThatKillsYou?action=edit">Trivia</option>
<option value="/pmwiki/pmwiki.php/WMG/TedLassoS1E10TheHopeThatKillsYou?action=edit">WMG</option>
<option value="/pmwiki/pmwiki.php/YMMV/TedLassoS1E10TheHopeThatKillsYou?action=edit">YMMV</option>
</select>
</li>
</ul>
</nav>
<div id="main-article" class="article-content retro-folders">
<p>Nate arrives at the club one morning only to find all of his job duties being done by someone named Will, who claims to be the new kit man. Believing he's been fired, Nate begins to get angry until Ted and Rebecca reveal that he's actually been promoted to assistant coach. The whole team celebrates Nate's promotion together. Roy tells Ted that he needs to pick a new team captain, as he'll be on the bench during the final. Ted refuses, telling Roy that he needs to pick his own successor. To get the team fired up against Manchester City, Nate shows them a video of Jamie insulting them in an interview; it works too well, and Isaac breaks the TV out of anger, which Roy approves of. Meanwhile, Jamie is similarly perturbed by an interview clip—specifically, a video of Ted saying that he's always rooting for Jamie despite his split from Richmond, which Jamie assumes is Ted trying to play mind games with him.</p><p>Ted, Beard, and Nate are desperate for a strategy that could help them beat Man City and avoid relegation; Nate and Beard are pessimistic about their chances. Ted tells Rebecca that if Richmond loses the final match, she should fire him and replace him with a real soccer coach. Rebecca suggests that Ted use his ignorance of the sport to his advantage and focus on confusing the opponents, which inspires Ted to come up with a strategy based on heavy use of trick plays.</p><p>The final match arrives. In the locker room, Roy names Isaac the new captain while Ted inspires the team to be optimistic about their chances. Richmond holds out surprisingly well in the first half thanks to Ted's strategy and their strong defense. Roy is put in the starting lineup for the second half. Man City scores on a penalty kick, bringing the score to 1-0; Jamie almost scores a second goal for City, but Roy manages to chase him down and tackle him. In the process, Roy badly injures his knee, signaling the likely end of his career. He limps off the field as the fans cheer for him and goes to the locker room, where Keeley comforts him. Back out in the stadium, the fans' phones light up with the news that Crystal Palace has beaten Norwich 6-0, meaning Richmond only needs a tie in order to avoid relegation. The team plays a "Lasso Special," a gridiron football scrimmage that confuses Man City enough to allow Richmond to score with less than a minute left. As Richmond celebrates their apparent draw, Jamie goes back on the attack, bringing the ball back down the pitch and passing it to a teammate who scores in the final seconds of the match. Final score: 2-1, Man City win.</p><p>As Ted heads back to the locker room, he sees Jamie sitting seemingly by himself in a side room. Ted almost goes to talk to him, but is prevented from doing so by Jamie's father throwing a shoe at Jamie's head and screaming at him for passing the ball instead of making the game-winning shot himself. In the locker room, Richmond mourns their relegation, but Ted comforts the team by telling them how well they played and that, while they may be sad, they have each other to lean on. As Jamie boards the Man City team bus, Beard gives him an envelope from Ted containing a toy soldier and a note congratulating him on making the extra pass. Ted brings Rebecca his letter of resignation so she doesn't have to fire him, but instead she tells him that she plans to keep him as a coach. Ted resolves that next season, Richmond will get promoted back to the Premier League, and after that they will "win the whole fuckin' thing."</p><p>This episode premiered on October 2, 2020.<hr /><h2>This episode provides examples of:</h2></p><p><ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ArtisticLicenseSports' title='/pmwiki/pmwiki.php/Main/ArtisticLicenseSports'>Artistic License οΏ½ Sports</a>: AFC Richmond's final game of the season is shown taking place at night; in reality, whilst Premier League fixtures are played during evenings over the course of the season, this is not the case on the final day of the season as every game kicks off at the same time on a Sunday afternoon in May, with the fixtures being played entirely in daylight.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CallBack' title='/pmwiki/pmwiki.php/Main/CallBack'>Call-Back</a>:<ul ><li> Roy's injury on the pitch plays out almost exactly like Sam's in <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TedLassoS1E05TanLines' title='/pmwiki/pmwiki.php/Recap/TedLassoS1E05TanLines'>"Tan Lines"</a>, but with a few key differences that show how the team has evolved and highlight the seriousness of Roy's injury. When Sam got hurt, no one went to check on him except Roy, who paused to give him advice on playing to the crowd by exaggerating how much pain he's in before helping him up. This time around, Roy gets hurt and several of his teammates immediately rush to help him, and Sam pauses to tell Roy to listen to the crowd cheering for him one last time before pulling him to his feet.</li><li> In <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TedLassoS1E02Biscuits' title='/pmwiki/pmwiki.php/Recap/TedLassoS1E02Biscuits'>"Biscuits"</a>, Ted's son sent him a bag of green plastic army men to keep him safe, and Ted gave some to Rebecca and Sam for the same reason. After witnessing Jamie's abuse by his father after the game, Ted slips him an envelope with an encouraging note and another plastic army man to show that he's still looking out for Jamie.</li><li> Ted's difficulty with bubble water gives Rebecca a face-full of spit up bubble water.</li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CareerEndingInjury' title='/pmwiki/pmwiki.php/Main/CareerEndingInjury'>Career-Ending Injury</a>: Roy has had a great career, but he's now old and slow, and everyone knows his days of pro soccer are coming to an end. In this episode he busts his knee during a tackle and has to limp off the field, with the commentators noting that it's an injury he probably won't recover from.</li></ul><!--* <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CeilingBanger' title='/pmwiki/pmwiki.php/Main/CeilingBanger'>Ceiling Banger</a>: Ted's upstairs neighbor Ms. Shipley.--><ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ConfusionFu' title='/pmwiki/pmwiki.php/Main/ConfusionFu'>Confusion Fu</a>: The final match has Richmond utilizing new, unorthodox strategies to confuse their opponents. They even use a trick play called "the Lasso Special" which uses some maneuvers from American football.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/ContinuityNod' title='/pmwiki/pmwiki.php/Main/ContinuityNod'>Continuity Nod</a>: Ted writes his resignation letter on the back of an Indian takeout menu, implying that he has continued to eat Indian food after being introduced to it in <a class='twikilink' href='/pmwiki/pmwiki.php/Recap/TedLassoS1E03TrentCrimmTheIndependent' title='/pmwiki/pmwiki.php/Recap/TedLassoS1E03TrentCrimmTheIndependent'>"Trent Crimm, The Independent"</a>.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CrazyEnoughToWork' title='/pmwiki/pmwiki.php/Main/CrazyEnoughToWork'>Crazy Enough to Work</a>: The team desperately needs a tie in order to avoid relegation and decides to run the "Lasso Special" which involves the players forming an <em>American Football</em> line of scrimmage with Zoreaux acting as quarterback. The pattern is so loud and disorienting that Richmond is able to take advantage of the opposing team's confusion and score the equaliser.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DownToTheLastPlay' title='/pmwiki/pmwiki.php/Main/DownToTheLastPlay'>Down to the Last Play</a>: When the other game results come through, it becomes clear that a tie will keep Richmond in the Premier League. After a save by Roy that might have resulted in a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CareerEndingInjury' title='/pmwiki/pmwiki.php/Main/CareerEndingInjury'>Career-Ending Injury</a>, Richmond pulls off a trick play that allows them to score the tie. However, it's subverted when they become so elated in their accomplishment they forget that the play is not yet over and in the remaining seconds, Manchester rallies to score an additional point sending Richmond into relegation.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/DownerEnding' title='/pmwiki/pmwiki.php/Main/DownerEnding'>Downer Ending</a>: Richmond gets relegated after a game against the much better Manchester City, Roy suffers a potentially <a class='twikilink' href='/pmwiki/pmwiki.php/Main/CareerEndingInjury' title='/pmwiki/pmwiki.php/Main/CareerEndingInjury'>career-ending injury</a>, and Jamie doesn't even get to enjoy getting revenge on Richmond as he gets screamed at by his father for making the extra pass to win the game instead of trying to score the goal himself.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Foil' title='/pmwiki/pmwiki.php/Main/Foil'>Foil</a>: Jamie serves as one to AFC Richmond. Richmond may have lost and ultimately been relegated from the Premier League, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouAreNotAlone' title='/pmwiki/pmwiki.php/Main/YouAreNotAlone'>but they are at the very least together</a>; Jamie may have triumphed, but he's <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AbusiveParents' title='/pmwiki/pmwiki.php/Main/AbusiveParents'>subject to his father's abuse</a> and shown alone amongst the rest of Manchester City's squad.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Foreshadowing' title='/pmwiki/pmwiki.php/Main/Foreshadowing'>Foreshadowing</a>: There are a few hints at the meaner, more resentful aspects of Nate's personality that come to the forefront in Season 2. When the team promotes Nate to coach, he misinterprets it as him getting fired and is hostile and angry. Then when Ted presents him with his new coach's whistle, he uses Ted claiming it's "never been blown" as an opportunity to make a joke about Colin's sex life.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HopeIsScary' title='/pmwiki/pmwiki.php/Main/HopeIsScary'>Hope Is Scary</a>: When Ted calls out the pub regulars on acting like Richmond already lost the final match and asks why they don't have a little hope, Mae tells Ted that "it's the hope that kills you". Indeed when it seems that Richmond has pulled off a <a class='twikilink' href='/pmwiki/pmwiki.php/Main/MiracleRally' title='/pmwiki/pmwiki.php/Main/MiracleRally'>Miracle Rally</a> to achieve a draw and avoid relegation and everyone celebrates, they wind up losing at the last second and everyone feels worse than they did earlier.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/HopeSpot' title='/pmwiki/pmwiki.php/Main/HopeSpot'>Hope Spot</a>: Happens when they realize that Crystal Palace has pulled off a win that means that Richmond only needs to tie Manchester City to avoid relegation, and Richmond score, tying the game. However, they allow themselves to become distracted with the celebration of their recent goal and, with the clock still running, Manchester City rallies to score again, resulting in Richmond's relegation.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/LeaningOnTheFourthWall' title='/pmwiki/pmwiki.php/Main/LeaningOnTheFourthWall'>Leaning on the Fourth Wall</a>: When Ted and Rebecca discuss their plans for "next season" in the final scene, they're talking about the <a class='twikilink' href='/pmwiki/pmwiki.php/Main/InUniverse' title='/pmwiki/pmwiki.php/Main/InUniverse'>In-Universe</a> football league seasons, but also laying out the arc for the next season of the show.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/Malaproper' title='/pmwiki/pmwiki.php/Main/Malaproper'>Malaproper</a>: In his pre-game interview, Jamie comes out with this gem regarding Richmond's dire situation:<div class='indent'> <strong>Jamie:</strong> It'll be good to be the final nail in the ashes. Instant caramel.</div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OpenMouthInsertFoot' title='/pmwiki/pmwiki.php/Main/OpenMouthInsertFoot'>Open Mouth, Insert Foot</a>: When Rebecca meets Higgins' very large family:<div class='indent'><strong>Rebecca:</strong> How many kids do you have, Higgins?! Jesus Christ! <br /><strong>Higgins:</strong> ...And this is our eldest, <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TheVicar' title='/pmwiki/pmwiki.php/Main/TheVicar'>Lindsay</a>! <br /><strong>Rebecca:</strong> Forgive me, Father.</div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PrecisionFStrike' title='/pmwiki/pmwiki.php/Main/PrecisionFStrike'>Precision F-Strike</a>: Ted's unending politeness makes the moment he does curse all the more powerful.<div class='indent'> <strong>Ted:</strong> So, then next year we get ourselves a promotion - which looks good on any resume - and then we come back to this league and do something no one believes we could ever do: win the whole <a class='twikilink' href='/pmwiki/pmwiki.php/Main/OOCIsSeriousBusiness' title='/pmwiki/pmwiki.php/Main/OOCIsSeriousBusiness'>fucking</a> thing.</div></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SequelHook' title='/pmwiki/pmwiki.php/Main/SequelHook'>Sequel Hook</a>: The first season ends with two of them. Roy's future as a player uncertain after his injury in the final match. Meanwhile, Rebecca refuses to accept Ted's resignation as manager and the two of them agreeing to win promotion back to the Premier League the next season, then win it all once the team is back.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/SoProudOfYou' title='/pmwiki/pmwiki.php/Main/SoProudOfYou'>So Proud of You</a>:<ul ><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/PlayedForLaughs' title='/pmwiki/pmwiki.php/Main/PlayedForLaughs'>Played for Laughs</a> when Isaac throws his chair at the TV as the team watches an interview where Jamie talks about wanting to be relegate Richmond, as Roy immediately praises his action.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/AFatherToHisMen' title='/pmwiki/pmwiki.php/Main/AFatherToHisMen'>Ted</a> pulls this on Jamie for passing to his teammate, even though it cost Richmond the game and relegation. <a class='twikilink' href='/pmwiki/pmwiki.php/Main/WellDoneSonGuy' title='/pmwiki/pmwiki.php/Main/WellDoneSonGuy'>Jamie</a> is visibly touched.</li></ul></li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TakeThat' title='/pmwiki/pmwiki.php/Main/TakeThat'>Take That!</a>: When the Richmond players ask Ted what happens to the poor performing teams in American sports leagues if there's no relegation, Ted explains that they just play out the rest of their games with half-empty stadiums and half-hearted performances by the players since they don't actually mean anything. Coach Beard then admits to the team it's a very dumb concept.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TantrumThrowing' title='/pmwiki/pmwiki.php/Main/TantrumThrowing'>Tantrum Throwing</a>: After Nate shows Richmond a clip of Jamie Tartt insulting both the team and Ted as a way to motivate them before the match, Isaac throws his chair at the TV.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TragicMistake' title='/pmwiki/pmwiki.php/Main/TragicMistake'>Tragic Mistake</a>: Rebecca's decision to trade Jamie back to Manchester ends up costing the team everything, as Jamie sets up the goal that gets Richmond relegated. Heartbreakingly it happens just as she admits to truly caring about the team and wanting them to win.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/TruthInTelevision' title='/pmwiki/pmwiki.php/Main/TruthInTelevision'>Truth in Television</a>: The situation Richmond find themselves in - needing a victory to avoid relegation, with a draw sufficing if other results go their way - is very much one that has played out in the Premier League before.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YankTheDogsChain' title='/pmwiki/pmwiki.php/Main/YankTheDogsChain'>Yank the Dog's Chain</a>: Richmond are down 1-0 when everyone learns that Crystal Palace has managed to defeat Norwich City by enough goals to force a scenario where Richmond can avoid relegation with a draw. The team quickly uses the "Ted Lasso Special" trick before stoppage time runs out and Dani manages to score the equalising goal. Unfortunately, while everyone is celebrating the goal, Manchester City quickly kicks off and takes advantage of the distracted Richmond team to score a last second goal that gives them the win and dooms Richmond to relegation.</li><li> <a class='twikilink' href='/pmwiki/pmwiki.php/Main/YouAreNotAlone' title='/pmwiki/pmwiki.php/Main/YouAreNotAlone'>You Are Not Alone</a>: When Ted speaks to the team in the locker room after being relegated:<div class='indent'>Now, look, this is a sad moment right here. For all of us. And there ain't nothing I can say, standing in front of you right now, that can take that away. But please do me this favor, will you? Lift your heads up and look around this locker room. Yeah? Look at everybody else in here. And I want you to be grateful that you're going through this sad moment with all these other folks. Because I promise you, there is something worse out there than being sad, and that is being alone and being sad. Ain't nobody in this room alone.</div></li></ul><hr /></p></div>
<div class="lazy-video-script">
<a id="VideoExamples"></a>
<div> </div>
<div class="video-examples has-thumbnails">
<div class="video-examples-header">
<a href="#feedback" class="font-s float-right text-blue"
data-modal-target="login"
>Feedback</a>
<h3 class="bold">Video Example(s):</h3>
</div>
<div class="video-examples-featured">
<div class="example_video_box">
<a href="#video-link"
data-video-id="cqb3qe"
data-video-descrip="&quot;He's here, he's there, he's every-fucking-where! Roy Kent! Roy Kent!&quot; Legendary but aging football captain Roy Kent is cheered by the crowd and fans watching elsewhere as he gets off the pitch for what might be the last time."
data-video-title="Here, There, Everyfuckingwhere"
data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/cqb3qe_640x360p_qvbr.mp4"
data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/cqb3qe.mpd"
data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/cqb3qe.m3u8"
data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cqb3qe.jpg"
data-video-trope="Main/CrowdChant"
data-video-tropename="Crowd Chant"
data-video-approval="APPROVED"
data-video-troper-rating=""
data-video-average-rating="5.00"
data-video-rating-count="7"
data-video-media-sources="Recap/TedLassoS1E10TheHopeThatKillsYou,Series/TedLasso"
class="video-launch-link video-overlay-link featured-widget-vid">
<div class="featured-widget-vid-iframe">
<div id="tvtropes_no_volume_player"
data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cqb3qe.jpg"
data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/cqb3qe_640x360p_qvbr.mp4"
data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/cqb3qe.mpd"
data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/cqb3qe.m3u8"
data-controls="0"
data-muted="1">
<script>
tropes_videos_commands.push(function(){ new_video_project.load_video("tvtropes_no_volume_player", false); });
</script>
</div>
</div>
</a>
</div>
<h2 class="bold font-l">Here, There, Everyfuckingwhere</h2>
<p class="_pmvv-vidbox-descTxt">
"He's here, he's there, he's every-fucking-where! Roy Kent! Roy Kent!" Legendary but aging football captain Roy Kent is cheered by the crowd and fans watching elsewhere as he gets off the pitch for what might be the last time. </p>
<p class='example_row'>Example of:<br><a href="/pmwiki/pmwiki.php/Main/CrowdChant"class='trope-example-link'>Crowd Chant</a></p>
</div>
<div class="video-examples-thumbs">
<a href="#video-link"
data-video-id="2l466v"
data-video-descrip="Roy busts his knee tackling Jamie and has to walk off the field. The commentators note that at his age, he is unlikely to recover from that, and it proves to be his last game."
data-video-title="The Great Roy Kent"
data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2l466v_640x360p_qvbr.mp4"
data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2l466v.mpd"
data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2l466v.m3u8"
data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2l466v.jpg"
data-video-trope="Main/CareerEndingInjury"
data-video-tropename="Career-Ending Injury"
data-video-approval="APPROVED"
data-video-troper-rating=""
data-video-average-rating=""
data-video-rating-count=""
data-video-media-sources="Recap/TedLassoS1E10TheHopeThatKillsYou,Series/TedLasso"
class="video-launch-link video-overlay-link video-background-image lazy-image"
data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2l466v.jpg">
<p><span class="bold">The Great Roy Kent</span></p>
</a>
</div>
</div>
</div>
<div class="section-links" itemscope itemtype="http://schema.org/SiteNavigationElement">
<div class="titles">
<div><h3 class="text-center text-uppercase">Previous</h3></div>
<div><h3 class="text-center text-uppercase">Index</h3></div>
<div><h3 class="text-center text-uppercase">Next</h3></div>
</div>
<div class="links">
<ul>
<li>
<a href="/pmwiki/pmwiki.php/Recap/TedLassoS1E09AllApologies">Ted Lasso S1 E09 "All Apologies"</a>
</li>
<li>
<a href="/pmwiki/pmwiki.php/Recap/TedLasso">Recap/Ted Lasso</a>
</li>
<li>
<a href="/pmwiki/pmwiki.php/Recap/TedLassoS2E01GoodbyeEarl">Ted Lasso S2 E01 "Goodbye Earl"</a>
</li>
</ul>
</div>
</div>
<script>
if( document.getElementById('user-prefs').classList.contains('folders-open') ){
console.log('open all folders');
var elements = document.querySelectorAll('.folderlabel, .toggle-all-folders-button');
elements.forEach((element) => {
element.classList.add('is-open');
});
}
</script>
<script>
function insert_ad(adCount, paragraph, adName){
var ad_count = adCount < 10 ? "0"+adCount : adCount;
// Create element for ad unit
var adUnit = document.createElement('div');
adUnit.setAttribute("class", `htlad-${adName}`);
adUnit.setAttribute("id", `${adName}_${adCount}`);
adUnit.setAttribute("data-targeting", `{"slot_number": "${ad_count}"}`);
// Add Advertisement label
var adLabel = document.createElement("span");
adLabel.innerHTML = "Advertisement:"
adLabel.setAttribute("class","ad-caption");
var adWrapper = document.createElement("div");
adWrapper.setAttribute("class","tvtropes-ad-unit mobile-fad square_fad mobile_unit_scroll");
adWrapper.setAttribute("id","mobile_"+adCount);
// Merge all pieces
adWrapper.appendChild(adLabel);
adWrapper.appendChild(adUnit);
// Insert into DOM
paragraph.parentNode.insertBefore(adWrapper, paragraph.nextSibling);
}
var node = document.getElementById("main-article").firstElementChild;
var pHeight = 0;
var pCount = 0;
var adCount = 1;
var nodeCount = 0;
var nodeLevel = 0;
var x = 0;
if(1 && (document.body.clientWidth && document.body.clientWidth<=768) ) {
//loop through elements of content
while(x<300) {
x++; nodeCount++;
//traverse to the next element (if exists)
if(nodeCount>1) {
if(!node.nextElementSibling) {
console.log('adparser: no next element');
if(nodeLevel>0) {
nodeLevel--;
node = node.parentElement;
console.log('adparser: we were down a level, go back up ('+nodeLevel+')');
continue;
}
else {
break;
}
}
node = node.nextElementSibling;
}
//skip inserted ads or empty nodes
if(!node || node==="null" || typeof node !== "object") continue;
if(!node.offsetHeight || node.offsetHeight==0) continue;
if(node.className && node.className.includes('tvtropes-ad-unit')) continue;
//skip if image block that has a caption after it
if(node.className && node.className.includes('quoteright')) {
if(node.nextElementSibling && node.nextElementSibling.className && node.nextElementSibling.className.includes('acaptionright')) {
pHeight += node.offsetHeight;
continue;
}
}
//if very large element, loop through elements inside
if(node.offsetHeight>700 && node.firstElementChild) {
nodeLevel++;
console.log('adparser: traverse through large element='+node.nodeName+', height='+node.offsetHeight+' level='+nodeLevel);
node = node.firstElementChild;
nodeCount = 0;
continue;
}
//paragraph counter
if(node.nodeName=="P") pCount++;
//add height of node to counter
pHeight += node.offsetHeight;
//add margin of node to counter if available
try {
var nodeStyle = getComputedStyle(node);
if(nodeStyle.marginTop && parseInt(nodeStyle.marginTop)>0) pHeight+=parseInt(nodeStyle.marginTop);
if(nodeStyle.marginBottom && parseInt(nodeStyle.marginBottom)>0) pHeight+=parseInt(nodeStyle.marginBottom);
//console.log(nodeStyle.marginTop+','+nodeStyle.marginBottom);
} catch(e) { }
//debug logging
console.log('adparser: name='+node.nodeName+', height='+node.offsetHeight+' =>'+pHeight);
//console.log(node.className);
//only inserts an ad if the total height and paragraph count conditions are met
if( (adCount==1 && pCount>1 && pHeight >= 550) || pHeight >= 750 ) {
//if we are about to insert after a folder, use the next sibling so it's under the contents
if(node.className && node.className.includes("folderlabel") && node.nextElementSibling) node = node.nextElementSibling;
console.log('adparser: insert ad '+adCount);
insert_ad(adCount, node, "tvtropes_m_incontent_dynamic");
adCount++;
pHeight = 0;
pCount = 0;
if(adCount>5) break;
}
}
//insert one at end if room
if(adCount<=5 && pHeight>=550) {
console.log('adparser: insert ad');
insert_ad(adCount, document.getElementById("main-article").lastElementChild, "tvtropes_m_incontent_dynamic");
}
}
</script>
</article>
<div id="main-content-sidebar"><div class="sidebar-item display-options">
<ul class="sidebar display-toggles">
<li>Show Spoilers <div id="sidebar-toggle-showspoilers" class="display-toggle show-spoilers"></div></li>
<li>Night Vision <div id="sidebar-toggle-nightvision" class="display-toggle night-vision"></div></li>
<li>Sticky Header <div id="sidebar-toggle-stickyheader" class="display-toggle sticky-header"></div></li>
<li>Wide Load <div id="sidebar-toggle-wideload" class="display-toggle wide-load"></div></li>
</ul>
<script>updateDesktopPrefs();</script>
</div>
<div class="sidebar-item quick-links" itemtype="http://schema.org/SiteNavigationElement">
<p class="sidebar-item-title" data-title="Important Links">Important Links</p>
<div class="padded">
<a href="/pmwiki/query.php?type=att">Ask The Tropers</a>
<a href="/pmwiki/query.php?type=tf">Trope Finder</a>
<a href="/pmwiki/query.php?type=ykts">You Know That Show...</a>
<a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a>
<a href="/pmwiki/query.php?type=wl">Wishlist</a></li>
<a href="/pmwiki/review_activity.php">Reviews</a>
<a href="/pmwiki/ad-free-subscribe.php">Go Ad Free!</a>
<div class="crucial_browsing_dropdown">
<a href="javascript:void(0);" onclick="double_dropdown(); return false;" id="crucial_browsing_dropdown"><span class="new_blue">Crucial Browsing</span><i class="fa fa-angle-down"></i></a>
<ul id="main_dropdown">
<li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Genre</a>
<ul>
<li><a href='/pmwiki/pmwiki.php/Main/ActionAdventureTropes' title='Main/ActionAdventureTropes'>Action Adventure</a></li>
<li><a href='/pmwiki/pmwiki.php/Main/ComedyTropes' title='Main/ComedyTropes'>Comedy</a></li>
<li><a href='/pmwiki/pmwiki.php/Main/CommercialsTropes' title='Main/CommercialsTropes'>Commercials</a></li>
<li><a href='/pmwiki/pmwiki.php/Main/CrimeAndPunishmentTropes' title='Main/CrimeAndPunishmentTropes'>Crime & Punishment</a></li>
<li><a href='/pmwiki/pmwiki.php/Main/DramaTropes' title='Main/DramaTropes'>Drama</a></li>
<li><a href='/pmwiki/pmwiki.php/Main/HorrorTropes' title='Main/HorrorTropes'>Horror</a></li>
<li><a href='/pmwiki/pmwiki.php/Main/LoveTropes' title='Main/LoveTropes'>Love</a></li>
<li><a href='/pmwiki/pmwiki.php/Main/NewsTropes' title='Main/NewsTropes'>News</a></li>
<li><a href='/pmwiki/pmwiki.php/Main/ProfessionalWrestling' title='Main/ProfessionalWrestling'>Professional Wrestling</a></li>
<li><a href='/pmwiki/pmwiki.php/Main/SpeculativeFictionTropes' title='Main/SpeculativeFictionTropes'>Speculative Fiction</a></li>
<li><a href='/pmwiki/pmwiki.php/Main/SportsStoryTropes' title='Main/SportsStoryTropes'>Sports Story</a></li>
<li><a href='/pmwiki/pmwiki.php/Main/WarTropes' title='Main/WarTropes'>War</a></li>
<li><a href="/pmwiki/lbs.php" data-modal-target="login">Live Blogs</a></li>
</ul>
</li>
<li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Media</a>
<ul>
<li><a href="/pmwiki/pmwiki.php/Main/Media" title="Main/Media">All Media</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/AnimationTropes" title="Main/AnimationTropes">Animation (Western)</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Anime" title="Main/Anime">Anime</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/ComicBookTropes" title="Main/ComicBookTropes">Comic Book</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/FanFic" title="FanFic/FanFics">Fan Fics</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Film" title="Main/Film">Film</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/GameTropes" title="Main/GameTropes">Game</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Literature" title="Main/Literature">Literature</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/MusicAndSoundEffects" title="Main/MusicAndSoundEffects">Music And Sound Effects</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/NewMediaTropes" title="Main/NewMediaTropes">New Media</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/PrintMediaTropes" title="Main/PrintMediaTropes">Print Media</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Radio" title="Main/Radio">Radio</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/SequentialArt" title="Main/SequentialArt">Sequential Art</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/TabletopGames" title="Main/TabletopGames">Tabletop Games</a></li>
<li><a href="/pmwiki/pmwiki.php/UsefulNotes/Television" title="Main/Television">Television</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Theater" title="Main/Theater">Theater</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/VideogameTropes" title="Main/VideogameTropes">Videogame</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Webcomics" title="Main/Webcomics">Webcomics</a></li>
</ul>
</li>
<li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Narrative</a>
<ul>
<li><a href="/pmwiki/pmwiki.php/Main/UniversalTropes" title="Main/UniversalTropes">Universal</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/AppliedPhlebotinum" title="Main/AppliedPhlebotinum">Applied Phlebotinum</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/CharacterizationTropes" title="Main/CharacterizationTropes">Characterization</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Characters" title="Main/Characters">Characters</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/CharactersAsDevice" title="Main/CharactersAsDevice">Characters As Device</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Dialogue" title="Main/Dialogue">Dialogue</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Motifs" title="Main/Motifs">Motifs</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/NarrativeDevices" title="Main/NarrativeDevices">Narrative Devices</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Paratext" title="Main/Paratext">Paratext</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Plots" title="Main/Plots">Plots</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Settings" title="Main/Settings">Settings</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Spectacle" title="Main/Spectacle">Spectacle</a></li>
</ul>
</li>
<li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Other Categories</a>
<ul>
<li><a href="/pmwiki/pmwiki.php/Main/BritishTellyTropes" title="Main/BritishTellyTropes">British Telly</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/TheContributors" title="Main/TheContributors">The Contributors</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/CreatorSpeak" title="Main/CreatorSpeak">Creator Speak</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Creators" title="Main/Creators">Creators</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/DerivativeWorks" title="Main/DerivativeWorks">Derivative Works</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/LanguageTropes" title="Main/LanguageTropes">Language</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/LawsAndFormulas" title="Main/LawsAndFormulas">Laws And Formulas</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/ShowBusiness" title="Main/ShowBusiness">Show Business</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/SplitPersonalityTropes" title="Main/SplitPersonalityTropes">Split Personality</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/StockRoom" title="Main/StockRoom">Stock Room</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/TropeTropes" title="Main/TropeTropes">Trope</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/Tropes" title="Main/Tropes">Tropes</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/TruthAndLies" title="Main/TruthAndLies">Truth And Lies</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/TruthInTelevision" title="Main/TruthInTelevision">Truth In Television</a></li>
</ul>
</li>
<li class="first_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Topical Tropes</a>
<ul>
<li><a href="/pmwiki/pmwiki.php/Main/BetrayalTropes" title="Main/BetrayalTropes">Betrayal</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/CensorshipTropes" title="Main/CensorshipTropes">Censorship</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/CombatTropes" title="Main/CombatTropes">Combat</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/DeathTropes" title="Main/DeathTropes">Death</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/FamilyTropes" title="Main/FamilyTropes">Family</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/FateAndProphecyTropes" title="Main/FateAndProphecyTropes">Fate And Prophecy</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/FoodTropes" title="Main/FoodTropes">Food</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/HolidayTropes" title="Main/HolidayTropes">Holiday</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/MemoryTropes" title="Main/MemoryTropes">Memory</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/MoneyTropes" title="Main/MoneyTropes">Money</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/MoralityTropes" title="Main/MoralityTropes">Morality</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/PoliticsTropes" title="Main/PoliticsTropes">Politics</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/ReligionTropes" title="Main/ReligionTropes">Religion</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/SchoolTropes" title="Main/SchoolTropes">School</a></li>
</ul>
</li>
</ul>
</div>
<div class="resources_dropdown">
<a href="javascript:void(0);" onclick="second_double_dropdown(); return false;" id="resources_dropdown"><span class="new_blue blue">Resources</span><i class="fa fa-angle-down"></i></a>
<ul id="second_main_dropdown" class="padded font-s" itemscope itemtype="http://schema.org/SiteNavigationElement">
<li class="second_dropdown"><a href="#test" data-click-toggle="active">Tools</a>
<ul>
<li><a href="/pmwiki/pmwiki.php/Administrivia/IttyBittyWikiTools">Wiki Tools</a></li>
<li><a href="/pmwiki/cutlist.php">Cut List</a></li>
<li><a href="/pmwiki/changes.php">New Edits</a></li>
<li><a href="/pmwiki/recent_edit_reasons.php">Edit Reasons</a></li>
<li><a href="/pmwiki/isolated_pages.php">Isolated Pages</a></li>
<li><a href="/pmwiki/launches.php">Launches</a></li>
<li><a href="/pmwiki/img_list.php">Images List</a></li>
<li><a href="/pmwiki/recent_videos.php">Recent Videos</a></li>
<li><a href="/pmwiki/crown_activity.php">Crowner Activity</a></li>
<li><a href="/pmwiki/no_types.php">Un-typed Pages</a></li>
<li><a href="/pmwiki/page_type_audit.php">Recent Page Type Changes</a></li>
<li><a href="/pmwiki/changelog.php">Changelog</a></li>
</ul>
</li>
<li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Templates</a>
<ul>
<li><a href="/pmwiki/pmwiki.php/Main/TropeEntryTemplate">Trope Entry</a></li>
<li><a href="/pmwiki/pmwiki.php/Main/ProgramEntryTemplate">Works</a></li>
<li><a href="/pmwiki/pmwiki.php/Administrivia/CharacterSheetTemplate">Character Sheet</a></li>
<li><a href="/pmwiki/pmwiki.php/Administrivia/PlayingWithWikiTemplate">Playing With</a></li>
<li><a href="/pmwiki/pmwiki.php/FanficRecs/TemplatePageForNewFandomRecommendations">Fandom</a></li>
</ul>
</li>
<li class="second_dropdown"><a href="javascript:void(0);" data-click-toggle="active">Tips</a>
<ul>
<li><a href="/pmwiki/pmwiki.php/Administrivia/CreatingNewRedirects">Creating New Redirects</a></li>
<li><a href="/pmwiki/pmwiki.php/Administrivia/Crosswicking">Cross Wicking</a></li>
<li><a href="/pmwiki/pmwiki.php/Administrivia/TipsForEditing">Tips for Editing</a></li>
<li><a href="/pmwiki/pmwiki.php/Administrivia/TextFormattingRules">Text Formatting Rules</a></li>
<li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesGlossary">Glossary</a></li>
<li><a href="/pmwiki/pmwiki.php/Administrivia/EditReasonsAndWhyYouShouldUseThem">Edit Reasons</a></li>
<li><a href="/pmwiki/pmwiki.php/Administrivia/HandlingSpoilers">Handling Spoilers</a></li>
<li><a href="/pmwiki/pmwiki.php/Administrivia/WordCruft">Word Cruft</a></li>
</ul>
</li>
<li class="second_dropdown"><a href="/pmwiki/query.php?type=bug">Report Bug</a></li>
<li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=renames">Trope Repair Shop</a></li>
<li class="second_dropdown"><a href="/pmwiki/conversations.php?topic=images">Image Pickin'</a></li>
</ul>
</div>
</div>
<div id="asteri-sidebar" style="display:none">
<p style="margin-top: 20px;" class="sidebar-item-title" data-title="Advertisement">Advertisement:</p>
<div id="asteri_cont"></div>
</div>
<script>
//asteri enabled
if((tvtropes_config.asteri_stream_enabled || tvtropes_config.get_asteri_stream == 'live')) {
//aster stream currently live and not a logged-in troper
if(!tvtropes_config.is_logged_in && cookies.read('asteri_event_active') != '') {
document.getElementById('asteri-sidebar').style.display="";
}
}
</script>
</div>
<script>
</script>
</div>
</div>
<div id="action-bar-bottom" class="action-bar tablet-off">
<a href="#top-of-page" class="scroll-to-top dead-button" onclick="$('html, body').animate({scrollTop : 0},500);">Top</a>
</div>
</div> <footer id="main-footer">
<div id="main-footer-inner">
<div class="footer-left">
<a href="/" class="img-link"><img data-src="/img/tvtropes-footer-logo.png" alt="TV Tropes" class="logo_image lazy-image" title="TV Tropes" /></a>
<form action="index.html" id="cse-search-box-mobile" class="navbar-form newsletter-signup validate modal-replies" name="" role="" data-ajax-get="/ajax/subscribe_email.php">
<button class="btn-submit newsletter-signup-submit-button" type="submit" id="subscribe-btn"><i class="fa fa-paper-plane"></i></button>
<input id="subscription-email" type="text" class="form-control" name="q" size="31" placeholder="Subscribe" value="" validate-type="email">
</form>
<ul class="social-buttons">
<li><a class="btn fb" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-facebook']);" href="https://www.facebook.com/tvtropes"><i class="fa fa-facebook"></i></a></li>
<li><a class="btn tw" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-twitter']);" href="https://www.twitter.com/tvtropes"><i class="fa fa-twitter"></i></a> </li>
<li><a class="btn rd" target="_blank" onclick="_gaq.push(['_trackEvent', 'btn-social-icon', 'click', 'btn-reddit']);" href="https://www.reddit.com/r/tvtropes"><i class="fa fa-reddit-alien"></i></a></li>
</ul>
</div>
<hr/>
<ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement">
<li><h4 class="footer-menu-header">TVTropes</h4></li>
<li><a href="/pmwiki/pmwiki.php/Main/Administrivia">About TVTropes</a></li>
<li><a href="/pmwiki/pmwiki.php/Administrivia/TheGoalsOfTVTropes">TVTropes Goals</a></li>
<li><a href="/pmwiki/pmwiki.php/Administrivia/TheTropingCode">Troping Code</a></li>
<li><a href="/pmwiki/pmwiki.php/Administrivia/TVTropesCustoms">TVTropes Customs</a></li>
<li><a href="/pmwiki/pmwiki.php/JustForFun/TropesOfLegend">Tropes of Legend</a></li>
<li><a href="/pmwiki/ad-free-subscribe.php">Go Ad-Free</a></li>
</ul>
<hr/>
<ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement">
<li><h4 class="footer-menu-header">Community</h4></li>
<li><a href="/pmwiki/query.php?type=att">Ask The Tropers</a></li>
<li><a href="/pmwiki/tlp_activity.php">Trope Launch Pad</a></li>
<li><a href="/pmwiki/query.php?type=tf">Trope Finder</a></li>
<li><a href="/pmwiki/query.php?type=ykts">You Know That Show</a></li>
<li><a href="/pmwiki/lbs.php" data-modal-target="login">Live Blogs</a></li>
<li><a href="/pmwiki/query.php?type=wl">Wishlist</a></li>
<li><a href="/pmwiki/review_activity.php">Reviews</a></li>
<li><a href="/pmwiki/topics.php">Forum</a></li>
</ul>
<hr/>
<ul class="footer-menu" itemscope itemtype="http://schema.org/SiteNavigationElement">
<li><h4 class="footer-menu-header">Tropes HQ</h4></li>
<li><a href="/pmwiki/about.php">About Us</a></li>
<li><a href="/pmwiki/contact.php">Contact Us</a></li>
<li><a href="/pmwiki/query.php?type=bug">Report Bug</a></li>
<li><a href="/pmwiki/dmca.php">DMCA Notice</a></li>
<li><a href="/pmwiki/privacypolicy.php">Privacy Policy</a></li>
</ul>
</div>
<div id="desktop-on-mobile-toggle" class="text-center gutter-top gutter-bottom tablet-on">
<a href="/pmwiki/switchDeviceCss.php?mobileVersion=1" rel="nofollow">Switch to <span class="txt-desktop">Desktop</span><span class="txt-mobile">Mobile</span> Version</a>
</div>
<div class="legal">
<p>TVTropes is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. <br>Permissions beyond the scope of this license may be available from <a xmlns:cc="http://creativecommons.org/ns#" href="mailto:[email protected]" rel="cc:morePermissions"> [email protected]</a>.</p>
<br>
<div class="privacy_wrapper">
</div>
</div>
</footer>
<style>
div.fc-ccpa-root {
position: absolute !important;
bottom: 93px !important;
margin: auto !important;
width: 100% !important;
z-index: 9999 !important;
overflow: hidden !important;
}
.fc-ccpa-root .fc-dns-dialog .fc-dns-link p{
outline: none !important;
text-decoration: underline !important;
font-size: .7em !important;
font-family: sans-serif !important;
}
.fc-ccpa-root .fc-dns-dialog .fc-dns-link .fc-button-background {
background: none !important;
}
</style>
<div id="_pm_videoViewer" class="full-screen">
<a href="#close" class="close" id="_pm_videoViewer-close"></a>
<div class="_pmvv-body">
<div class="_pmvv-vidbox">
<div id="overlay_outer_player_max">
<div id="overlay_outer_player_wrapper">
<div id="tvtropes_overlay_player"
data-video-id="tvtropes-videos-cqb3qe"
data-video-image="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cqb3qe.jpg"
data-video-title="Here, There, Everyfuckingwhere"
data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/cqb3qe_640x360p_qvbr.mp4"
data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/cqb3qe.mpd"
data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/cqb3qe.m3u8"
data-small-player="never"
data-track-events="1"
data-do-not-loop="1"
data-starting-quality="1"
data-autoplay="true">
</div>
</div>
</div>
<div class="_pmvv-vidbox-desc">
<h1 id="overlay-title">Here, There, Everyfuckingwhere</h1>
<p id="overlay-descrip" class="_pmvv-vidbox-descTxt">
"He's here, he's there, he's every-fucking-where! Roy Kent! Roy Kent!" Legendary but aging football captain Roy Kent is cheered by the crowd and fans watching elsewhere as he gets off the pitch for what might be the last time. </p>
<div class="rating-row" data-video-id="cqb3qe" >
<input type="hidden" name="is_logged_in" value="0" >
<p>How well does it match the trope?</p>
<div id="star-rating-group">
<div class="trope-rate">
<input type="radio" id="lamp5" name="rate" value="5" />
<label for="lamp5" title="Absolutely">★</label>
<input type="radio" id="lamp4" name="rate" value="4" />
<label for="lamp4" title="Yes">★</label>
<input type="radio" id="lamp3" name="rate" value="3" />
<label for="lamp3" title="Kind of">★</label>
<input type="radio" id="lamp2" name="rate" value="2" />
<label for="lamp2" title="Not really">★</label>
<input type="radio" id="lamp1" name="rate" value="1" />
<label for="lamp1" title="No">★</label>
</div>
<div id="star-rating-total">
5 (7 votes)
</div>
</div>
</div>
<div class="example-media-row">
<div class="example-overlay">
<p>Example of:</p>
<div id="overlay-trope">Main / CrowdChant</div>
</div>
<div class="media_second_wrapper">
<div class="media-sources-overlay example-overlay">
<p>Media sources:</p>
<div id="overlay-media"></div>
</div>
<div class="example-overlay">
<div id="secondary_tropes_row"></div>
<div id="overlay-second"></div>
</div>
</div>
</div>
<p class="_pmvv-vidbox-stats text-right font-s" style="padding-top:8px; border-top: solid 1px rgba(255,255,255,0.2)">
<!-- <i class="fa fa-eye"></i> 11,241-->
<a href="#video-feedback" class="float-right"
data-modal-target="login"
>Report</a>
</p>
</div>
</div>
</div>
<div class="_pmvv-foot">
<div class="_pmvv-foot-scrollwrapper">
<a href="#video-link"
data-video-id="cqb3qe"
data-vimeo-id=""
data-video-descrip="&quot;He's here, he's there, he's every-fucking-where! Roy Kent! Roy Kent!&quot; Legendary but aging football captain Roy Kent is cheered by the crowd and fans watching elsewhere as he gets off the pitch for what might be the last time."
data-video-title="Here, There, Everyfuckingwhere"
data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/cqb3qe_640x360p_qvbr.mp4"
data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/cqb3qe.mpd"
data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/cqb3qe.m3u8"
data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cqb3qe.jpg"
data-video-trope="Main/CrowdChant"
data-video-tropename="Crowd Chant"
data-video-approval="APPROVED"
data-video-troper-rating=""
data-video-average-rating="5.00"
data-video-rating-count="7"
data-video-media-sources="Recap/TedLassoS1E10TheHopeThatKillsYou,Series/TedLasso"
class="video-launch-link video-overlay-link video-background-image lazy-image"
data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/cqb3qe.jpg">
<p><span class="bold">Here, There, Ev...</span></p>
</a>
<a href="#video-link"
data-video-id="2l466v"
data-vimeo-id=""
data-video-descrip="Roy busts his knee tackling Jamie and has to walk off the field. The commentators note that at his age, he is unlikely to recover from that, and it proves to be his last game."
data-video-title="The Great Roy Kent"
data-video-url="https://d1w6li7s85ibls.cloudfront.net/qvbr/2l466v_640x360p_qvbr.mp4"
data-mpd-url="https://d1w6li7s85ibls.cloudfront.net/dash/2l466v.mpd"
data-hls-url="https://d1w6li7s85ibls.cloudfront.net/hls/2l466v.m3u8"
data-video-thumbnail="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2l466v.jpg"
data-video-trope="Main/CareerEndingInjury"
data-video-tropename="Career-Ending Injury"
data-video-approval="APPROVED"
data-video-troper-rating=""
data-video-average-rating="5.00"
data-video-rating-count="4"
data-video-media-sources="Recap/TedLassoS1E10TheHopeThatKillsYou,Series/TedLasso"
class="video-launch-link video-overlay-link video-background-image lazy-image"
data-src="https://static.tvtropes.org/trope_videos_transcoded/images/sd/2l466v.jpg">
<p><span class="bold">The Great Roy Kent</span></p>
</a>
</div>
</div>
</div>
<script type="text/javascript">
var cleanCreativeEnabled = "";
var donation = "";
var live_ads = "1";
var img_domain = "https://static.tvtropes.org";
var snoozed = cookies.read('snoozedabm');
var snoozable = "";
var elem = document.createElement('script');
elem.async = true;
elem.src = 'https://assets.tvtropes.org/design/assets/bundle.js?rev=9c76350f0dedcc812ef2a3bb38db7d3467c2d023';
elem.onload = function() {
}
document.getElementsByTagName('head')[0].appendChild(elem);
</script>
<script type="text/javascript">
function send_analytics_event(user_type, donation){
// if(user_type == 'uncached' || user_type == 'cached'){
// ga('send', 'event', 'caching', 'load', user_type, {'nonInteraction': 1});
// return;
// }
var event_name = user_type;
if(donation == 'true'){
event_name += "_donation"
}else if(typeof(valid_user) == 'undefined'){
event_name += "_blocked"
}else if(valid_user == true){
event_name += "_unblocked";
}else{
event_name = "_unknown"
}
ga('send', 'event', 'ads', 'load', event_name, {'nonInteraction': 1});
}
send_analytics_event("guest", "false");
</script>
<script>
ga('send', 'event', 'ab_test_type', "1", 'ab_testing', {'nonInteraction': 1});
</script>
<!-- Quantcast Tag -->
<script type="text/javascript">
window._qevents = window._qevents || [];
(function() {
var elem = document.createElement('script');
elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js";
elem.async = true;
elem.type = "text/javascript";
var scpt = document.getElementsByTagName('script')[0];
scpt.parentNode.insertBefore(elem, scpt);
})();
window._qevents.push({
qacct:"p-mEzuYq24VEJ-3"
});
</script>
<noscript>
<div style="display:none;">
<img src="//pixel.quantserve.com/pixel/p-mEzuYq24VEJ-3.gif" border="0" height="1" width="1" alt="Quantcast"/>
</div>
</noscript>
<!-- End Quantcast tag -->
</body>
</html>
|