File size: 75,757 Bytes
8630a56 |
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 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 |
{
"segments": {
"0": [
0.0,
7.12,
"their feet here the competitive juices are flowing again they played some really cohesive football at"
],
"1": [
7.12,
14.96,
"times in the first half and whilst they had that momentary wobble they've broadly speaking"
],
"2": [
14.96,
19.36,
"been in charge so Swansea have it all to do and here's Montero."
],
"3": [
22.08,
28.08,
"Here's Ivanovic and then he had his ankle tapped and the first free kick of the second half is a"
],
"4": [
28.08,
34.16,
"Swansea free kick opportunity I think Montero provides the biggest threat for Swansea"
],
"5": [
34.8,
40.64,
"IU's been bright and lively obviously has got his goal so that they do have a an attacking threat"
],
"6": [
41.2,
45.68,
"I think if they're going to have any success get Montero high up the pitch"
],
"7": [
45.68,
47.6,
"get him the ball and let him run at Ivanovic"
],
"8": [
47.6,
54.96,
"Sikkensen is capable from this range, Jonjo Shelby likewise"
],
"9": [
60.64,
66.72,
"Sikkensen it was he scored the winner at Old Trafford in the opening day of last season"
],
"10": [
70.08,
73.92,
"an impact perhaps of a similar type here at the home of the champions"
],
"11": [
74.0,
80.64,
"Sikkensen it's looked up off the wall and Swansea have a corner"
],
"12": [
82.88,
86.56,
"didn't quite get the same fortune as Chelsea got in the first half and that"
],
"13": [
87.12,
92.96,
"Willian shot deflecting off Hernandez and looping into the far corner he's got an exciting year"
],
"14": [
92.96,
97.36,
"ahead Gauthi Sikkensen Iceland look as though they're going to qualify for Euro 2016 their"
],
"15": [
97.36,
99.84,
"first major international tournament"
],
"16": [
102.96,
109.68,
"Shelby's ball in, Gomis can't find space there was just nowhere to go and Oster scrapes it away"
],
"17": [
112.4,
116.4,
"second third real good chance of Baftini-Gomis just hesitated yet again"
],
"18": [
116.4,
119.76,
"terrific from Montero against Ivanovic behind for another corner"
],
"19": [
121.44,
125.44,
"Ivanovic did all he could to keep his hands out the way at some"
],
"20": [
126.08,
127.28,
"personal expense I think"
],
"21": [
131.36,
138.24,
"Diego Costa misses that first opportunity and Gomis he just hesitates doesn't quite make his"
],
"22": [
138.24,
142.88,
"mind up early enough and that gives the Chelsea defenders just that fraction of a second to make"
],
"23": [
142.88,
149.44,
"a block good start to the second half from Swansea Shelby's corner"
],
"24": [
150.16,
157.04,
"headed over by Fernandez who is still to score his first goal for the Swans having in the first"
],
"25": [
157.04,
163.84,
"half notched one inadvertently against them well that's a couple of chances from set pieces that"
],
"26": [
163.84,
169.76,
"Swansea have had they had one in the first half Ivanovic got left wanting it Gomis got across"
],
"27": [
169.76,
175.28,
"him at the near post unlike Chelsea so far defensively they've been they've given away"
],
"28": [
175.76,
181.04,
"probably four or five half chances which is very unlike them"
],
"29": [
181.84,
191.28,
"there is just just a hint of vulnerability which is part of what makes the contest so engaging"
],
"30": [
191.28,
191.92,
"Fabregas"
],
"31": [
194.88,
198.16,
"I think you see that's in Iceland there are a lot of players here who are hoping"
],
"32": [
198.16,
203.52,
"that this will be the first day of an 11-month season which might climax"
],
"33": [
204.08,
211.84,
"in their national colours in Paris 10th 11th of July with the final of Euro 2016"
],
"34": [
213.92,
216.08,
"it's one of those marathon years"
],
"35": [
219.2,
219.7,
"Gomis"
],
"36": [
222.32,
223.92,
"Ayoub Shelby"
],
"37": [
228.24,
228.88,
"Montero"
],
"38": [
234.24,
234.74,
"Taylor"
],
"39": [
238.32,
238.82,
"Cork"
],
"40": [
241.36,
246.08,
"Montero around Ivanovic but not past Fabregas and it's another Swansea corner"
],
"41": [
249.52,
253.04,
"another opportunity to whip this ball into the danger area"
],
"42": [
253.92,
257.44,
"Chelsea normally so strong so powerful and dominant from set pieces"
],
"43": [
258.16,
259.84,
"have looked at a little bit tentative"
],
"44": [
260.48,
264.08,
"wretched on by a typically vocal Welsh gathering behind that goal"
],
"45": [
266.08,
267.68,
"Swansea passionately followed"
],
"46": [
270.48,
272.96,
"Shelby to the near post he hit the near post"
],
"47": [
272.96,
275.52,
"Sigurdsson followed up and crashed it into the crowd"
],
"48": [
278.96,
283.28,
"I'd like to see that again before establishing whether Courtois actually had it covered but"
],
"49": [
283.36,
287.12,
"it was certainly a heart and mouth moment for the Chelsea keeper"
],
"50": [
288.56,
292.8,
"I think it just caught everybody by surprise that the ball didn't look like it was particularly"
],
"51": [
292.8,
297.12,
"well struck and as it almost came into the box it looked like it was almost in slow motion"
],
"52": [
302.88,
304.08,
"free kick against Costa"
],
"53": [
307.12,
310.48,
"that's a wobbly first five minutes of the second half for the"
],
"54": [
311.28,
313.28,
"Barclays Premier League champions at home here"
],
"55": [
314.0,
319.04,
"and it's Ayoub testing Azpilicueta leaning away from Matic"
],
"56": [
322.88,
325.36,
"Cork and again Jack Cork"
],
"57": [
329.04,
330.08,
"tipped over the hazard"
],
"58": [
333.76,
338.16,
"but again players jumping up quite quickly not really making anything of"
],
"59": [
338.16,
341.76,
"any of the challenges or any of the fouls so far let's hope this is"
],
"60": [
341.76,
344.24,
"really a case in point and continues for the rest of the season"
],
"61": [
346.56,
349.2,
"Shelby too much loft for Corbis"
],
"62": [
352.56,
358.4,
"wasted this time from Shelby but this is the corner it comes in Costa's there again"
],
"63": [
359.04,
364.72,
"see the post that it hits I'm not quite sure if that had been six inches further to the right that"
],
"64": [
365.28,
368.16,
"Courtois would have been able to get there the fact that he was diving backwards"
],
"65": [
368.72,
373.6,
"that was deliberate no I don't think the way that the ball came in it looked like a little"
],
"66": [
373.6,
379.76,
"bit of a miss it didn't look like he hit it particularly cleanly Costa, Willian"
],
"67": [
382.8,
392.16,
"heads up nicely for Taylor, Montero, Corbis, Montero, Sigurdsson, Shelby"
],
"68": [
393.12,
396.64,
"lifted over the top for Corbis, flag has stayed down it's back for Corbis"
],
"69": [
397.44,
404.72,
"met by Courtois, penalty I think yellow card before he pulls it out of his pocket it's red"
],
"70": [
407.28,
413.68,
"Thibaut Courtois walks, champions down to 10, Mourinho with a problem and a frown"
],
"71": [
413.68,
421.76,
"Swansea with a penalty, game changer third time that Gomis has got him behind Terry and Cahill"
],
"72": [
422.24,
428.0,
"he's just peeled off a couple of times lost his man and they're running behind it just see here"
],
"73": [
428.0,
433.84,
"he's just got him behind in between the two Cahill doesn't know where he is, Ivanovic puts his hand"
],
"74": [
433.84,
439.6,
"up for offside I don't think that's a goal scoring opportunity it may even be outside the box I was"
],
"75": [
439.6,
445.84,
"going to say if the line decision is an important one in or out of the box it's marginal I think he"
],
"76": [
445.84,
452.16,
"has a touch away from goal my understanding of the law is the ball has to be moving goalwards"
],
"77": [
452.16,
457.44,
"denying a clear and obvious goal scoring opportunity I'm not sure with his next touch"
],
"78": [
458.8,
461.84,
"that that would have been a goal scoring opportunity the fact that he'd gone wide"
],
"79": [
463.6,
467.84,
"melodrama at the home of the champions on the opening day of the Barclays Premier League season"
],
"80": [
467.84,
474.32,
"Gomis is going to have to wait here whilst Chavisie establish who is going to give way"
],
"81": [
474.88,
481.12,
"in order to afford Azmir Begovic a Chelsea debut meantime John Terry"
],
"82": [
482.56,
488.16,
"has become engaged in conversation with the official Harry Leonard"
],
"83": [
489.84,
492.8,
"and the Chelsea captain has been booked"
],
"84": [
496.48,
497.92,
"Oskar is the sacrifice"
],
"85": [
498.88,
503.44,
"and here is Azmir Begovic who finished last year with Stoke City on the wrong end of a"
],
"86": [
505.04,
507.84,
"on the right end of a 6-1 thrashing of Liverpool"
],
"87": [
509.84,
516.48,
"he was in the Stoke side that beat Swansea last October and conceded a Wilfrid Boni penalty"
],
"88": [
517.52,
522.4,
"what a debut for Azmir Begovic he's either going to be a hero or picking the ball at the back of the net"
],
"89": [
528.24,
540.8,
"it's been a long wait for Gomis as well a real test of nerves what a bow for Azmir Begovic"
],
"90": [
541.68,
546.48,
"what a big moment for Baffa Gomis who equalizes for Swansea"
],
"91": [
548.8,
555.76,
"now then champions what have you got 11 against 10 Gomis has Swansea level"
],
"92": [
556.72,
558.72,
"high drama on the bridge"
],
"93": [
561.04,
569.28,
"on opening day cool casual penalty didn't change his mind Begovic guesses the wrong way not an"
],
"94": [
569.28,
572.88,
"awful lot you can do about that you know coming straight on but this is the problem this has"
],
"95": [
572.88,
578.08,
"happened a couple of times it's Willian that is deep playing everybody on the side but that's"
],
"96": [
578.08,
579.92,
"the third time that Gomis has got in"
],
"97": [
580.56,
584.24,
"now you'll remind me the law the line is inside or outside"
],
"98": [
584.24,
588.24,
"I didn't see this is it that's why I'm reminded of the law"
],
"99": [
592.24,
593.44,
"well here is Gomis"
],
"100": [
596.4,
597.92,
"are you Gomis"
],
"101": [
598.88,
600.56,
"are you Gomis"
],
"102": [
603.44,
610.32,
"win in the Swansea sale Norton Cahill away Norton again are you"
],
"103": [
619.36,
625.68,
"but I must say before discussing the color of the card my first query was over the line decision"
],
"104": [
626.24,
628.16,
"Michael Oliver seemed immediately sure"
],
"105": [
629.52,
630.0,
"Ivanovic"
],
"106": [
632.24,
635.04,
"Chelsea vulnerable having bossed the first half here"
],
"107": [
641.44,
641.92,
"William"
],
"108": [
644.72,
647.44,
"Fabregas high from Fernandez"
],
"109": [
647.92,
652.64,
"William Fabregas and out walks Fernandez"
],
"110": [
655.2,
659.2,
"Gomis I expect to hear an awful lot about penalties in the press conferences from"
],
"111": [
659.2,
664.08,
"from both managers of course the one that wasn't given on Diego Costa but we only really got to see"
],
"112": [
664.72,
669.36,
"twice it wasn't shown an awful lot even on the replays and then obviously the"
],
"113": [
670.32,
672.32,
"one that was just given against Thibaut Courtois"
],
"114": [
675.28,
681.12,
"Montero didn't locate Sigurdsson now if you're in the Swansea dugout now"
],
"115": [
681.76,
685.68,
"Danny Mills what are you thinking are you thinking be brave this is a game we've got"
],
"116": [
685.68,
691.92,
"to have the guts to go and try and win challenge on Costa no free kick Williams got away"
],
"117": [
692.16,
697.28,
"this is a game we've got to have the guts to go and try and win challenge on Costa no free kick"
],
"118": [
698.56,
702.08,
"Williams got away with that Michael Oliver is the villain of the piece here"
],
"119": [
705.12,
710.8,
"I think if you're sat there now you two two is a fantastic result away to Chelsea I think you"
],
"120": [
710.8,
716.4,
"have to play a little bit cagey you know you're against the 10 men you know they have players"
],
"121": [
716.4,
722.32,
"that can hurt you they have a very very dangerous players you play tight and you wait for your"
],
"122": [
722.32,
726.88,
"opportunity you will get a couple of opportunities you just have to wait and be patient don't chase"
],
"123": [
726.88,
736.24,
"the game so what about Chelsea do they dare to chase the game or do they wait their moment because"
],
"124": [
736.24,
742.56,
"they'll get a moment too oh they will the Mourinho will tell you you cannot win the Premier League"
],
"125": [
742.56,
748.16,
"in August but if you don't have a very good August you can go a long long way to not winning"
],
"126": [
748.16,
752.48,
"it you know and that's the problem I remember this is just a draw so at the moment is no big"
],
"127": [
752.48,
757.84,
"problem at the moment for Chelsea and Harry Leonard there the assistant on the far side is the one"
],
"128": [
759.44,
764.48,
"who may have whispered in Michael Oliver's ear in respect of the line decision which side of"
],
"129": [
764.48,
769.04,
"the line was it penalty or free kick Michael Oliver will have had to decide the color of the card"
],
"130": [
773.44,
780.56,
"Montero leading away from Ivanovic and having a crack and Degovic makes his first Chelsea save"
],
"131": [
783.76,
792.0,
"Gomis coached out uncertainly by Fabregas recycled here for Sigurdsson set for Shelby"
],
"132": [
793.84,
795.2,
"he wants to take on Terry"
],
"133": [
795.84,
800.56,
"Terry stands up we're just talking about the referee obviously John Terry got booked for his"
],
"134": [
801.2,
807.28,
"protests in that Gary Monk would be delighted in the first half he wasn't 100 percent certain"
],
"135": [
807.28,
812.32,
"about giving the penalty on Costa he didn't give it this one he gave so you have to think that the"
],
"136": [
812.32,
819.12,
"referee was 100 percent sure in by Shelby Swansea have never taken a Premier League point at Stanford"
],
"137": [
819.68,
822.08,
"84 lost four here Costa"
],
"138": [
824.48,
825.04,
"William"
],
"139": [
827.36,
831.6,
"that's a really good committed block by Jack Corb"
],
"140": [
850.08,
855.6,
"so"
],
"141": [
864.96,
872.16,
"just over 30 minutes left Mourinho must start to be thinking about when do I make the substitution"
],
"142": [
872.16,
876.0,
"who do I bring on do I bring on Remy coming off Falcao putting them both on"
],
"143": [
876.96,
882.4,
"no that's what will be going through his mind right now this is his 99th home game"
],
"144": [
882.4,
886.56,
"in the Premier League with Chelsea shows a Mourinho he's lost one of them"
],
"145": [
888.72,
890.48,
"he is certainly vulnerable now"
],
"146": [
895.12,
899.6,
"the game has caused Chelsea to take on a certain fragility"
],
"147": [
900.08,
908.08,
"it is tantalizingly poised Montero we've got nine months of this ahead we'll settle for it"
],
"148": [
912.88,
918.08,
"lifted back in by Williams one area by Azpilicueta came to Fernandez"
],
"149": [
918.08,
922.48,
"Nick Ford for Cork who's left it for Sigurdsson lovely take and turn from Gopi Sigurdsson"
],
"150": [
925.04,
926.08,
"now Montero"
],
"151": [
929.6,
932.88,
"Jefferson Montero and Pegovic got big in his near post"
],
"152": [
935.2,
940.8,
"great opportunity for Montero in the end a decent shot I think he should have hit it early go now"
],
"153": [
940.8,
946.56,
"left foot drive it towards the far post it gives Begovic the opportunity to set himself"
],
"154": [
946.56,
948.96,
"and then very difficult to squeeze that in at the near post"
],
"155": [
949.28,
954.72,
"Shelby's corner and Pegovic was nearly outfoxed by another Shelby in swinger"
],
"156": [
955.84,
961.28,
"I think Shelby's clearly trying to put it right under the bar on the goalkeeper's head"
],
"157": [
961.92,
966.8,
"players tumbling I don't think he's going for goal Shelby this time for Cork"
],
"158": [
968.16,
972.8,
"drifted up towards Fernandez lifted in towards Ayew and Begovic takes charge"
],
"159": [
972.8,
978.56,
"Chelsea have got plenty of time no need for them to panic just keep playing their usual game"
],
"160": [
978.56,
982.0,
"yes they might be a man down but they have the talent they have the ability"
],
"161": [
982.0,
984.0,
"to still create and eke out chances"
],
"162": [
986.56,
990.72,
"on the day of the game and the day of the game and the day of the game"
],
"163": [
990.72,
996.24,
"Chelsea have got plenty of time no need for them to panic just keep playing their usual game"
],
"164": [
997.12,
999.04,
"to still create and eke out chances"
],
"165": [
1001.84,
1007.92,
"on the day the Premier League soap opera resumes we have"
],
"166": [
1008.8,
1014.24,
"the first really substantial plot twist here Shelby"
],
"167": [
1014.24,
1016.24,
"Begovic"
],
"168": [
1018.4,
1019.36,
"Norton for Ayew"
],
"169": [
1022.0,
1023.44,
"and you can hear the Welsh voices"
],
"170": [
1028.64,
1031.2,
"resonating from out of the valley in the shed"
],
"171": [
1033.04,
1036.24,
"Montero, Sigurdsson"
],
"172": [
1036.24,
1053.76,
"Fernandez, Cork, Sigurdsson, drifted up to Gomez who got it all wrong but he's believing now"
],
"173": [
1054.32,
1057.84,
"on another day might have had a hat trick he does have the goal that's broken his duck for"
],
"174": [
1057.84,
1061.92,
"the year now from the spot but again look it's just running off the back this is the goal"
],
"175": [
1062.72,
1067.04,
"or the opportunity that leads to the penalty it just runs off the back of place that's the third"
],
"176": [
1067.04,
1073.68,
"time he's done that it's very very difficult to tell whether that's inside or that's outside"
],
"177": [
1073.68,
1077.6,
"look at the referee's position the referee's got no chance of spotting that and i think look the"
],
"178": [
1077.6,
1083.52,
"ball is going away from goal Cahill is coming back around that's why i think it's a yellow card"
],
"179": [
1084.32,
1089.92,
"but the big debate is going to be whether it was inside or whether it was outside by the time we"
],
"180": [
1089.92,
1097.36,
"get technology in slow motions and virtual reality lines we might have a clear view but if"
],
"181": [
1097.36,
1103.28,
"the referee and linesmen aren't 100 sure they can't give that but all fair play to Gomez did his job"
],
"182": [
1103.28,
1112.72,
"put the ball away. Montero, Gomez, Shelby, I tell you Michael Oliver has not had a quiet week he was"
],
"183": [
1112.72,
1119.28,
"in charge of a champions league qualifier in Norway on Tuesday they finished Malda 3, Dinamo Zagreb 3"
],
"184": [
1119.92,
1125.28,
"he gave three penalties and one red card and it's not got a whole lot quieter here"
],
"185": [
1126.32,
1128.16,
"he's clearly missed football over the summer"
],
"186": [
1134.96,
1138.48,
"just a tweak in Chelsea's formation they've effectively gone"
],
"187": [
1138.48,
1141.68,
"4-3-2 with Kostra and Hazard up front"
],
"188": [
1150.88,
1158.08,
"that's the money man thinking the supporter in chief Abramovich who expects to win at home"
],
"189": [
1158.08,
1166.72,
"Chelsea just do win at home nobody beat them here in the premier league last season only Bradford"
],
"190": [
1166.72,
1174.48,
"shockingly in the FA cup Ivanovic and Willian away by Fernandes who despite the blip of that"
],
"191": [
1175.12,
1178.8,
"slightly cruel own goal has looked essentially solid"
],
"192": [
1183.2,
1187.44,
"Ivanovic too much for Kostra but he'll be first to fetch"
],
"193": [
1190.8,
1196.0,
"it's bizarre how we think isn't it 2-2 Chelsea with two and up and we're almost talking like"
],
"194": [
1196.0,
1200.96,
"Chelsea have lost it already it's incredible you just don't expect them from that position to"
],
"195": [
1201.04,
1202.8,
"to lose another goal as our"
],
"196": [
1205.28,
1209.68,
"Matich for everything in sport certainly professional sport everything is relative"
],
"197": [
1209.68,
1216.08,
"to expectation and you just expect Chelsea to win here foul by Shelby"
],
"198": [
1221.2,
1222.8,
"Fabregas down"
],
"199": [
1231.92,
1234.8,
"Fabregas over the dead ball 25 minutes to play"
],
"200": [
1237.92,
1243.04,
"sun goes down over Stamford Bridge Fabregas plays it in Ivanovic for the header over"
],
"201": [
1248.88,
1252.72,
"so dangerous from his position brilliant ball in from Fabregas look at that"
],
"202": [
1252.72,
1256.32,
"almost four Chelsea players against one Swansea player"
],
"203": [
1257.28,
1261.28,
"Fernandes has absolutely no chance a little bit more quality from Ivanovic"
],
"204": [
1261.28,
1263.28,
"and that's 3-2 back in the league"
],
"205": [
1267.28,
1271.28,
"certainly one of those defenders who scores a goal for in the premier league last year as well as"
],
"206": [
1272.8,
1274.48,
"one in the league cup semi-final"
],
"207": [
1276.72,
1280.24,
"type champions league tie against Paris Saint-Germain in Paris"
],
"208": [
1281.28,
1286.08,
"it tends to score really important goals as well doesn't it you know not just the odd goal"
],
"209": [
1287.04,
1290.32,
"three or four a season whatever it may be but at crucial times"
],
"210": [
1292.16,
1294.0,
"North Cork Shelby"
],
"211": [
1295.84,
1304.0,
"and if Swansea got the pluck Shelby's inclined the shot hit Gomis if shot indeed it was"
],
"212": [
1305.92,
1311.76,
"taken back by Cork Sigurdsson Cork spooned wide for Montero"
],
"213": [
1312.32,
1314.72,
"Taylor Shelby"
],
"214": [
1317.68,
1324.72,
"toying with Fabregas neatly in for Taylor Gomis flags up"
],
"215": [
1327.12,
1330.72,
"was a very very late flag from the official"
],
"216": [
1333.2,
1337.76,
"he looked offside we'll see now on the replay whether it was or not"
],
"217": [
1338.64,
1340.72,
"Chelsea fans with well hearts and mouths for a moment"
],
"218": [
1342.72,
1348.16,
"I think he knew it's a half smile a sort of admission of guilt"
],
"219": [
1349.6,
1355.2,
"Harry Leonard has said he most rightly said gave himself a heartbeat a moment to think and be sure"
],
"220": [
1355.84,
1358.32,
"he's certainly been a bit of a sore loser"
],
"221": [
1358.4,
1359.36,
"admission of guilt"
],
"222": [
1360.72,
1366.16,
"Harry Leonard has said he most rightly said gave himself a heartbeat a moment to think and be sure"
],
"223": [
1366.88,
1369.84,
"he's certainly been in the game the assistant on that far side"
],
"224": [
1371.36,
1372.88,
"beyond question he got that one right"
],
"225": [
1381.2,
1386.0,
"no problem for Swansea here Jefferson Montero who's had as we mentioned in the first half a really"
],
"226": [
1386.96,
1390.4,
"good game went on the front foot and is feeling a bit of cramp"
],
"227": [
1391.52,
1394.4,
"tend to see that on the opening day especially when it's warm"
],
"228": [
1397.6,
1404.64,
"this is a guy who's had a busy summer played all three games for Ecuador in the Copa America"
],
"229": [
1405.84,
1407.12,
"went out the group stage"
],
"230": [
1411.36,
1412.16,
"took a bit of a hit"
],
"231": [
1412.64,
1414.16,
"and we've got quarter of the game to play"
],
"232": [
1421.68,
1424.64,
"if he does need to come off a natural replacement would be"
],
"233": [
1425.68,
1432.72,
"Wayne Routledge who missed the back end of last season needing some ankle surgery missed the last"
],
"234": [
1433.68,
1440.48,
"the last five games but uh Gary Monk can turn to him now"
],
"235": [
1444.16,
1451.76,
"and the word from the line is that indeed he may get his chance Chelsea are warming up their"
],
"236": [
1451.76,
1457.92,
"alternatives also Radamel Falcao is one of those"
],
"237": [
1458.64,
1464.48,
"just a quick clarification the line is inside the penalty area"
],
"238": [
1466.08,
1469.28,
"according to my research from the internet Ivanovic"
],
"239": [
1471.92,
1473.84,
"I believe we've got that right William"
],
"240": [
1476.48,
1478.48,
"away from Williams but not from Fernandes"
],
"241": [
1478.8,
1483.44,
"that makes me more inclined as it wasn't the time to believe it might just have been"
],
"242": [
1483.44,
1487.84,
"right to call that a penalty though there's still a long way short of certainty"
],
"243": [
1493.52,
1496.4,
"I think Jose might argue otherwise quite a bit"
],
"244": [
1496.4,
1499.2,
"I think he's got a bit of a problem with his feet"
],
"245": [
1499.28,
1500.32,
"way short of certainty"
],
"246": [
1506.24,
1508.4,
"I think Jose might argue otherwise quite"
],
"247": [
1509.12,
1515.92,
"Ivanovic with a hefty throw Cahill with a hefty challenge"
],
"248": [
1516.48,
1532.0,
"so here is the first swansea change and it is so Jefferson Montero giving way"
],
"249": [
1532.96,
1539.52,
"as pre-advertised to Wayne Routledge he's had the Ecuadorian a bit of a cure-all second game"
],
"250": [
1540.08,
1544.96,
"careless in possession at times in the first half but equally thrilling when he had the ball at his"
],
"251": [
1544.96,
1551.76,
"toes and was running at Ivanovic Routledge another who likes to skip at a full back and"
],
"252": [
1551.76,
1557.68,
"create a problem going forward he was very very good you know Ivanovic didn't really have an"
],
"253": [
1557.68,
1563.76,
"answer to his pace knocking the ball past him and running and I just wonder you know Gomes has got"
],
"254": [
1563.76,
1570.32,
"in two or three times behind Terry and Cahill Ivanovic you know has had one or two problems"
],
"255": [
1570.4,
1575.6,
"with the pace of Montero run at him is this just an opportunity for other sides to think you know"
],
"256": [
1575.6,
1579.84,
"this Chelsea back line is aging get the ball in behind them get them turned"
],
"257": [
1579.84,
1581.28,
"might just cause them a problem or two"
],
"258": [
1583.92,
1584.42,
"William"
],
"259": [
1589.04,
1589.54,
"that's hard"
],
"260": [
1589.54,
1590.04,
"up"
],
"261": [
1594.5,
1596.98,
"Morgan for Fabregas Williams continued his run"
],
"262": [
1603.38,
1609.14,
"Taylor got rid a little bit surprised there isn't a bit more movement on the Chelsea bench at the"
],
"263": [
1609.14,
1619.14,
"moment just lost their way a little bit I think maybe that we see Falcao before very long"
],
"264": [
1620.5,
1625.46,
"this was a fairly vigorous warm-up that's Pellegretti with the throw"
],
"265": [
1626.18,
1631.7,
"aimed at Costa flicked out by Shelby first involvement now for Routledge"
],
"266": [
1636.1,
1638.26,
"one from Taylor Fabregas space here for Gomes"
],
"267": [
1640.5,
1643.94,
"first time Chelsea really looked as though they were a player short of midfield"
],
"268": [
1643.94,
1650.42,
"Shelby Wayne Routledge Routledge stretched"
],
"269": [
1652.26,
1658.18,
"good save from Begovic but again just look it's Ivanovic he leaves his man he lets him run"
],
"270": [
1658.18,
1665.3,
"in behind and that gives Cahill a problem you know he's in the area he's one-on-one"
],
"271": [
1665.3,
1671.14,
"Routledge cuts back inside doesn't quite get enough in the shot but Chelsea at times defending"
],
"272": [
1671.7,
1675.62,
"hasn't been as clinical as we would usually expect"
],
"273": [
1686.9,
1689.62,
"Shelby"
],
"274": [
1690.82,
1691.62,
"Taylor"
],
"275": [
1691.62,
1702.5,
"Taylor"
],
"276": [
1704.5,
1711.38,
"Shelby nicely done Taylor Sigurdsson he's found the little pocket now"
],
"277": [
1711.46,
1720.82,
"out away from Fabregas but Cahill clear Fernandes Cork"
],
"278": [
1722.58,
1730.26,
"are you ahead of him and Gomes Cahill's header out"
],
"279": [
1730.26,
1737.14,
"Shelby"
],
"280": [
1738.9,
1746.26,
"once he's starting to find space Cahill away Terry away William on the run Costa up ahead of him"
],
"281": [
1746.26,
1751.86,
"Fabregas square as our square the other way Aidan Asar running at Taylor for Chelsea"
],
"282": [
1752.82,
1753.86,
"Asar"
],
"283": [
1756.1,
1759.94,
"belted against Fabianski who just stood his ground at the near post"
],
"284": [
1761.94,
1770.74,
"pretty much hit Fabianski rather a great save but problems for Swansea there was four on four"
],
"285": [
1775.54,
1778.18,
"there it is four on four great opportunity for Chelsea"
],
"286": [
1778.26,
1785.22,
"Hazard he's got Taylor one-on-one goes down the outside drives the ball goads I'm sure Fabianski"
],
"287": [
1785.22,
1790.02,
"knows too much about that hits him in the face in the end you have to say good save"
],
"288": [
1790.58,
1792.58,
"doesn't matter how as long as you keep it out"
],
"289": [
1798.18,
1798.66,
"William"
],
"290": [
1798.66,
1807.54,
"running at Taylor and Routledge setback for Ivanovic who hit it against Fabregas"
],
"291": [
1807.54,
1814.18,
"and behind and Chelsea far from throwing on Falcao in an attacking maneuver are looking"
],
"292": [
1814.18,
1820.9,
"to reinforce here defensively by sending on Kurt Zuma presumably to hold with field"
],
"293": [
1822.34,
1824.74,
"instead of Fabregas"
],
"294": [
1825.06,
1834.5,
"well I think what we are seeing now is the true Jose Mourinho 10 men two each"
],
"295": [
1834.5,
1839.14,
"he's just thinking you know what do not lose this game a point is not a problem"
],
"296": [
1840.18,
1844.26,
"controversial possible penalty I'll make the excuses for that whatever it may be"
],
"297": [
1845.46,
1849.86,
"but we've got a point it's not the end of the world I think that will what will be in Jose's"
],
"298": [
1849.86,
1856.02,
"thinking very interesting to see what's it is thinking next Sunday when of course they go to"
],
"299": [
1856.02,
1866.74,
"Manchester City through by Shelby Gomez is offside again be interesting to see how tight this decision"
],
"300": [
1866.74,
1873.62,
"is again Gomez is running off the back of people I think that's probably on the side"
],
"301": [
1875.14,
1878.42,
"I think Chelsea might find themselves very fortunate in that instance"
],
"302": [
1880.82,
1885.06,
"well he's certainly playing with the line after Timmy Gomez"
],
"303": [
1888.58,
1893.94,
"just mentioned Chelsea's next fixture because it is one of the first giant games of the"
],
"304": [
1893.94,
1901.3,
"Barclays Premier League season next Sunday up at the Etihad and habitually it's the sort of game"
],
"305": [
1901.3,
1905.86,
"that Mourinho has gone to as it were settling for the point he starts with and anything else is a"
],
"306": [
1905.86,
1911.22,
"bonus those big away games against United and City and Arsenal but if they were to drop two"
],
"307": [
1911.22,
1916.42,
"points here on the opening day I wonder whether that would affect his mindset of course there'll"
],
"308": [
1916.42,
1921.38,
"be no Thibaut Courtois, Degavich will keep goal, Jamal Blackman what assumes will be on the bench"
],
"309": [
1921.94,
1927.06,
"for Chelsea in the goalkeeping department I don't think it'll change Mourinho's mindset at all"
],
"310": [
1927.06,
1932.66,
"you know two points over two games yes he'll be disappointed but you can probably only lose"
],
"311": [
1933.22,
1938.66,
"four maybe five games if you're going to win the Premier League title Mourinho knows that this"
],
"312": [
1938.66,
1943.94,
"Chelsea side will win enough games as long as they don't lose and losing to Man City"
],
"313": [
1944.74,
1947.94,
"he'd almost prefer to lose to Swansea than he would to Manchester City"
],
"314": [
1949.22,
1952.9,
"Matic, Zouba he could beat Swansea, Hazard"
],
"315": [
1953.38,
1953.88,
"Zouba"
],
"316": [
1956.34,
1963.38,
"carried out by Taylor hit early by Shelby asking a bit too much of Ayew who applauded the idea"
],
"317": [
1968.26,
1971.14,
"we're going to have another Swansea debutant in a moment"
],
"318": [
1971.78,
1979.14,
"Portuguese striker Ader is preparing"
],
"319": [
1983.86,
1993.14,
"so"
],
"320": [
1999.78,
2002.42,
"he's got away from Routledge and he's worrying Taylor"
],
"321": [
2004.82,
2007.14,
"Taylor stuck to his task"
],
"322": [
2008.1,
2009.38,
"Routledge found touch"
],
"323": [
2011.38,
2014.9,
"it's going to be interesting as the game goes on to see how deep Swansea get"
],
"324": [
2014.9,
2023.38,
"how nervous do they get even you know with the draw with the two goals and an extra man"
],
"325": [
2023.94,
2027.94,
"I think they might just drop a little bit too deep at times a little bit nervy and that might"
],
"326": [
2027.94,
2035.38,
"just give Chelsea one or two opportunities in the last 12-13 minutes 27 year old Ader"
],
"327": [
2035.38,
2041.46,
"27 year old Ader there's a five million count capture from Braga in the Portuguese"
],
"328": [
2041.46,
2045.78,
"league he scored four goals in his last three games for them back end of last season"
],
"329": [
2046.98,
2051.38,
"reached the cup final scored in the cup final but missed his penalty in a shootout that they lost"
],
"330": [
2053.38,
2059.86,
"he is a full Portuguese international and he has replaced Bafo Gomis for the last 11 minutes plus"
],
"331": [
2059.86,
2065.3,
"here"
],
"332": [
2080.98,
2084.98,
"brilliant free kick he's all scampering to be there first"
],
"333": [
2085.7,
2090.42,
"shakes in by Azar didn't reach Ivanovic miscue from Matic"
],
"334": [
2093.62,
2098.02,
"he wasn't allowing Routledge to capitalize out there by Williams turning his Ader"
],
"335": [
2100.5,
2104.42,
"Shelby, Ader, Ayew"
],
"336": [
2108.02,
2110.02,
"Andre Ayew"
],
"337": [
2115.06,
2117.3,
"I think Ader wanted it back and I think Ayew knew that"
],
"338": [
2124.5,
2127.86,
"good win by Cork he's freed himself of William"
],
"339": [
2132.98,
2136.66,
"Norton's gone ahead of Ayew, Swansea ambitious now"
],
"340": [
2137.22,
2142.1,
"full backs in the final third Norton's cross falls kindly for Degovic"
],
"341": [
2142.42,
2148.02,
"it's a great defty though isn't it Azmi Begovic has clearly got his chance"
],
"342": [
2148.02,
2153.46,
"a lot sooner than expected but who knows now with a couple of decent performances"
],
"343": [
2154.74,
2159.54,
"might just give Jose Mourinho a thought or two as who is his number one"
],
"344": [
2165.78,
2166.18,
"William"
],
"345": [
2172.1,
2172.66,
"Azar"
],
"346": [
2177.46,
2181.54,
"an efficient game Jack Cork has had since he came on"
],
"347": [
2189.78,
2194.58,
"this is going to be a premier league debut in Chelsea colours for the Colombian"
],
"348": [
2195.14,
2196.58,
"Radamel Falcao"
],
"349": [
2197.22,
2201.54,
"whether instead of Costa or alongside of him he was still not entirely sure"
],
"350": [
2201.54,
2206.02,
"as they formed a formidable partnership with Atletico Madrid a couple of seasons back"
],
"351": [
2213.06,
2219.06,
"Ayew nearly reached Routledge would have done back to Cahill, Matic"
],
"352": [
2219.62,
2221.62,
"William, Costa"
],
"353": [
2227.62,
2229.62,
"Azar"
],
"354": [
2233.62,
2239.62,
"Azar, Costa, William, Costa"
],
"355": [
2243.62,
2245.62,
"Zouma"
],
"356": [
2249.62,
2251.62,
"Matic, William"
],
"357": [
2255.62,
2257.62,
"Azar"
],
"358": [
2259.62,
2261.62,
"well beautifully done"
],
"359": [
2261.62,
2263.62,
"as Pelecueta"
],
"360": [
2263.62,
2265.62,
"snatched away by William through in front of Costa"
],
"361": [
2265.62,
2267.62,
"lifted up towards Ader"
],
"362": [
2267.62,
2269.62,
"who's clashed with Terry"
],
"363": [
2269.62,
2271.62,
"and the free kick is given in favour of the Englishman"
],
"364": [
2273.62,
2275.62,
"first look at that said 6-1"
],
"365": [
2275.62,
2277.62,
"half does the other"
],
"366": [
2278.18,
2280.18,
"I think John Terry was very very clever"
],
"367": [
2282.18,
2284.18,
"you see on the break"
],
"368": [
2284.18,
2286.18,
"I think John Terry he gambled"
],
"369": [
2286.18,
2288.18,
"and then was very very clever to"
],
"370": [
2288.18,
2290.18,
"draw the foul from the referee"
],
"371": [
2292.18,
2294.18,
"well talking of gambles"
],
"372": [
2294.18,
2296.18,
"here's a big one"
],
"373": [
2296.18,
2298.18,
"can Radamel Falcao"
],
"374": [
2298.18,
2300.18,
"do in blue"
],
"375": [
2300.18,
2302.18,
"what he couldn't do in red"
],
"376": [
2302.18,
2304.18,
"Chelsea's new number 9"
],
"377": [
2304.18,
2306.18,
"a Colombian of great repute"
],
"378": [
2306.74,
2308.74,
"and of multiple goals in years gone by"
],
"379": [
2308.74,
2310.74,
"Matic plays it in"
],
"380": [
2310.74,
2312.74,
"Fabianski came and met it"
],
"381": [
2312.74,
2314.74,
"Azar attempts to re-deliver"
],
"382": [
2314.74,
2316.74,
"Sigurdsson's in the way"
],
"383": [
2320.74,
2322.74,
"Azar"
],
"384": [
2322.74,
2324.74,
"booked by Sigurdsson"
],
"385": [
2330.74,
2332.74,
"just a free kick"
],
"386": [
2333.3,
2335.3,
"well it's a great opportunity"
],
"387": [
2335.3,
2337.3,
"isn't it now for Radamel Falcao"
],
"388": [
2337.3,
2339.3,
"to become a hero"
],
"389": [
2339.3,
2341.3,
"he needs to get Ednazard on the ball"
],
"390": [
2341.3,
2343.3,
"clear block"
],
"391": [
2343.3,
2345.3,
"you know exactly what he was doing"
],
"392": [
2345.3,
2347.3,
"for Falcao, Chelsea's new number 9"
],
"393": [
2347.3,
2349.3,
"can't be that much worse"
],
"394": [
2349.3,
2351.3,
"than the last number 9 that they had"
],
"395": [
2353.3,
2355.3,
"well he awaits a Matic free kick"
],
"396": [
2357.3,
2359.3,
"Falcao at the front of the queue"
],
"397": [
2359.3,
2361.3,
"Costa right at the back of it"
],
"398": [
2361.86,
2363.86,
"Daniel orchestrating"
],
"399": [
2363.86,
2365.86,
"Matic lifting it in"
],
"400": [
2365.86,
2367.86,
"Fabianski coming and claiming well"
],
"401": [
2369.86,
2371.86,
"good take from Fabianski"
],
"402": [
2371.86,
2373.86,
"that's exactly what you need from your goalkeeper"
],
"403": [
2373.86,
2375.86,
"you're under a little bit of pressure"
],
"404": [
2375.86,
2377.86,
"goalkeeper comes, takes the free kick"
],
"405": [
2387.86,
2389.86,
"Azar"
],
"406": [
2391.86,
2393.86,
"Chelsea's 10"
],
"407": [
2393.86,
2395.86,
"multiplying their work rate and their urgency"
],
"408": [
2399.86,
2401.86,
"Costa held up by Taylor, no foul"
],
"409": [
2405.86,
2407.86,
"Stockton almost awarded himself a free kick"
],
"410": [
2407.86,
2409.86,
"referee overruled"
],
"411": [
2409.86,
2411.86,
"Cork, I think Costa was looking for it"
],
"412": [
2411.86,
2413.86,
"but that's not to say that it wasn't a free kick"
],
"413": [
2415.86,
2417.86,
"Norton, Sigurdsson"
],
"414": [
2417.86,
2419.86,
"is there the potential here for a Swansea steal"
],
"415": [
2420.42,
2422.42,
"they won at Old Trafford on opening day last season"
],
"416": [
2424.42,
2426.42,
"Shelby"
],
"417": [
2428.42,
2430.42,
"Taylor, that's behind Routledge"
],
"418": [
2432.42,
2434.42,
"comfortably dealt with by Cahill"
],
"419": [
2434.42,
2436.42,
"who pushes out his chest and goes"
],
"420": [
2438.42,
2440.42,
"and then asks Azar to pursue the cause"
],
"421": [
2440.42,
2442.42,
"with Norton backpedalling"
],
"422": [
2442.42,
2444.42,
"Falcao ahead of him"
],
"423": [
2444.42,
2446.42,
"Azar, Costa"
],
"424": [
2450.42,
2452.42,
"Azar teasing and dancing"
],
"425": [
2454.42,
2456.42,
"Matic"
],
"426": [
2458.42,
2460.42,
"Ivanovic"
],
"427": [
2460.42,
2462.42,
"just didn't sit for him, Adair's tackle"
],
"428": [
2462.42,
2464.42,
"Cork"
],
"429": [
2466.42,
2468.42,
"now Routledge, Ayew one way"
],
"430": [
2468.42,
2470.42,
"Adair the other"
],
"431": [
2470.42,
2472.42,
"and Sigurdsson here supporting"
],
"432": [
2474.42,
2476.42,
"Swansea shouldn't be too cavalier right now"
],
"433": [
2476.42,
2478.42,
"we know how good they are at keeping possession"
],
"434": [
2480.42,
2482.42,
"keep the ball Swansea"
],
"435": [
2482.42,
2484.42,
"do what you're good at"
],
"436": [
2484.42,
2486.42,
"pass it around, make Chelsea work"
],
"437": [
2486.42,
2488.42,
"don't give them an easy opportunity"
],
"438": [
2488.42,
2490.42,
"to create a chance"
],
"439": [
2494.42,
2496.42,
"Shelby"
],
"440": [
2496.42,
2498.42,
"Zouma in short"
],
"441": [
2498.42,
2500.42,
"he didn't get it back"
],
"442": [
2500.42,
2502.42,
"and Ivanovic has fed Costa"
],
"443": [
2504.42,
2506.42,
"Falcao peeling away, Azar twistling away from Fernandes"
],
"444": [
2506.98,
2508.98,
"here to Nazar"
],
"445": [
2514.98,
2516.98,
"Falcao"
],
"446": [
2516.98,
2518.98,
"didn't catch it"
],
"447": [
2518.98,
2520.98,
"was always stuck under his feet"
],
"448": [
2520.98,
2522.98,
"just a little bit"
],
"449": [
2522.98,
2524.98,
"didn't get the room to really swing"
],
"450": [
2524.98,
2526.98,
"that right leg"
],
"451": [
2526.98,
2528.98,
"see there, it's just caught, it's a little bit behind him"
],
"452": [
2528.98,
2530.98,
"was on target but never ever"
],
"453": [
2530.98,
2532.98,
"going to trouble Fabianski"
],
"454": [
2536.98,
2538.98,
"John Terry wins another free kick from Adair"
],
"455": [
2538.98,
2540.98,
"who's certainly put himself about"
],
"456": [
2544.98,
2546.98,
"three minutes left of the 90"
],
"457": [
2546.98,
2548.98,
"and one supposes there'll be a third bit more"
],
"458": [
2550.98,
2552.98,
"Chelsea's ten not settling for this"
],
"459": [
2558.98,
2560.98,
"Matic aimed at Cahill"
],
"460": [
2560.98,
2562.98,
"away by Adair, recycled by Ivanovic"
],
"461": [
2562.98,
2564.98,
"as Pellequeta"
],
"462": [
2566.98,
2568.98,
"hoisted in towards Zouma, claimed"
],
"463": [
2568.98,
2570.98,
"confidently again by Fabianski"
],
"464": [
2570.98,
2572.98,
"who's got rid in a hurry"
],
"465": [
2574.98,
2576.98,
"as Pellequeta across"
],
"466": [
2576.98,
2578.98,
"in front of Ha'aiu"
],
"467": [
2578.98,
2580.98,
"who wants it back and is prepared to wrestle for it"
],
"468": [
2584.98,
2586.98,
"as Pellequeta"
],
"469": [
2586.98,
2588.98,
"did there what any defender would do"
],
"470": [
2588.98,
2590.98,
"and kept hold of the ball so that there could be no"
],
"471": [
2590.98,
2592.98,
"quick throw"
],
"472": [
2592.98,
2594.98,
"great take by Fabianski and a good throw out"
],
"473": [
2595.54,
2597.54,
"not quite sure why Ha'aiu's getting a talking to"
],
"474": [
2597.54,
2599.54,
"by the referee, didn't do too much wrong there"
],
"475": [
2613.54,
2615.54,
"well I assume it stays the Toreato Swans who've been good for their point"
],
"476": [
2615.54,
2617.54,
"you know they've played well"
],
"477": [
2617.54,
2619.54,
"in the first half"
],
"478": [
2619.54,
2621.54,
"unfortunate to go behind"
],
"479": [
2621.54,
2623.54,
"realistically with that own goal"
],
"480": [
2624.1,
2626.1,
"and then of course got themselves back in it"
],
"481": [
2626.1,
2628.1,
"there's going to be an awful lot of talk about"
],
"482": [
2628.1,
2630.1,
"was it inside or was it outside"
],
"483": [
2630.1,
2632.1,
"should it have been a red card"
],
"484": [
2632.1,
2634.1,
"you know time will tell, replays"
],
"485": [
2634.1,
2636.1,
"technology etc"
],
"486": [
2636.1,
2638.1,
"will help us out in that"
],
"487": [
2638.1,
2640.1,
"but at the moment you have to say Swansea have done very very well"
],
"488": [
2640.1,
2642.1,
"against the champions"
],
"489": [
2642.1,
2644.1,
"but there's time left in the game"
],
"490": [
2644.1,
2646.1,
"and Assad on the ball, Falcao one way"
],
"491": [
2646.1,
2648.1,
"Costa making a run, Williams gave him a little nibble"
],
"492": [
2648.1,
2650.1,
"and the referee didn't consider it a foul"
],
"493": [
2650.66,
2652.66,
"and that has incensed the Chelsea crowd still more"
],
"494": [
2662.66,
2664.66,
"Costa still jacking himself up"
],
"495": [
2676.66,
2678.66,
"eight days after it, that's Penacueta"
],
"496": [
2679.22,
2681.22,
"was slow to start his pursuit"
],
"497": [
2681.22,
2683.22,
"Begovic found touch"
],
"498": [
2687.22,
2689.22,
"well Diego Costa was absolutely furious"
],
"499": [
2689.22,
2691.22,
"we get another look at it this time around"
],
"500": [
2691.22,
2693.22,
"it's a great little ball"
],
"501": [
2693.22,
2695.22,
"from that angle it looks like there was a hand in the back"
],
"502": [
2697.22,
2699.22,
"doesn't matter how heavy that hand was"
],
"503": [
2699.22,
2701.22,
"how hard that push was"
],
"504": [
2703.22,
2705.22,
"by the end of it all, if there's contact"
],
"505": [
2705.22,
2707.22,
"there's enough to give a free kick"
],
"506": [
2709.22,
2711.22,
"into four minute stoppage time"
],
"507": [
2711.22,
2713.22,
"Chelsea's got that smile on"
],
"508": [
2713.22,
2715.22,
"that false smile"
],
"509": [
2717.22,
2719.22,
"that quasi playful smile that says"
],
"510": [
2719.22,
2721.22,
"oh dear they're against us again"
],
"511": [
2726.22,
2728.22,
"free kick in favour of Jack Cork"
],
"512": [
2729.22,
2731.22,
"which has wound up John Terry"
],
"513": [
2739.22,
2741.22,
"he's got it"
],
"514": [
2751.22,
2753.22,
"Routledge wants to take on Ivanovic"
],
"515": [
2753.22,
2755.22,
"who's not having it"
],
"516": [
2756.22,
2758.22,
"strong, sturdy defending from Granislav Ivanovic"
],
"517": [
2759.22,
2761.22,
"Costa ran it out of play"
],
"518": [
2766.22,
2768.22,
"well he can protest all he likes about that one"
],
"519": [
2768.22,
2770.22,
"That was clearly out of play."
],
"520": [
2778.22,
2781.82,
"Not too sure what Mourinho can complain about."
],
"521": [
2781.82,
2784.62,
"Yes, there'll be an issue about the red card."
],
"522": [
2784.62,
2788.62,
"Threw by Sigurdsson, Cahill had to get there before Routledge, and he did."
],
"523": [
2788.62,
2792.62,
"It looks like Courtois' challenge was on the line."
],
"524": [
2792.62,
2795.42,
"That means it was in the box and it's a penalty."
],
"525": [
2795.42,
2799.02,
"Yes, he can argue about the red or yellow card, potentially."
],
"526": [
2799.02,
2805.02,
"But apart from that, have Chelsea really done enough in the second half to win the game?"
],
"527": [
2809.42,
2814.02,
"Oh, dear, beaten to it by Matic. Swansea have a corner on 92 minutes here."
],
"528": [
2814.02,
2818.02,
"I'm sure he'll also mention the penalty that wasn't given."
],
"529": [
2818.02,
2822.02,
"Or the appeal that wasn't given on Kostra in the first half."
],
"530": [
2823.02,
2827.02,
"20 games since Chelsea lost on this ground in the Barclays Premier League,"
],
"531": [
2827.02,
2830.02,
"a year and 111 days ago against Sunderland."
],
"532": [
2830.02,
2832.02,
"A goal here..."
],
"533": [
2833.02,
2835.02,
"..would beat them again."
],
"534": [
2836.02,
2839.02,
"Whipped in by Shelby, away by Terry."
],
"535": [
2842.02,
2845.02,
"Azar made it his. Falcao has joined in."
],
"536": [
2845.02,
2848.02,
"Azar, Swansea vulnerable."
],
"537": [
2848.02,
2851.02,
"Williams with a cumbersome challenge."
],
"538": [
2851.02,
2853.02,
"Referee's gone to his foot."
],
"539": [
2854.02,
2857.02,
"And it's shown Williams a yellow card."
],
"540": [
2857.02,
2859.02,
"He'll take that."
],
"541": [
2859.02,
2863.02,
"Again, call it cynical, call it what you like,"
],
"542": [
2863.02,
2867.02,
"take him on for the team, did exactly what he had to do."
],
"543": [
2867.02,
2872.02,
"Yes, it's a yellow card, but it's not a Chelsea attack, two on one."
],
"544": [
2882.02,
2884.02,
"Nothing's changed."
],
"545": [
2884.02,
2888.02,
"The summer months have not mellowed him."
],
"546": [
2888.02,
2891.02,
"Not once the real stuff begins."
],
"547": [
2895.02,
2899.02,
"The Barclays Premier League is starting here at the home of the champions."
],
"548": [
2900.02,
2906.02,
"With the sort of drama which we dearly hope is going to satisfy us all the way through till May."
],
"549": [
2906.02,
2909.02,
"I still think this is one of the silly rules that hasn't been changed."
],
"550": [
2909.02,
2913.02,
"When a player gets fouled and the opponent gets booked for that challenge,"
],
"551": [
2913.02,
2916.02,
"why does the team have to go and play against them?"
]
}
} |