File size: 86,387 Bytes
da6403b |
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 |
{
"timestamp": "1480173300",
"score": "2 - 1",
"round": "13",
"teams": [
"Real Madrid",
"Gijon"
],
"lineup": {
"home": {
"tactic": "1-4-3-3",
"players": [
{
"hash": "tpV0VX0S",
"name": "Benzema K.",
"captain": "",
"detail_link": "/player/benzema-karim/tpV0VX0S/",
"short_name": "Benzema",
"shirt_number": "9",
"country": "France",
"facts": [],
"lineup": 10,
"starting": true,
"long_name": "Karim Benzema"
},
{
"hash": "KUjvgUhB",
"name": "Danilo",
"captain": "",
"detail_link": "/player/danilo/KUjvgUhB/",
"short_name": "Danilo",
"shirt_number": "23",
"country": "Brazil",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Danilo"
},
{
"hash": "8Wp8ZCLG",
"name": "Fernandez N.",
"captain": "",
"detail_link": "/player/nacho/8Wp8ZCLG/",
"short_name": "Fernandez",
"shirt_number": "6",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "18' Ronaldo C. (Fernandez N.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "1",
"time": "77' Fernandez N. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Nacho Fernandez"
},
{
"hash": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [
{
"type": "6",
"time": "81'",
"description": "Isco",
"linked_player_hash": "ULLmpdEb"
}
],
"lineup": 7,
"starting": true,
"long_name": "Mateo Kovacic"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "17",
"country": "Spain",
"facts": [],
"lineup": 9,
"starting": true,
"long_name": "Lucas Vazquez"
},
{
"hash": "bZWyoJnA",
"name": "Modric L.",
"captain": "",
"detail_link": "/player/modric-luka/bZWyoJnA/",
"short_name": "Modric",
"shirt_number": "19",
"country": "Croatia",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Luka Modric"
},
{
"hash": "dQEusiKl",
"name": "Navas K.",
"captain": "",
"detail_link": "/player/navas-keylor/dQEusiKl/",
"short_name": "Navas",
"shirt_number": "1",
"country": "Costa Rica",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Keylor Navas"
},
{
"hash": "2y9qaipI",
"name": "Pepe",
"captain": "",
"detail_link": "/player/pepe/2y9qaipI/",
"short_name": "Pepe",
"shirt_number": "3",
"country": "Portugal",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Pepe"
},
{
"hash": "db8mbBaO",
"name": "Ramos S.",
"captain": "(C)",
"detail_link": "/player/ramos-sergio/db8mbBaO/",
"short_name": "Ramos",
"shirt_number": "4",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "72'",
"description": "Marcelo",
"linked_player_hash": "zmAm2AEH"
}
],
"lineup": 4,
"starting": true,
"long_name": "Sergio Ramos"
},
{
"hash": "MPaioN57",
"name": "Rodriguez J.",
"captain": "",
"detail_link": "/player/rodriguez-james/MPaioN57/",
"short_name": "Rodriguez",
"shirt_number": "10",
"country": "Colombia",
"facts": [
{
"type": "6",
"time": "72'",
"description": "Asensio M.",
"linked_player_hash": "GQMMQo6m"
}
],
"lineup": 6,
"starting": true,
"long_name": "James Rodriguez"
},
{
"hash": "WGOY4FSt",
"name": "Ronaldo C.",
"captain": "",
"detail_link": "/player/ronaldo-cristiano/WGOY4FSt/",
"short_name": "Ronaldo",
"shirt_number": "7",
"country": "Portugal",
"facts": [
{
"type": "3",
"time": "18' Ronaldo C. (Fernandez N.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"lineup": 11,
"starting": true,
"long_name": "Cristiano Ronaldo"
},
{
"hash": "GQMMQo6m",
"name": "Asensio M.",
"captain": "",
"detail_link": "/player/asensio-marco/GQMMQo6m/",
"short_name": "Asensio",
"shirt_number": "20",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Rodriguez J.",
"linked_player_hash": "MPaioN57"
}
],
"lineup": null,
"starting": false,
"long_name": "Marco Asensio"
},
{
"hash": "rZh5FTHE",
"name": "Carvajal D.",
"captain": "",
"detail_link": "/player/carvajal-daniel/rZh5FTHE/",
"short_name": "Carvajal",
"shirt_number": "2",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Daniel Carvajal"
},
{
"hash": "Ukeq3c0b",
"name": "Casemiro",
"captain": "",
"detail_link": "/player/casemiro/Ukeq3c0b/",
"short_name": "Casemiro",
"shirt_number": "14",
"country": "Brazil",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Casemiro"
},
{
"hash": "l43b8dXD",
"name": "Casilla K.",
"captain": "",
"detail_link": "/player/casilla-francisco/l43b8dXD/",
"short_name": "Casilla",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Kiko Casilla"
},
{
"hash": "OQ6UIbu1",
"name": "Diaz M.",
"captain": "",
"detail_link": "/player/diaz-mariano/OQ6UIbu1/",
"short_name": "Diaz",
"shirt_number": "18",
"country": "Dominican Republic",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mariano Diaz"
},
{
"hash": "ULLmpdEb",
"name": "Isco",
"captain": "",
"detail_link": "/player/isco/ULLmpdEb/",
"short_name": "Isco",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "81'",
"description": "Kovacic M.",
"linked_player_hash": "4f084TL7"
}
],
"lineup": null,
"starting": false,
"long_name": "Isco"
},
{
"hash": "zmAm2AEH",
"name": "Marcelo",
"captain": "",
"detail_link": "/player/marcelo/zmAm2AEH/",
"short_name": "Marcelo",
"shirt_number": "12",
"country": "Brazil",
"facts": [
{
"type": "7",
"time": "72'",
"description": "Ramos S.",
"linked_player_hash": "db8mbBaO"
}
],
"lineup": null,
"starting": false,
"long_name": "Marcelo"
}
],
"coach": [
{
"hash": "b7zuQEqO",
"name": "Zidane Z.",
"captain": "",
"detail_link": "/player/zidane-zinedine/b7zuQEqO/",
"short_name": "Zidane Z.",
"shirt_number": "",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Zinedine Zidane"
}
]
},
"away": {
"tactic": "1-5-4-1",
"players": [
{
"hash": "8SgbEI0Q",
"name": "Ait-Atmane R.",
"captain": "",
"detail_link": "/player/ait-atmane-rachid/8SgbEI0Q/",
"short_name": "Ait-Atmane",
"shirt_number": "8",
"country": "Algeria",
"facts": [
{
"type": "1",
"time": "61' Ait-Atmane R. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "81'",
"description": "Cases N.",
"linked_player_hash": "fyXy6IJ8"
}
],
"lineup": 9,
"starting": true,
"long_name": "Rachid Ait-Atmane"
},
{
"hash": "WANBOspq",
"name": "Alvarez S.",
"captain": "(C)",
"detail_link": "/player/alvarez-sergio/WANBOspq/",
"short_name": "Alvarez",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Sergio Alvarez"
},
{
"hash": "nBkGWgvH",
"name": "Amorebieta F.",
"captain": "",
"detail_link": "/player/amorebieta-fernando/nBkGWgvH/",
"short_name": "Amorebieta",
"shirt_number": "5",
"country": "Venezuela",
"facts": [
{
"type": "1",
"time": "40' Amorebieta F. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 4,
"starting": true,
"long_name": "Fernando Amorebieta"
},
{
"hash": "hv5DShRR",
"name": "Carmona C.",
"captain": "",
"detail_link": "/player/carmona-carlos/hv5DShRR/",
"short_name": "Carmona",
"shirt_number": "19",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "35' Carmona C. (Lopez Blanco I.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "1",
"time": "66' Carmona C. (Foul)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "76'",
"description": "Viguera B.",
"linked_player_hash": "CpmeH2Nu"
}
],
"lineup": 7,
"starting": true,
"long_name": "Carlos Carmona"
},
{
"hash": "YTO1LE63",
"name": "Cop D.",
"captain": "",
"detail_link": "/player/cop-duje/YTO1LE63/",
"short_name": "Cop",
"shirt_number": "24",
"country": "Croatia",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Duje Cop"
},
{
"hash": "8b86g1el",
"name": "Gomez M.",
"captain": "",
"detail_link": "/player/gomez-moi/8b86g1el/",
"short_name": "Gomez",
"shirt_number": "23",
"country": "Spain",
"facts": [
{
"type": "6",
"time": "76'",
"description": "Rodriguez V.",
"linked_player_hash": "MsSL0Ryt"
}
],
"lineup": 10,
"starting": true,
"long_name": "Moi Gomez"
},
{
"hash": "hWxuD1Ac",
"name": "Lillo",
"captain": "",
"detail_link": "/player/castellano-lillo/hWxuD1Ac/",
"short_name": "Lillo",
"shirt_number": "16",
"country": "Spain",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Lillo"
},
{
"hash": "nBb2U53U",
"name": "Lopez Blanco I.",
"captain": "",
"detail_link": "/player/lopez-ismael/nBb2U53U/",
"short_name": "Lopez Blanco",
"shirt_number": "18",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "35' Carmona C. (Lopez Blanco I.)",
"description": "Assistance",
"linked_player_hash": ""
}
],
"lineup": 6,
"starting": true,
"long_name": "Ismael Lopez Blanco"
},
{
"hash": "jezDYWzN",
"name": "Marino D.",
"captain": "",
"detail_link": "/player/marino-diego/jezDYWzN/",
"short_name": "Marino",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Diego Marino"
},
{
"hash": "S0I7Fp7h",
"name": "Mere J.",
"captain": "",
"detail_link": "/player/mere-jorge/S0I7Fp7h/",
"short_name": "Mere",
"shirt_number": "4",
"country": "Spain",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "Jorge Mere"
},
{
"hash": "UuGeS7PS",
"name": "Pereira D.",
"captain": "",
"detail_link": "/player/pereira-douglas/UuGeS7PS/",
"short_name": "Pereira",
"shirt_number": "2",
"country": "Brazil",
"facts": [],
"lineup": 2,
"starting": true,
"long_name": "Douglas Pereira"
},
{
"hash": "hEjc0P8e",
"name": "Babin J.",
"captain": "",
"detail_link": "/player/babin-jean-sylvain/hEjc0P8e/",
"short_name": "Babin",
"shirt_number": "3",
"country": "Martinique",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jean-Sylvain Babin"
},
{
"hash": "8QDZjuWj",
"name": "Canella R.",
"captain": "",
"detail_link": "/player/canella-roberto/8QDZjuWj/",
"short_name": "Canella",
"shirt_number": "15",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Roberto Canella"
},
{
"hash": "fyXy6IJ8",
"name": "Cases N.",
"captain": "",
"detail_link": "/player/cases-nacho/fyXy6IJ8/",
"short_name": "Cases",
"shirt_number": "10",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "81'",
"description": "Ait-Atmane R.",
"linked_player_hash": "8SgbEI0Q"
}
],
"lineup": null,
"starting": false,
"long_name": "Nacho Cases"
},
{
"hash": "MsSL0Ryt",
"name": "Rodriguez V.",
"captain": "",
"detail_link": "/player/rodriguez-victor/MsSL0Ryt/",
"short_name": "Rodriguez",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Gomez M.",
"linked_player_hash": "8b86g1el"
}
],
"lineup": null,
"starting": false,
"long_name": "Victor Rodriguez"
},
{
"hash": "zgJ4a2Yc",
"name": "Torres X.",
"captain": "",
"detail_link": "/player/torres-xavi/zgJ4a2Yc/",
"short_name": "Torres",
"shirt_number": "21",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Xavi Torres"
},
{
"hash": "CpmeH2Nu",
"name": "Viguera B.",
"captain": "",
"detail_link": "/player/viguera-borja/CpmeH2Nu/",
"short_name": "Viguera",
"shirt_number": "25",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Carmona C.",
"linked_player_hash": "hv5DShRR"
}
],
"lineup": null,
"starting": false,
"long_name": "Borja Viguera"
},
{
"hash": "p20MqQJi",
"name": "Whalley O.",
"captain": "",
"detail_link": "/player/whalley-oscar/p20MqQJi/",
"short_name": "Whalley",
"shirt_number": "30",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Oscar Whalley"
}
],
"coach": [
{
"hash": "M1vEw5An",
"name": "Abelardo A.",
"captain": "",
"detail_link": "/player/abelardo/M1vEw5An/",
"short_name": "Abelardo A.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Abelardo"
}
]
}
},
"referee": [
"Hernandez A."
],
"venue": [
"Estadio Santiago Bernab\u00e9u (Madrid)"
],
"attendance": [
"67 118"
],
"referee_matched": [
"Alejandro Hernandez"
],
"referee_found": [
"Alejandro Hernandez"
],
"coach_matched": [
"Zinedine Zidane",
"Abelardo"
],
"gameHomeTeam": "Real Madrid",
"home": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameAwayTeam": "Gijon",
"away": {
"name": "Gijon",
"detail_link": "/team/gijon/69w4Rb2d",
"hash": "69w4Rb2d",
"names": [
"Gijon",
"gijon"
]
},
"gameDate": "26/11/2016 - 16:15",
"annotations": [
{
"important": false,
"gameTime": "2 - 47:59",
"gt_gameTime": "",
"label": "",
"description": "We have seen a great game today, let's hope the players will be able to maintain these high levels of play in order to keep fans entertained in future games. The hosts were largely in control of the game today. The home team tried to prevail using combination football unlike the away players who attempted to beat the opposition's defence using mostly counter-attacks.",
"identified": "We have seen a great game today, let's hope the players will be able to maintain these high levels of play in order to keep fans entertained in future games. The hosts were largely in control of the game today. The home team tried to prevail using combination football unlike the away players who attempted to beat the opposition's defence using mostly counter-attacks.",
"anonymized": "We have seen a great game today, let's hope the players will be able to maintain these high levels of play in order to keep fans entertained in future games. The hosts were largely in control of the game today. The home team tried to prevail using combination football unlike the away players who attempted to beat the opposition's defence using mostly counter-attacks.",
"visibility": "shown",
"position": "2879000"
},
{
"important": true,
"gameTime": "2 - 47:09",
"gt_gameTime": "",
"label": "whistle",
"description": "The referee checks his watch and blows his whistle to signal the end of this match.",
"identified": "The referee checks his watch and blows his whistle to signal the end of this match.",
"anonymized": "The referee checks his watch and blows his whistle to signal the end of this match.",
"visibility": "shown",
"position": "2829000"
},
{
"important": false,
"gameTime": "2 - 46:35",
"gt_gameTime": "",
"label": "corner",
"description": "Luka Modric (Real Madrid) decides to take a short corner instead of crossing into the box.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) decides to take a short corner instead of crossing into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to take a short corner instead of crossing into the box.",
"visibility": "shown",
"position": "2795000"
},
{
"important": false,
"gameTime": "2 - 46:23",
"gt_gameTime": "",
"label": "",
"description": "Isco (Real Madrid) weaves his way through opponents and strikes the ball from the edge of the area, but it's blocked by a defender. Real Madrid have been awarded a corner kick.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) weaves his way through opponents and strikes the ball from the edge of the area, but it's blocked by a defender. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) weaves his way through opponents and strikes the ball from the edge of the area, but it's blocked by a defender. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2783000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "2 additional min. will be played.",
"identified": "2 additional min. will be played.",
"anonymized": "2 additional min. will be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:09",
"gt_gameTime": "",
"label": "funfact",
"description": "We can have a look at the statistics now, particularly the total attempts \u2013 19:9.",
"identified": "We can have a look at the statistics now, particularly the total attempts \u2013 19:9.",
"anonymized": "We can have a look at the statistics now, particularly the total attempts \u2013 19:9.",
"visibility": "shown",
"position": "2589000"
},
{
"important": true,
"gameTime": "2 - 41:19",
"gt_gameTime": "2 - 41:11",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) jinks his way past multiple challenges and fires the ball from the edge of the box to the bottom right corner, but Diego Marino shows his agility and makes a save.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) jinks his way past multiple challenges and fires the ball from the edge of the box to the bottom right corner, but [PLAYER_jezDYWzN] shows his agility and makes a save.",
"anonymized": "[PLAYER] ([TEAM]) jinks his way past multiple challenges and fires the ball from the edge of the box to the bottom right corner, but [PLAYER] shows his agility and makes a save.",
"visibility": "shown",
"position": "2479000"
},
{
"important": false,
"gameTime": "2 - 40:57",
"gt_gameTime": "2 - 40:55",
"label": "corner",
"description": "Douglas Pereira (Gijon) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"identified": "[PLAYER_UuGeS7PS] ([TEAM_]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"anonymized": "[PLAYER] ([TEAM]) swings in the corner, but fails to find any of his teammates. One of the defenders reacts superbly to get it clear.",
"visibility": "shown",
"position": "2457000"
},
{
"important": false,
"gameTime": "2 - 40:39",
"gt_gameTime": "2 - 40:26",
"label": "",
"description": "Borja Viguera (Gijon) swings in a cross, but the ball is cleared to safety by one of the defending players. The ball goes out of play. Gijon are awarded a corner kick.",
"identified": "[PLAYER_CpmeH2Nu] ([TEAM_]) swings in a cross, but the ball is cleared to safety by one of the defending players. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) swings in a cross, but the ball is cleared to safety by one of the defending players. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2439000"
},
{
"important": false,
"gameTime": "2 - 39:19",
"gt_gameTime": "2 - 39:07",
"label": "",
"description": "Karim Benzema (Real Madrid) tries to find Lucas, but he puts too much power on the pass.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) tries to find [PLAYER_pEjBDsSH], but he puts too much power on the pass.",
"anonymized": "[PLAYER] ([TEAM]) tries to find [PLAYER], but he puts too much power on the pass.",
"visibility": "shown",
"position": "2359000"
},
{
"important": false,
"gameTime": "2 - 37:50",
"gt_gameTime": "2 - 37:17",
"label": "",
"description": "Marco Asensio (Real Madrid) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"identified": "[PLAYER_GQMMQo6m] ([TEAM_]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass on the edge of the box and unleashes a shot which is brilliantly blocked by a defender.",
"visibility": "shown",
"position": "2270000"
},
{
"important": false,
"gameTime": "2 - 37:00",
"gt_gameTime": "2 - 36:50",
"label": "",
"description": "Excellent touch by Nacho Cases (Gijon)! He latches on to an inch-perfect pass deep into the box and unleashes a low drive towards the middle of the goal. The goalkeeper reacts superbly and makes a save.",
"identified": "Excellent touch by [PLAYER_fyXy6IJ8] ([TEAM_])! He latches on to an inch-perfect pass deep into the box and unleashes a low drive towards the middle of the goal. The goalkeeper reacts superbly and makes a save.",
"anonymized": "Excellent touch by [PLAYER] ([TEAM])! He latches on to an inch-perfect pass deep into the box and unleashes a low drive towards the middle of the goal. The goalkeeper reacts superbly and makes a save.",
"visibility": "shown",
"position": "2220000"
},
{
"important": true,
"gameTime": "2 - 36:00",
"gt_gameTime": "2 - 35:28",
"label": "substitution",
"description": "Abelardo prepares a substitution. Rachid Ait-Atmane is replaced by Nacho Cases (Gijon).",
"identified": "[COACH_M1vEw5An] prepares a substitution. [PLAYER_8SgbEI0Q] is replaced by [PLAYER_fyXy6IJ8] ([TEAM_]).",
"anonymized": "[COACH] prepares a substitution. [PLAYER] is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2160000"
},
{
"important": true,
"gameTime": "2 - 35:35",
"gt_gameTime": "2 - 35:08",
"label": "substitution",
"description": "It's time for a substitution. That's the last involvement from Mateo Kovacic as he is replaced by Isco (Real Madrid).",
"identified": "It's time for a substitution. That's the last involvement from [PLAYER_4f084TL7] as he is replaced by [PLAYER_ULLmpdEb] ([TEAM_]).",
"anonymized": "It's time for a substitution. That's the last involvement from [PLAYER] as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2135000"
},
{
"important": true,
"gameTime": "2 - 32:53",
"gt_gameTime": "2 - 32:28",
"label": "penalty-missed",
"description": "Duje Cop (Gijon) fails to score from the penalty kick. His shot goes just a few inches over the crossbar.",
"identified": "[PLAYER_YTO1LE63] ([TEAM_]) fails to score from the penalty kick. His shot goes just a few inches over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) fails to score from the penalty kick. His shot goes just a few inches over the crossbar.",
"visibility": "shown",
"position": "1973000"
},
{
"important": true,
"gameTime": "2 - 32:15",
"gt_gameTime": "2 - 31:57",
"label": "",
"description": "Duje Cop (Gijon) is going to take the penalty!",
"identified": "[PLAYER_YTO1LE63] ([TEAM_]) is going to take the penalty!",
"anonymized": "[PLAYER] ([TEAM]) is going to take the penalty!",
"visibility": "shown",
"position": "1935000"
},
{
"important": true,
"gameTime": "2 - 32:00",
"gt_gameTime": "2 - 31:54",
"label": "y-card",
"description": "The whistle is blown for an infringement and Nacho (Real Madrid) receives a yellow card!",
"identified": "The whistle is blown for an infringement and [PLAYER_fyXy6IJ8] ([TEAM_]) receives a yellow card!",
"anonymized": "The whistle is blown for an infringement and [PLAYER] ([TEAM]) receives a yellow card!",
"visibility": "shown",
"position": "1920000"
},
{
"important": true,
"gameTime": "2 - 31:40",
"gt_gameTime": "2 - 31:27",
"label": "penalty",
"description": "Nacho (Real Madrid) brings his opponent down with a tackle and Alejandro Hernandez blows his whistle for a foul. PENALTY to Gijon! Great chance to score.",
"identified": "[PLAYER_fyXy6IJ8] ([TEAM_]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul. PENALTY to [TEAM_]! Great chance to score.",
"anonymized": "[PLAYER] ([TEAM]) brings his opponent down with a tackle and [REFEREE] blows his whistle for a foul. PENALTY to [TEAM]! Great chance to score.",
"visibility": "shown",
"position": "1900000"
},
{
"important": true,
"gameTime": "2 - 30:57",
"gt_gameTime": "2 - 30:05",
"label": "substitution",
"description": "Substitution. Moi Gomez leaves the pitch and is replaced by Victor Rodriguez (Gijon).",
"identified": "Substitution. [PLAYER_8b86g1el] leaves the pitch and is replaced by [PLAYER_MPaioN57] ([TEAM_]).",
"anonymized": "Substitution. [PLAYER] leaves the pitch and is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1857000"
},
{
"important": true,
"gameTime": "2 - 30:51",
"gt_gameTime": "2 - 30:03",
"label": "substitution",
"description": "Abelardo has decided to substitute Carlos Carmona and he is replaced by Borja Viguera (Gijon).",
"identified": "[COACH_M1vEw5An] has decided to substitute [PLAYER_hv5DShRR] and he is replaced by [PLAYER_CpmeH2Nu] ([TEAM_]).",
"anonymized": "[COACH] has decided to substitute [PLAYER] and he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1851000"
},
{
"important": true,
"gameTime": "2 - 27:32",
"gt_gameTime": "2 - 27:17",
"label": "",
"description": "What an opportunity! Lucas (Real Madrid) wins the ball from the resulting set piece and unleashes a precise shot from inside the goal area which sails narrowly wide of the right post!",
"identified": "What an opportunity! [PLAYER_pEjBDsSH] ([TEAM_]) wins the ball from the resulting set piece and unleashes a precise shot from inside the goal area which sails narrowly wide of the right post!",
"anonymized": "What an opportunity! [PLAYER] ([TEAM]) wins the ball from the resulting set piece and unleashes a precise shot from inside the goal area which sails narrowly wide of the right post!",
"visibility": "shown",
"position": "1652000"
},
{
"important": false,
"gameTime": "2 - 27:21",
"gt_gameTime": "2 - 27:13",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) takes a direct free kick.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) takes a direct free kick.",
"anonymized": "[PLAYER] ([TEAM]) takes a direct free kick.",
"visibility": "shown",
"position": "1641000"
},
{
"important": true,
"gameTime": "2 - 26:44",
"gt_gameTime": "2 - 26:18",
"label": "substitution",
"description": "Here comes a substitution. Sergio Ramos is given a rest as he is replaced by Marcelo (Real Madrid).",
"identified": "Here comes a substitution. [PLAYER_db8mbBaO] is given a rest as he is replaced by [PLAYER_zmAm2AEH] ([TEAM_]).",
"anonymized": "Here comes a substitution. [PLAYER] is given a rest as he is replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1604000"
},
{
"important": true,
"gameTime": "2 - 26:28",
"gt_gameTime": "2 - 25:57",
"label": "substitution",
"description": "Zinedine Zidane has decided to make a change. Marco Asensio (Real Madrid) replaces James Rodriguez.",
"identified": "[COACH_b7zuQEqO] has decided to make a change. [PLAYER_GQMMQo6m] ([TEAM_]) replaces [PLAYER_MPaioN57].",
"anonymized": "[COACH] has decided to make a change. [PLAYER] ([TEAM]) replaces [PLAYER].",
"visibility": "shown",
"position": "1588000"
},
{
"important": false,
"gameTime": "2 - 25:58",
"gt_gameTime": "2 - 25:45",
"label": "",
"description": "One of the Gijon players tripped an opponent and conceded a foul. Real Madrid win a free kick.",
"identified": "One of the [TEAM_] players tripped an opponent and conceded a foul. [TEAM_] win a free kick.",
"anonymized": "One of the [TEAM] players tripped an opponent and conceded a foul. [TEAM] win a free kick.",
"visibility": "shown",
"position": "1558000"
},
{
"important": false,
"gameTime": "2 - 25:23",
"gt_gameTime": "2 - 25:18",
"label": "",
"description": "Luka Modric (Real Madrid) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"anonymized": "[PLAYER] ([TEAM]) latches on to an accurate pass on the edge of the box and immediately unleashes a shot which is wide of the mark.",
"visibility": "shown",
"position": "1523000"
},
{
"important": false,
"gameTime": "2 - 24:49",
"gt_gameTime": "2 - 24:41",
"label": "",
"description": "One of the defenders reacts at the last minute to brilliantly block a pass from Cristiano Ronaldo (Real Madrid).",
"identified": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER_WGOY4FSt] ([TEAM_]).",
"anonymized": "One of the defenders reacts at the last minute to brilliantly block a pass from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "1489000"
},
{
"important": false,
"gameTime": "2 - 22:45",
"gt_gameTime": "2 - 22:16",
"label": "",
"description": "Lucas (Real Madrid) sends a cross in and finds Cristiano Ronaldo inside the box, but one of the defenders steps in and clears the danger.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) sends a cross in and finds [PLAYER_WGOY4FSt] inside the box, but one of the defenders steps in and clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross in and finds [PLAYER] inside the box, but one of the defenders steps in and clears the danger.",
"visibility": "shown",
"position": "1365000"
},
{
"important": true,
"gameTime": "2 - 20:28",
"gt_gameTime": "2 - 19:58",
"label": "y-card",
"description": "Carlos Carmona (Gijon) is booked after bringing down an opponent. Alejandro Hernandez had an easy-decision to make.",
"identified": "[PLAYER_hv5DShRR] ([TEAM_]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"anonymized": "[PLAYER] ([TEAM]) is booked after bringing down an opponent. [REFEREE] had an easy-decision to make.",
"visibility": "shown",
"position": "1228000"
},
{
"important": false,
"gameTime": "2 - 19:18",
"gt_gameTime": "2 - 18:54",
"label": "corner",
"description": "Lucas (Real Madrid) takes the corner, but it's intercepted by the defender.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) takes the corner, but it's intercepted by the defender.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner, but it's intercepted by the defender.",
"visibility": "shown",
"position": "1158000"
},
{
"important": false,
"gameTime": "2 - 18:58",
"gt_gameTime": "2 - 18:45",
"label": "",
"description": "Mateo Kovacic (Real Madrid) gets on the end of a pass on the edge of the box but his shot is blocked. The ball is out of play. Real Madrid win a corner kick.",
"identified": "[PLAYER_4f084TL7] ([TEAM_]) gets on the end of a pass on the edge of the box but his shot is blocked. The ball is out of play. [TEAM_] win a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) gets on the end of a pass on the edge of the box but his shot is blocked. The ball is out of play. [TEAM] win a corner kick.",
"visibility": "shown",
"position": "1138000"
},
{
"important": false,
"gameTime": "2 - 17:08",
"gt_gameTime": "2 - 16:47",
"label": "",
"description": "Douglas Pereira (Gijon) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"identified": "[PLAYER_UuGeS7PS] ([TEAM_]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"anonymized": "[PLAYER] ([TEAM]) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"visibility": "shown",
"position": "1028000"
},
{
"important": true,
"gameTime": "2 - 16:02",
"gt_gameTime": "2 - 15:49",
"label": "",
"description": "Nice individual effort by Nacho (Real Madrid). He gets all the way through to the keeper and hits a shot to the left side of the goal, but Diego Marino does a good job to anticipate the direction of the ball and keeps it out.",
"identified": "Nice individual effort by [PLAYER_fyXy6IJ8] ([TEAM_]). He gets all the way through to the keeper and hits a shot to the left side of the goal, but [PLAYER_jezDYWzN] does a good job to anticipate the direction of the ball and keeps it out.",
"anonymized": "Nice individual effort by [PLAYER] ([TEAM]). He gets all the way through to the keeper and hits a shot to the left side of the goal, but [PLAYER] does a good job to anticipate the direction of the ball and keeps it out.",
"visibility": "shown",
"position": "962000"
},
{
"important": true,
"gameTime": "2 - 15:44",
"gt_gameTime": "2 - 15:32",
"label": "y-card",
"description": "This yellow card was deserved. The tackle by Rachid Ait-Atmane (Gijon) was quite harsh and Alejandro Hernandez didn't hesitate to show him a yellow card.",
"identified": "This yellow card was deserved. The tackle by [PLAYER_8SgbEI0Q] ([TEAM_]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"anonymized": "This yellow card was deserved. The tackle by [PLAYER] ([TEAM]) was quite harsh and [REFEREE] didn't hesitate to show him a yellow card.",
"visibility": "shown",
"position": "944000"
},
{
"important": false,
"gameTime": "2 - 13:58",
"gt_gameTime": "",
"label": "attendance",
"description": "The attendance for today's match is 67118.",
"identified": "The attendance for today's match is 67118.",
"anonymized": "The attendance for today's match is 67118.",
"visibility": "shown",
"position": "838000"
},
{
"important": true,
"gameTime": "2 - 12:28",
"gt_gameTime": "2 - 12:22",
"label": "",
"description": "What a save from Diego Marino! Karim Benzema (Real Madrid) jumps high to meet a cross and glances a promising header from close range, but the goalkeeper pulls off a brilliant stop to keep it out.",
"identified": "What a save from [PLAYER_jezDYWzN]! [PLAYER_tpV0VX0S] ([TEAM_]) jumps high to meet a cross and glances a promising header from close range, but the goalkeeper pulls off a brilliant stop to keep it out.",
"anonymized": "What a save from [PLAYER]! [PLAYER] ([TEAM]) jumps high to meet a cross and glances a promising header from close range, but the goalkeeper pulls off a brilliant stop to keep it out.",
"visibility": "shown",
"position": "748000"
},
{
"important": false,
"gameTime": "2 - 11:15",
"gt_gameTime": "2 - 11:01",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) switches the play to Karim Benzema and their attacking move continues.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) switches the play to [PLAYER_tpV0VX0S] and their attacking move continues.",
"anonymized": "[PLAYER] ([TEAM]) switches the play to [PLAYER] and their attacking move continues.",
"visibility": "shown",
"position": "675000"
},
{
"important": false,
"gameTime": "2 - 10:33",
"gt_gameTime": "2 - 10:28",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) meets a pass on the edge of the penalty area and shoots towards the middle of the goal. He didn't put enough power into the effort, though, and Diego Marino pulls off an easy save.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) meets a pass on the edge of the penalty area and shoots towards the middle of the goal. He didn't put enough power into the effort, though, and [PLAYER_jezDYWzN] pulls off an easy save.",
"anonymized": "[PLAYER] ([TEAM]) meets a pass on the edge of the penalty area and shoots towards the middle of the goal. He didn't put enough power into the effort, though, and [PLAYER] pulls off an easy save.",
"visibility": "shown",
"position": "633000"
},
{
"important": false,
"gameTime": "2 - 09:38",
"gt_gameTime": "",
"label": "",
"description": "Lillo (Gijon) brings an opponent down and Alejandro Hernandez interrupts the game.",
"identified": "[PLAYER_hWxuD1Ac] ([TEAM_]) brings an opponent down and [REFEREE] interrupts the game.",
"anonymized": "[PLAYER] ([TEAM]) brings an opponent down and [REFEREE] interrupts the game.",
"visibility": "shown",
"position": "578000"
},
{
"important": false,
"gameTime": "2 - 07:48",
"gt_gameTime": "",
"label": "",
"description": "Moi Gomez (Gijon) clips a neat ball into the box in the direction of Carlos Carmona, but he can't get on the end of the pass.",
"identified": "[PLAYER_8b86g1el] ([TEAM_]) clips a neat ball into the box in the direction of [PLAYER_hv5DShRR], but he can't get on the end of the pass.",
"anonymized": "[PLAYER] ([TEAM]) clips a neat ball into the box in the direction of [PLAYER], but he can't get on the end of the pass.",
"visibility": "shown",
"position": "468000"
},
{
"important": false,
"gameTime": "2 - 06:43",
"gt_gameTime": "",
"label": "",
"description": "Carlos Carmona (Gijon) crosses the ball into the box, but one of the defending players averts the threat.",
"identified": "[PLAYER_hv5DShRR] ([TEAM_]) crosses the ball into the box, but one of the defending players averts the threat.",
"anonymized": "[PLAYER] ([TEAM]) crosses the ball into the box, but one of the defending players averts the threat.",
"visibility": "shown",
"position": "403000"
},
{
"important": false,
"gameTime": "2 - 04:31",
"gt_gameTime": "",
"label": "",
"description": "Karim Benzema (Real Madrid) seems to be alright and is okay to carry on.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) seems to be alright and is okay to carry on.",
"anonymized": "[PLAYER] ([TEAM]) seems to be alright and is okay to carry on.",
"visibility": "shown",
"position": "271000"
},
{
"important": false,
"gameTime": "2 - 02:35",
"gt_gameTime": "",
"label": "injury",
"description": "Karim Benzema (Real Madrid) is having a really tough time right now. We are about to find out how serious his injury is.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) is having a really tough time right now. We are about to find out how serious his injury is.",
"anonymized": "[PLAYER] ([TEAM]) is having a really tough time right now. We are about to find out how serious his injury is.",
"visibility": "shown",
"position": "155000"
},
{
"important": false,
"gameTime": "2 - 01:56",
"gt_gameTime": "",
"label": "",
"description": "James Rodriguez (Real Madrid) breaks past challenges inside the box, but puts too much pace on his pass to Karim Benzema.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER_tpV0VX0S].",
"anonymized": "[PLAYER] ([TEAM]) breaks past challenges inside the box, but puts too much pace on his pass to [PLAYER].",
"visibility": "shown",
"position": "116000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"gt_gameTime": "",
"label": "whistle",
"description": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"identified": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"anonymized": "The players are back out on the pitch following the half-time break and the second half is about to start.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 46:59",
"gt_gameTime": "",
"label": "",
"description": "The players of both teams deserve praise from their managers and supporters for their performance on the pitch. If they continue playing this attractive football, the fans will surely be satisfied. The hosts dominated much of the first period. The home team makes a lot of passes and attempts to maintain possession, while the visitors look to counter-attack.",
"identified": "The players of both teams deserve praise from their managers and supporters for their performance on the pitch. If they continue playing this attractive football, the fans will surely be satisfied. The hosts dominated much of the first period. The home team makes a lot of passes and attempts to maintain possession, while the visitors look to counter-attack.",
"anonymized": "The players of both teams deserve praise from their managers and supporters for their performance on the pitch. If they continue playing this attractive football, the fans will surely be satisfied. The hosts dominated much of the first period. The home team makes a lot of passes and attempts to maintain possession, while the visitors look to counter-attack.",
"visibility": "shown",
"position": "2819000"
},
{
"important": true,
"gameTime": "1 - 46:13",
"gt_gameTime": "",
"label": "whistle",
"description": "Alejandro Hernandez has ended the first half by blowing the whistle.",
"identified": "[REFEREE] has ended the first half by blowing the whistle.",
"anonymized": "[REFEREE] has ended the first half by blowing the whistle.",
"visibility": "shown",
"position": "2773000"
},
{
"important": false,
"gameTime": "1 - 45:56",
"gt_gameTime": "1 - 44:57",
"label": "corner",
"description": "Keylor Navas leaps to intercept the corner kick from Carlos Carmona (Gijon).",
"identified": "[PLAYER_dQEusiKl] leaps to intercept the corner kick from [PLAYER_hv5DShRR] ([TEAM_]).",
"anonymized": "[PLAYER] leaps to intercept the corner kick from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2756000"
},
{
"important": false,
"gameTime": "1 - 45:25",
"gt_gameTime": "1 - 44:37",
"label": "",
"description": "Fernando Amorebieta (Gijon) wastes a good opportunity as his pass into the box is blocked by the defence. Gijon have been awarded a corner kick.",
"identified": "[PLAYER_nBkGWgvH] ([TEAM_]) wastes a good opportunity as his pass into the box is blocked by the defence. [TEAM_] have been awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) wastes a good opportunity as his pass into the box is blocked by the defence. [TEAM] have been awarded a corner kick.",
"visibility": "shown",
"position": "2725000"
},
{
"important": false,
"gameTime": "2 - 00:00",
"gt_gameTime": "",
"label": "time",
"description": "There will be a minimum of 1 min. of added time.",
"identified": "There will be a minimum of 1 min. of added time.",
"anonymized": "There will be a minimum of 1 min. of added time.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 00:00",
"gt_gameTime": "",
"label": "",
"description": "The linesman makes the right call and Gijon will have a corner. Rachid Ait-Atmane (Gijon) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"identified": "The linesman makes the right call and [TEAM_] will have a corner. [PLAYER_8SgbEI0Q] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"anonymized": "The linesman makes the right call and [TEAM] will have a corner. [PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "1 - 44:08",
"gt_gameTime": "1 - 43:53",
"label": "",
"description": "Luka Modric (Real Madrid) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"anonymized": "[PLAYER] ([TEAM]) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"visibility": "shown",
"position": "2648000"
},
{
"important": false,
"gameTime": "1 - 43:30",
"gt_gameTime": "1 - 43:17",
"label": "",
"description": "Jorge Mere (Gijon) pulls the jersey of one of the opposition players and Alejandro Hernandez blows his whistle for a foul. Real Madrid have a free kick.",
"identified": "[PLAYER_S0I7Fp7h] ([TEAM_]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul. [TEAM_] have a free kick.",
"anonymized": "[PLAYER] ([TEAM]) pulls the jersey of one of the opposition players and [REFEREE] blows his whistle for a foul. [TEAM] have a free kick.",
"visibility": "shown",
"position": "2610000"
},
{
"important": true,
"gameTime": "1 - 42:11",
"gt_gameTime": "1 - 41:40",
"label": "",
"description": "Diego Marino makes a brilliant save! Cristiano Ronaldo (Real Madrid) easily weaves through the defence and fires the ball from mid-range. His low shot goes towards the middle of the goal but is saved by the keeper!",
"identified": "[PLAYER_jezDYWzN] makes a brilliant save! [PLAYER_WGOY4FSt] ([TEAM_]) easily weaves through the defence and fires the ball from mid-range. His low shot goes towards the middle of the goal but is saved by the keeper!",
"anonymized": "[PLAYER] makes a brilliant save! [PLAYER] ([TEAM]) easily weaves through the defence and fires the ball from mid-range. His low shot goes towards the middle of the goal but is saved by the keeper!",
"visibility": "shown",
"position": "2531000"
},
{
"important": true,
"gameTime": "1 - 40:00",
"gt_gameTime": "1 - 39:51",
"label": "y-card",
"description": "Fernando Amorebieta (Gijon) sees a yellow card. He should be more careful because one more challenge like that could result in a red card.",
"identified": "[PLAYER_nBkGWgvH] ([TEAM_]) sees a yellow card. He should be more careful because one more challenge like that could result in a red card.",
"anonymized": "[PLAYER] ([TEAM]) sees a yellow card. He should be more careful because one more challenge like that could result in a red card.",
"visibility": "shown",
"position": "2400000"
},
{
"important": true,
"gameTime": "1 - 38:58",
"gt_gameTime": "1 - 38:49",
"label": "",
"description": "CHANCE! Cristiano Ronaldo finds Lucas (Real Madrid) with a sweet pass, but he can't find the target as his effort from inside the box goes just wide of the right post!",
"identified": "CHANCE! [PLAYER_WGOY4FSt] finds [PLAYER_pEjBDsSH] ([TEAM_]) with a sweet pass, but he can't find the target as his effort from inside the box goes just wide of the right post!",
"anonymized": "CHANCE! [PLAYER] finds [PLAYER] ([TEAM]) with a sweet pass, but he can't find the target as his effort from inside the box goes just wide of the right post!",
"visibility": "shown",
"position": "2338000"
},
{
"important": false,
"gameTime": "1 - 37:12",
"gt_gameTime": "",
"label": "",
"description": "Real Madrid are showing great team chemistry. They are passing it around beautifully. Excellent team work.",
"identified": "[TEAM_] are showing great team chemistry. They are passing it around beautifully. Excellent team work.",
"anonymized": "[TEAM] are showing great team chemistry. They are passing it around beautifully. Excellent team work.",
"visibility": "shown",
"position": "2232000"
},
{
"important": false,
"gameTime": "1 - 35:12",
"gt_gameTime": "",
"label": "",
"description": "Pepe (Real Madrid) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"identified": "[PLAYER_2y9qaipI] ([TEAM_]) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"anonymized": "[PLAYER] ([TEAM]) seems to have picked up a minor injury, but it looks like he will be able to continue playing.",
"visibility": "shown",
"position": "2112000"
},
{
"important": true,
"gameTime": "1 - 35:00",
"gt_gameTime": "1 - 34:37",
"label": "soccer-ball",
"description": "Goal! Ismael Lopez Blanco sends a precise cross into the box, Carlos Carmona (Gijon) latches on to it and puts the ball into the bottom right corner. He makes it 2:1.",
"identified": "Goal! [PLAYER_nBb2U53U] sends a precise cross into the box, [PLAYER_hv5DShRR] ([TEAM_]) latches on to it and puts the ball into the bottom right corner. He makes it 2:1.",
"anonymized": "Goal! [PLAYER] sends a precise cross into the box, [PLAYER] ([TEAM]) latches on to it and puts the ball into the bottom right corner. He makes it 2:1.",
"visibility": "shown",
"position": "2100000"
},
{
"important": false,
"gameTime": "1 - 33:56",
"gt_gameTime": "1 - 34:01",
"label": "corner",
"description": "Carlos Carmona (Gijon) sends in a poor cross from the corner and Keylor Navas has no trouble gathering it.",
"identified": "[PLAYER_hv5DShRR] ([TEAM_]) sends in a poor cross from the corner and [PLAYER_dQEusiKl] has no trouble gathering it.",
"anonymized": "[PLAYER] ([TEAM]) sends in a poor cross from the corner and [PLAYER] has no trouble gathering it.",
"visibility": "shown",
"position": "2036000"
},
{
"important": false,
"gameTime": "1 - 33:26",
"gt_gameTime": "1 - 33:27",
"label": "",
"description": "Lillo (Gijon) races towards goal but the defender gets back well to make a challenge. The ball goes out of play. Gijon are awarded a corner kick.",
"identified": "[PLAYER_hWxuD1Ac] ([TEAM_]) races towards goal but the defender gets back well to make a challenge. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "2006000"
},
{
"important": false,
"gameTime": "1 - 32:58",
"gt_gameTime": "1 - 32:44",
"label": "injury",
"description": "Looks like Pepe (Real Madrid) is struggling after picking up a knock. Hopefully he can run it off.",
"identified": "Looks like [PLAYER_2y9qaipI] ([TEAM_]) is struggling after picking up a knock. Hopefully he can run it off.",
"anonymized": "Looks like [PLAYER] ([TEAM]) is struggling after picking up a knock. Hopefully he can run it off.",
"visibility": "shown",
"position": "1978000"
},
{
"important": false,
"gameTime": "1 - 31:43",
"gt_gameTime": "1 - 31:33",
"label": "corner",
"description": "The resulting corner from Luka Modric (Real Madrid) is cleared.",
"identified": "The resulting corner from [PLAYER_bZWyoJnA] ([TEAM_]) is cleared.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) is cleared.",
"visibility": "shown",
"position": "1903000"
},
{
"important": false,
"gameTime": "1 - 31:26",
"gt_gameTime": "1 - 31:01",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) flights in the cross, but the defender is alert and clears to safety. The ball goes out for a corner. Real Madrid can continue in their attacking effort.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) flights in the cross, but the defender is alert and clears to safety. The ball goes out for a corner. [TEAM_] can continue in their attacking effort.",
"anonymized": "[PLAYER] ([TEAM]) flights in the cross, but the defender is alert and clears to safety. The ball goes out for a corner. [TEAM] can continue in their attacking effort.",
"visibility": "shown",
"position": "1886000"
},
{
"important": false,
"gameTime": "1 - 29:39",
"gt_gameTime": "1 - 29:09",
"label": "corner",
"description": "Douglas Pereira (Gijon) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"identified": "[PLAYER_UuGeS7PS] ([TEAM_]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"anonymized": "[PLAYER] ([TEAM]) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"visibility": "shown",
"position": "1779000"
},
{
"important": false,
"gameTime": "1 - 28:58",
"gt_gameTime": "1 - 28:50",
"label": "",
"description": "Keylor Navas hears the fans clapping his superb goalkeeping. Moi Gomez (Gijon) shoots from the edge of the box towards the bottom right corner, but the goalkeeper makes a magnificent save. The ball goes behind for a corner. Gijon will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_dQEusiKl] hears the fans clapping his superb goalkeeping. [PLAYER_8b86g1el] ([TEAM_]) shoots from the edge of the box towards the bottom right corner, but the goalkeeper makes a magnificent save. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] hears the fans clapping his superb goalkeeping. [PLAYER] ([TEAM]) shoots from the edge of the box towards the bottom right corner, but the goalkeeper makes a magnificent save. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1738000"
},
{
"important": false,
"gameTime": "1 - 28:28",
"gt_gameTime": "1 - 28:38",
"label": "corner",
"description": "Carlos Carmona (Gijon) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_hv5DShRR] ([TEAM_]) decides to speed play up with a short corner kick.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up with a short corner kick.",
"visibility": "shown",
"position": "1708000"
},
{
"important": false,
"gameTime": "1 - 28:19",
"gt_gameTime": "1 - 28:08",
"label": "",
"description": "Moi Gomez (Gijon) sends a teasing cross into the area, but Keylor Navas intercepts the ball. Gijon earn a corner.",
"identified": "[PLAYER_8b86g1el] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_dQEusiKl] intercepts the ball. [TEAM_] earn a corner.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball. [TEAM] earn a corner.",
"visibility": "shown",
"position": "1699000"
},
{
"important": false,
"gameTime": "1 - 27:12",
"gt_gameTime": "1 - 26:44",
"label": "",
"description": "Moi Gomez (Gijon) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it.",
"identified": "[PLAYER_8b86g1el] ([TEAM_]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it.",
"anonymized": "[PLAYER] ([TEAM]) sends a lofted cross into the penalty area. Unfortunately for him, the opponent's defence deals with his cross comfortably and intercepts it.",
"visibility": "shown",
"position": "1632000"
},
{
"important": false,
"gameTime": "1 - 25:27",
"gt_gameTime": "1 - 25:14",
"label": "",
"description": "Moi Gomez (Gijon) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"identified": "[PLAYER_8b86g1el] ([TEAM_]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"anonymized": "[PLAYER] ([TEAM]) delivers a long ball, but it lacks enough power to reach his teammates and is intercepted by one of the defenders.",
"visibility": "shown",
"position": "1527000"
},
{
"important": false,
"gameTime": "1 - 24:24",
"gt_gameTime": "1 - 23:56",
"label": "",
"description": "Luka Modric (Real Madrid) sends a pass into the box, but his attempt is thwarted and cleared.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) sends a pass into the box, but his attempt is thwarted and cleared.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the box, but his attempt is thwarted and cleared.",
"visibility": "shown",
"position": "1464000"
},
{
"important": false,
"gameTime": "1 - 22:49",
"gt_gameTime": "1 - 22:41",
"label": "",
"description": "Lucas (Real Madrid) gets on the ball and beats an opponent, but his run is stopped by the referee Alejandro Hernandez who sees an offensive foul.",
"identified": "[PLAYER_pEjBDsSH] ([TEAM_]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul.",
"anonymized": "[PLAYER] ([TEAM]) gets on the ball and beats an opponent, but his run is stopped by the referee [REFEREE] who sees an offensive foul.",
"visibility": "shown",
"position": "1369000"
},
{
"important": true,
"gameTime": "1 - 21:09",
"gt_gameTime": "1 - 20:24",
"label": "",
"description": "Real Madrid have a goal ruled out for offside!",
"identified": "[TEAM_] have a goal ruled out for offside!",
"anonymized": "[TEAM] have a goal ruled out for offside!",
"visibility": "shown",
"position": "1269000"
},
{
"important": false,
"gameTime": "1 - 20:09",
"gt_gameTime": "1 - 20:01",
"label": "corner",
"description": "James Rodriguez (Real Madrid) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"anonymized": "[PLAYER] ([TEAM]) steps up to take the corner. He launches the ball into the penalty area, but it only finds the head of an opposing player who clears the danger.",
"visibility": "shown",
"position": "1209000"
},
{
"important": false,
"gameTime": "1 - 19:52",
"gt_gameTime": "1 - 19:39",
"label": "",
"description": "A cross from James Rodriguez (Real Madrid) fails to reach the box as the defence clears the ball away to safety. The referee and one of his assistants signal for a corner kick to Real Madrid.",
"identified": "A cross from [PLAYER_MPaioN57] ([TEAM_]) fails to reach the box as the defence clears the ball away to safety. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "A cross from [PLAYER] ([TEAM]) fails to reach the box as the defence clears the ball away to safety. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "1192000"
},
{
"important": true,
"gameTime": "1 - 18:00",
"gt_gameTime": "1 - 17:41",
"label": "soccer-ball",
"description": "A perfect lofted pass from Nacho finds Cristiano Ronaldo (Real Madrid), who jumps highest and steers a close-range header straight into the bottom left corner. His effort was both strong and precise, and Diego Marino had no chance of stopping that. 2:0.",
"identified": "A perfect lofted pass from [PLAYER_fyXy6IJ8] finds [PLAYER_WGOY4FSt] ([TEAM_]), who jumps highest and steers a close-range header straight into the bottom left corner. His effort was both strong and precise, and [PLAYER_jezDYWzN] had no chance of stopping that. 2:0.",
"anonymized": "A perfect lofted pass from [PLAYER] finds [PLAYER] ([TEAM]), who jumps highest and steers a close-range header straight into the bottom left corner. His effort was both strong and precise, and [PLAYER] had no chance of stopping that. 2:0.",
"visibility": "shown",
"position": "1080000"
},
{
"important": false,
"gameTime": "1 - 16:55",
"gt_gameTime": "1 - 16:37",
"label": "",
"description": "A cross from a mid-range free kick, taken by Gijon, is overhit and the ball goes out of play.",
"identified": "A cross from a mid-range free kick, taken by [TEAM_], is overhit and the ball goes out of play.",
"anonymized": "A cross from a mid-range free kick, taken by [TEAM], is overhit and the ball goes out of play.",
"visibility": "shown",
"position": "1015000"
},
{
"important": false,
"gameTime": "1 - 16:34",
"gt_gameTime": "1 - 16:12",
"label": "",
"description": "Gijon are awarded a free kick. Let's see what they create from this. Alejandro Hernandez blows his whistle and signals a foul after Danilo (Real Madrid) brought his opponent down.",
"identified": "[TEAM_] are awarded a free kick. Let's see what they create from this. [REFEREE] blows his whistle and signals a foul after [PLAYER_KUjvgUhB] ([TEAM_]) brought his opponent down.",
"anonymized": "[TEAM] are awarded a free kick. Let's see what they create from this. [REFEREE] blows his whistle and signals a foul after [PLAYER] ([TEAM]) brought his opponent down.",
"visibility": "shown",
"position": "994000"
},
{
"important": false,
"gameTime": "1 - 15:20",
"gt_gameTime": "1 - 15:29",
"label": "",
"description": "The ball is cleared after Lucas (Real Madrid) attempted to dribble past an opposing player.",
"identified": "The ball is cleared after [PLAYER_pEjBDsSH] ([TEAM_]) attempted to dribble past an opposing player.",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player.",
"visibility": "shown",
"position": "920000"
},
{
"important": false,
"gameTime": "1 - 13:01",
"gt_gameTime": "1 - 12:19",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) leaps highest to meet the resulting set piece and sends his header way off target.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) leaps highest to meet the resulting set piece and sends his header way off target.",
"anonymized": "[PLAYER] ([TEAM]) leaps highest to meet the resulting set piece and sends his header way off target.",
"visibility": "shown",
"position": "781000"
},
{
"important": false,
"gameTime": "1 - 12:21",
"gt_gameTime": "1 - 12:16",
"label": "corner",
"description": "Luka Modric (Real Madrid) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"anonymized": "[PLAYER] ([TEAM]) goes over to take the corner kick and it looks like he will swing the ball into the penalty box.",
"visibility": "shown",
"position": "741000"
},
{
"important": false,
"gameTime": "1 - 12:01",
"gt_gameTime": "1 - 11:51",
"label": "",
"description": "James Rodriguez (Real Madrid) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked. The referee points to the corner flag and Real Madrid will take a corner.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked. The referee points to the corner flag and [TEAM_] will take a corner.",
"anonymized": "[PLAYER] ([TEAM]) collects a pass and finds himself in a good position to strike from the edge of the box, but his attempt is blocked. The referee points to the corner flag and [TEAM] will take a corner.",
"visibility": "shown",
"position": "721000"
},
{
"important": false,
"gameTime": "1 - 11:29",
"gt_gameTime": "1 - 11:14",
"label": "corner",
"description": "Carlos Carmona (Gijon) fails to deliver a decent cross from the corner and the ball goes out of play.",
"identified": "[PLAYER_hv5DShRR] ([TEAM_]) fails to deliver a decent cross from the corner and the ball goes out of play.",
"anonymized": "[PLAYER] ([TEAM]) fails to deliver a decent cross from the corner and the ball goes out of play.",
"visibility": "shown",
"position": "689000"
},
{
"important": false,
"gameTime": "1 - 11:12",
"gt_gameTime": "1 - 11:09",
"label": "",
"description": "This shall not pass! Diego Marino (Gijon) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender. Gijon have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"identified": "This shall not pass! [PLAYER_jezDYWzN] ([TEAM_]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender. [TEAM_] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"anonymized": "This shall not pass! [PLAYER] ([TEAM]) lines up a shot from the edge of the box and goes for goal, but the effort is well blocked by a defender. [TEAM] have been awarded a corner kick. The referee and one of his assistants both point at the corner flag.",
"visibility": "shown",
"position": "672000"
},
{
"important": false,
"gameTime": "1 - 10:49",
"gt_gameTime": "1 - 10:45",
"label": "",
"description": "Carlos Carmona (Gijon) serves up a nice cross, but Keylor Navas punches the ball away.",
"identified": "[PLAYER_hv5DShRR] ([TEAM_]) serves up a nice cross, but [PLAYER_dQEusiKl] punches the ball away.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but [PLAYER] punches the ball away.",
"visibility": "shown",
"position": "649000"
}
]
} |