File size: 80,161 Bytes
23b035e |
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 |
{
"timestamp": "1453663800",
"score": "1 - 1",
"round": "21",
"teams": [
"Real Madrid",
"Betis"
],
"lineup": {
"home": {
"tactic": "1-4-2-3-1",
"players": [
{
"hash": "tbjcsOoa",
"name": "Adan A.",
"captain": "",
"detail_link": "/player/adan-antonio/tbjcsOoa/",
"short_name": "Adan",
"shirt_number": "13",
"country": "Spain",
"facts": [],
"lineup": 1,
"starting": true,
"long_name": "Antonio Adan"
},
{
"hash": "Am1OnaHH",
"name": "Castro R.",
"captain": "",
"detail_link": "/player/castro-ruben/Am1OnaHH/",
"short_name": "Castro",
"shirt_number": "24",
"country": "Spain",
"facts": [],
"lineup": 11,
"starting": true,
"long_name": "Ruben Castro"
},
{
"hash": "SEMyNX6C",
"name": "Cejudo A.",
"captain": "",
"detail_link": "/player/cejudo-alvaro/SEMyNX6C/",
"short_name": "Cejudo",
"shirt_number": "16",
"country": "Spain",
"facts": [
{
"type": "3",
"time": "7' Cejudo A. (Ruiz F.)",
"description": "Goal",
"linked_player_hash": ""
},
{
"type": "6",
"time": "76'",
"description": "Portillo F.",
"linked_player_hash": "4O57dlJp"
}
],
"lineup": 10,
"starting": true,
"long_name": "Alvaro Cejudo"
},
{
"hash": "xM8OEZ0o",
"name": "Gonzalez B.",
"captain": "",
"detail_link": "/player/gonzalez-bruno/xM8OEZ0o/",
"short_name": "Gonzalez",
"shirt_number": "4",
"country": "Spain",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Bruno Gonzalez"
},
{
"hash": "j3Q6pEtd",
"name": "Kadir F.",
"captain": "",
"detail_link": "/player/kadir-foued/j3Q6pEtd/",
"short_name": "Kadir",
"shirt_number": "5",
"country": "Algeria",
"facts": [
{
"type": "6",
"time": "58'",
"description": "Joaquin",
"linked_player_hash": "I3ySbl3q"
}
],
"lineup": 8,
"starting": true,
"long_name": "Foued Kadir"
},
{
"hash": "p46S3F3G",
"name": "Molinero F.",
"captain": "",
"detail_link": "/player/molinero-francisco/p46S3F3G/",
"short_name": "Molinero Calderon",
"shirt_number": "2",
"country": "Spain",
"facts": [
{
"type": "1",
"time": "69' Molinero F. (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 2,
"starting": true,
"long_name": "Francisco Jose Molinero Calderon"
},
{
"hash": "EoZFLVTF",
"name": "N'Diaye A.",
"captain": "",
"detail_link": "/player/n-diaye-alfred/EoZFLVTF/",
"short_name": "N'Diaye",
"shirt_number": "18",
"country": "Senegal",
"facts": [],
"lineup": 6,
"starting": true,
"long_name": "Alfred N'Diaye"
},
{
"hash": "0GHXKCzN",
"name": "Petros",
"captain": "",
"detail_link": "/player/petros/0GHXKCzN/",
"short_name": "Petros",
"shirt_number": "25",
"country": "Brazil",
"facts": [
{
"type": "1",
"time": "61' Petros (Roughing)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 7,
"starting": true,
"long_name": "Petros"
},
{
"hash": "dIpXfWsl",
"name": "Pezzella G.",
"captain": "",
"detail_link": "/player/pezzella-german/dIpXfWsl/",
"short_name": "Pezzella",
"shirt_number": "20",
"country": "Argentina",
"facts": [],
"lineup": 3,
"starting": true,
"long_name": "German Pezzella"
},
{
"hash": "l6HSH2Uo",
"name": "Ruiz F.",
"captain": "",
"detail_link": "/player/ruiz-fabian/l6HSH2Uo/",
"short_name": "Ruiz",
"shirt_number": "52",
"country": "Spain",
"facts": [
{
"type": "8",
"time": "7' Cejudo A. (Ruiz F.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "51'",
"description": "Ceballos D.",
"linked_player_hash": "zPYmze7F"
}
],
"lineup": 9,
"starting": true,
"long_name": "Fabian Ruiz"
},
{
"hash": "2H2ruXmP",
"name": "Vargas J.",
"captain": "",
"detail_link": "/player/vargas-juan/2H2ruXmP/",
"short_name": "Vargas",
"shirt_number": "11",
"country": "Peru",
"facts": [
{
"type": "1",
"time": "58' Vargas J. (Holding)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"lineup": 5,
"starting": true,
"long_name": "Juan Vargas"
},
{
"hash": "zPYmze7F",
"name": "Ceballos D.",
"captain": "",
"detail_link": "/player/ceballos-dani/zPYmze7F/",
"short_name": "Ceballos",
"shirt_number": "10",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "51'",
"description": "Ruiz F.",
"linked_player_hash": "l6HSH2Uo"
}
],
"lineup": null,
"starting": false,
"long_name": "Daniel Ceballos"
},
{
"hash": "dWZTBmVT",
"name": "Digard D.",
"captain": "",
"detail_link": "/player/digard-didier/dWZTBmVT/",
"short_name": "Digard",
"shirt_number": "15",
"country": "France",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Didier Digard"
},
{
"hash": "r7HW6knF",
"name": "Gimenez D.",
"captain": "",
"detail_link": "/player/gimenez-daniel/r7HW6knF/",
"short_name": "Gimenez",
"shirt_number": "1",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Daniel Gimenez"
},
{
"hash": "I3ySbl3q",
"name": "Joaquin",
"captain": "",
"detail_link": "/player/joaquin/I3ySbl3q/",
"short_name": "Joaquin",
"shirt_number": "7",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "58'",
"description": "Kadir F.",
"linked_player_hash": "j3Q6pEtd"
}
],
"lineup": null,
"starting": false,
"long_name": "Joaquin"
},
{
"hash": "M5LMtR16",
"name": "Molina J.",
"captain": "",
"detail_link": "/player/molina-jorge/M5LMtR16/",
"short_name": "Molina",
"shirt_number": "19",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Jorge Molina"
},
{
"hash": "4O57dlJp",
"name": "Portillo F.",
"captain": "",
"detail_link": "/player/portillo-francisco/4O57dlJp/",
"short_name": "Portillo",
"shirt_number": "22",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "76'",
"description": "Cejudo A.",
"linked_player_hash": "SEMyNX6C"
}
],
"lineup": null,
"starting": false,
"long_name": "Francisco Portillo"
},
{
"hash": "2uMbqK4a",
"name": "Varela F.",
"captain": "",
"detail_link": "/player/varela-francisco/2uMbqK4a/",
"short_name": "Varela",
"shirt_number": "33",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Francisco Varela"
}
],
"coach": [
{
"hash": "6JOasSl4",
"name": "Merino J.",
"captain": "",
"detail_link": "/player/merino-juan/6JOasSl4/",
"short_name": "Merino J.",
"shirt_number": "",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Juan Merino"
}
]
},
"away": {
"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": [
{
"type": "3",
"time": "71' Benzema K. (Rodriguez J.)",
"description": "Goal",
"linked_player_hash": ""
}
],
"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": [
{
"type": "1",
"time": "64' Danilo (Tripping)",
"description": "Yellow Card",
"linked_player_hash": ""
},
{
"type": "6",
"time": "64'",
"description": "Carvajal D.",
"linked_player_hash": "rZh5FTHE"
}
],
"lineup": 2,
"starting": true,
"long_name": "Danilo"
},
{
"hash": "ULLmpdEb",
"name": "Isco",
"captain": "",
"detail_link": "/player/isco/ULLmpdEb/",
"short_name": "Isco",
"shirt_number": "22",
"country": "Spain",
"facts": [],
"lineup": 8,
"starting": true,
"long_name": "Isco"
},
{
"hash": "CloE7jjr",
"name": "Kroos T.",
"captain": "",
"detail_link": "/player/kroos-toni/CloE7jjr/",
"short_name": "Kroos",
"shirt_number": "8",
"country": "Germany",
"facts": [],
"lineup": 7,
"starting": true,
"long_name": "Toni Kroos"
},
{
"hash": "zmAm2AEH",
"name": "Marcelo",
"captain": "(C)",
"detail_link": "/player/marcelo/zmAm2AEH/",
"short_name": "Marcelo",
"shirt_number": "12",
"country": "Brazil",
"facts": [],
"lineup": 5,
"starting": true,
"long_name": "Marcelo"
},
{
"hash": "bZWyoJnA",
"name": "Modric L.",
"captain": "",
"detail_link": "/player/modric-luka/bZWyoJnA/",
"short_name": "Modric",
"shirt_number": "19",
"country": "Croatia",
"facts": [],
"lineup": 6,
"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": "MPaioN57",
"name": "Rodriguez J.",
"captain": "",
"detail_link": "/player/rodriguez-james/MPaioN57/",
"short_name": "Rodriguez",
"shirt_number": "10",
"country": "Colombia",
"facts": [
{
"type": "8",
"time": "71' Benzema K. (Rodriguez J.)",
"description": "Assistance",
"linked_player_hash": ""
},
{
"type": "6",
"time": "80'",
"description": "Jese",
"linked_player_hash": "6BdSXunk"
}
],
"lineup": 9,
"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": [],
"lineup": 11,
"starting": true,
"long_name": "Cristiano Ronaldo"
},
{
"hash": "t20vQIvC",
"name": "Varane R.",
"captain": "",
"detail_link": "/player/varane-raphael/t20vQIvC/",
"short_name": "Varane",
"shirt_number": "2",
"country": "France",
"facts": [],
"lineup": 4,
"starting": true,
"long_name": "Raphael Varane"
},
{
"hash": "rZh5FTHE",
"name": "Carvajal D.",
"captain": "",
"detail_link": "/player/carvajal-daniel/rZh5FTHE/",
"short_name": "Carvajal",
"shirt_number": "15",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "64'",
"description": "Danilo",
"linked_player_hash": "KUjvgUhB"
},
{
"type": "1",
"time": "90+2' Carvajal D. (Unsportsmanlike conduct)",
"description": "Yellow Card",
"linked_player_hash": ""
}
],
"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": "8Wp8ZCLG",
"name": "Fernandez N.",
"captain": "",
"detail_link": "/player/nacho/8Wp8ZCLG/",
"short_name": "Fernandez",
"shirt_number": "6",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Nacho Fernandez"
},
{
"hash": "6BdSXunk",
"name": "Jese",
"captain": "",
"detail_link": "/player/jese/6BdSXunk/",
"short_name": "Jese",
"shirt_number": "20",
"country": "Spain",
"facts": [
{
"type": "7",
"time": "80'",
"description": "Rodriguez J.",
"linked_player_hash": "MPaioN57"
}
],
"lineup": null,
"starting": false,
"long_name": "Jese"
},
{
"hash": "4f084TL7",
"name": "Kovacic M.",
"captain": "",
"detail_link": "/player/kovacic-mateo/4f084TL7/",
"short_name": "Kovacic",
"shirt_number": "16",
"country": "Croatia",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Mateo Kovacic"
},
{
"hash": "pEjBDsSH",
"name": "Lucas",
"captain": "",
"detail_link": "/player/lucas/pEjBDsSH/",
"short_name": "Vazquez",
"shirt_number": "18",
"country": "Spain",
"facts": [],
"lineup": null,
"starting": false,
"long_name": "Lucas Vazquez"
}
],
"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"
}
]
}
},
"referee": [
"Munuera J."
],
"venue": [
"Estadio Benito Villamar\u00edn (Sevilla)"
],
"attendance": [
"48 111"
],
"referee_matched": [
"Juan Martinez Munuera"
],
"referee_found": [
"Juan Martinez Munuera"
],
"coach_matched": [
"Zinedine Zidane",
"Juan Merino"
],
"gameHomeTeam": "Betis",
"home": {
"name": "Betis",
"detail_link": "/team/betis/vJbTeCGP",
"hash": "vJbTeCGP",
"names": [
"Betis",
"betis"
]
},
"gameAwayTeam": "Real Madrid",
"away": {
"name": "Real Madrid",
"detail_link": "/team/real-madrid/W8mj7MDD",
"hash": "W8mj7MDD",
"names": [
"Real Madrid",
"real madrid"
]
},
"gameDate": "24/01/2016 - 20:30",
"annotations": [
{
"important": false,
"gameTime": "2 - 49:59",
"label": "",
"description": "It was an attractive offensive game and the fans have no reason to be upset. An impressive display from the visitors, they had the better of it. The home team adopted a defensive style of play, while the away team tried to prevail using combination football.",
"identified": "It was an attractive offensive game and the fans have no reason to be upset. An impressive display from the visitors, they had the better of it. The home team adopted a defensive style of play, while the away team tried to prevail using combination football.",
"anonymized": "It was an attractive offensive game and the fans have no reason to be upset. An impressive display from the visitors, they had the better of it. The home team adopted a defensive style of play, while the away team tried to prevail using combination football.",
"visibility": "shown",
"position": "2999000"
},
{
"important": true,
"gameTime": "2 - 49:11",
"label": "whistle",
"description": "The referee blows for the end of today's match.",
"identified": "The referee blows for the end of today's match.",
"anonymized": "The referee blows for the end of today's match.",
"visibility": "shown",
"position": "2951000"
},
{
"important": true,
"gameTime": "2 - 46:58",
"label": "y-card",
"description": "The foul by Daniel Carvajal (Real Madrid) is worthy of a card and a yellow is duly shown by Juan Martinez Munuera.",
"identified": "The foul by [PLAYER_rZh5FTHE] ([TEAM_]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"anonymized": "The foul by [PLAYER] ([TEAM]) is worthy of a card and a yellow is duly shown by [REFEREE].",
"visibility": "shown",
"position": "2818000"
},
{
"important": true,
"gameTime": "2 - 45:30",
"label": "",
"description": "Ruben Castro (Betis) jinks his way past two defenders and from the edge of the box has an effort which goes just wide of the left post.",
"identified": "[PLAYER_Am1OnaHH] ([TEAM_]) jinks his way past two defenders and from the edge of the box has an effort which goes just wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) jinks his way past two defenders and from the edge of the box has an effort which goes just wide of the left post.",
"visibility": "shown",
"position": "2730000"
},
{
"important": false,
"gameTime": "3 - 00:00",
"label": "time",
"description": "4 min. of stoppage-time to be played.",
"identified": "4 min. of stoppage-time to be played.",
"anonymized": "4 min. of stoppage-time to be played.",
"visibility": "shown",
"position": "0"
},
{
"important": false,
"gameTime": "2 - 43:13",
"label": "",
"description": "Joaquin (Betis) is unable to feed an accurate cross into the box.",
"identified": "[PLAYER_I3ySbl3q] ([TEAM_]) is unable to feed an accurate cross into the box.",
"anonymized": "[PLAYER] ([TEAM]) is unable to feed an accurate cross into the box.",
"visibility": "shown",
"position": "2593000"
},
{
"important": false,
"gameTime": "2 - 42:20",
"label": "",
"description": "Isco (Real Madrid) is offside and the linesman raises his flag.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) is offside and the linesman raises his flag.",
"anonymized": "[PLAYER] ([TEAM]) is offside and the linesman raises his flag.",
"visibility": "shown",
"position": "2540000"
},
{
"important": false,
"gameTime": "2 - 42:04",
"label": "corner",
"description": "Toni Kroos (Real Madrid) will deliver the corner kick.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) will deliver the corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will deliver the corner kick.",
"visibility": "shown",
"position": "2524000"
},
{
"important": true,
"gameTime": "2 - 41:43",
"label": "",
"description": "Half-chance! Jese (Real Madrid) plays a pass into the box, but Antonio Adan reacts well to snuff out the attack. The linesman makes the right call and Real Madrid will have a corner.",
"identified": "Half-chance! [PLAYER_6BdSXunk] ([TEAM_]) plays a pass into the box, but [PLAYER_tbjcsOoa] reacts well to snuff out the attack. The linesman makes the right call and [TEAM_] will have a corner.",
"anonymized": "Half-chance! [PLAYER] ([TEAM]) plays a pass into the box, but [PLAYER] reacts well to snuff out the attack. The linesman makes the right call and [TEAM] will have a corner.",
"visibility": "shown",
"position": "2503000"
},
{
"important": true,
"gameTime": "2 - 39:59",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) has a good chance to get on the scoresheet and fires the ball towards goal from the edge of the penalty box, but it goes narrowly over the crossbar.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) has a good chance to get on the scoresheet and fires the ball towards goal from the edge of the penalty box, but it goes narrowly over the crossbar.",
"anonymized": "[PLAYER] ([TEAM]) has a good chance to get on the scoresheet and fires the ball towards goal from the edge of the penalty box, but it goes narrowly over the crossbar.",
"visibility": "shown",
"position": "2399000"
},
{
"important": false,
"gameTime": "2 - 37:15",
"label": "",
"description": "Karim Benzema (Real Madrid) clips an inviting cross into the box, but there's no one in a position to get on the end of it.",
"identified": "[PLAYER_tpV0VX0S] ([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": "2235000"
},
{
"important": false,
"gameTime": "2 - 35:13",
"label": "",
"description": "Daniel Carvajal (Real Madrid) sends a teasing cross into the area, but Antonio Adan intercepts the ball.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) sends a teasing cross into the area, but [PLAYER_tbjcsOoa] intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a teasing cross into the area, but [PLAYER] intercepts the ball.",
"visibility": "shown",
"position": "2113000"
},
{
"important": true,
"gameTime": "2 - 34:09",
"label": "substitution",
"description": "Zinedine Zidane decides to make a substitution. James Rodriguez will be replaced by Jese (Real Madrid).",
"identified": "[COACH_b7zuQEqO] decides to make a substitution. [PLAYER_MPaioN57] will be replaced by [PLAYER_6BdSXunk] ([TEAM_]).",
"anonymized": "[COACH] decides to make a substitution. [PLAYER] will be replaced by [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2049000"
},
{
"important": true,
"gameTime": "2 - 33:52",
"label": "",
"description": "Karim Benzema (Real Madrid) had a golden opportunity. He volleyed from point blank range towards the left side of the goal, but Antonio Adan was alert and made an amazing save!",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) had a golden opportunity. He volleyed from point blank range towards the left side of the goal, but [PLAYER_tbjcsOoa] was alert and made an amazing save!",
"anonymized": "[PLAYER] ([TEAM]) had a golden opportunity. He volleyed from point blank range towards the left side of the goal, but [PLAYER] was alert and made an amazing save!",
"visibility": "shown",
"position": "2032000"
},
{
"important": false,
"gameTime": "2 - 33:29",
"label": "corner",
"description": "Toni Kroos (Real Madrid) decides to speed play up with a short corner kick.",
"identified": "[PLAYER_CloE7jjr] ([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": "2009000"
},
{
"important": true,
"gameTime": "2 - 33:00",
"label": "",
"description": "James Rodriguez (Real Madrid) fashions a shot from the edge of the box after receiving an accurate pass. Antonio Adan makes a stunning save to stop the effort from flying into the left side of the goal. The referee blows his whistle, Real Madrid are awarded a corner kick.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) fashions a shot from the edge of the box after receiving an accurate pass. [PLAYER_tbjcsOoa] makes a stunning save to stop the effort from flying into the left side of the goal. The referee blows his whistle, [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) fashions a shot from the edge of the box after receiving an accurate pass. [PLAYER] makes a stunning save to stop the effort from flying into the left side of the goal. The referee blows his whistle, [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "1980000"
},
{
"important": false,
"gameTime": "2 - 30:54",
"label": "",
"description": "The resulting set piece, sent into the penalty area by Toni Kroos (Real Madrid), was easily dealt with by one of the defenders.",
"identified": "The resulting set piece, sent into the penalty area by [PLAYER_CloE7jjr] ([TEAM_]), was easily dealt with by one of the defenders.",
"anonymized": "The resulting set piece, sent into the penalty area by [PLAYER] ([TEAM]), was easily dealt with by one of the defenders.",
"visibility": "shown",
"position": "1854000"
},
{
"important": true,
"gameTime": "2 - 30:29",
"label": "substitution",
"description": "The substitution has been made. Francisco Portillo (Betis) has replaced Alvaro Cejudo.",
"identified": "The substitution has been made. [PLAYER_4O57dlJp] ([TEAM_]) has replaced [PLAYER_SEMyNX6C].",
"anonymized": "The substitution has been made. [PLAYER] ([TEAM]) has replaced [PLAYER].",
"visibility": "shown",
"position": "1829000"
},
{
"important": false,
"gameTime": "2 - 29:38",
"label": "",
"description": "Alvaro Cejudo (Betis) is penalised for holding. Juan Martinez Munuera signals a set piece. Real Madrid earn a free kick.",
"identified": "[PLAYER_SEMyNX6C] ([TEAM_]) is penalised for holding. [REFEREE] signals a set piece. [TEAM_] earn a free kick.",
"anonymized": "[PLAYER] ([TEAM]) is penalised for holding. [REFEREE] signals a set piece. [TEAM] earn a free kick.",
"visibility": "shown",
"position": "1778000"
},
{
"important": false,
"gameTime": "2 - 29:19",
"label": "",
"description": "Isco (Real Madrid) slides a pass forward, but one of the defenders cuts it out.",
"identified": "[PLAYER_ULLmpdEb] ([TEAM_]) slides a pass forward, but one of the defenders cuts it out.",
"anonymized": "[PLAYER] ([TEAM]) slides a pass forward, but one of the defenders cuts it out.",
"visibility": "shown",
"position": "1759000"
},
{
"important": false,
"gameTime": "2 - 27:13",
"label": "corner",
"description": "The resulting corner from Toni Kroos (Real Madrid) only finds one of the defenders, who heads it out of danger.",
"identified": "The resulting corner from [PLAYER_CloE7jjr] ([TEAM_]) only finds one of the defenders, who heads it out of danger.",
"anonymized": "The resulting corner from [PLAYER] ([TEAM]) only finds one of the defenders, who heads it out of danger.",
"visibility": "shown",
"position": "1633000"
},
{
"important": false,
"gameTime": "2 - 26:57",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. The ball goes behind for a corner. Real Madrid will have an opportunity to threaten the opposition's goal.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. The ball goes behind for a corner. [TEAM_] will have an opportunity to threaten the opposition's goal.",
"anonymized": "[PLAYER] ([TEAM]) delivers a fine lofted cross into the penalty area, but it's cleared by an opposing player. The ball goes behind for a corner. [TEAM] will have an opportunity to threaten the opposition's goal.",
"visibility": "shown",
"position": "1617000"
},
{
"important": true,
"gameTime": "2 - 25:52",
"label": "soccer-ball",
"description": "Goal! Karim Benzema (Real Madrid) fires home from very close range after latching on to a pass from James Rodriguez. The score is 1:1.",
"identified": "Goal! [PLAYER_tpV0VX0S] ([TEAM_]) fires home from very close range after latching on to a pass from [PLAYER_MPaioN57]. The score is 1:1.",
"anonymized": "Goal! [PLAYER] ([TEAM]) fires home from very close range after latching on to a pass from [PLAYER]. The score is 1:1.",
"visibility": "shown",
"position": "1552000"
},
{
"important": true,
"gameTime": "2 - 24:18",
"label": "",
"description": "Daniel Carvajal (Real Madrid) unleashes a decent effort from just outside the box which goes narrowly wide of the left post.",
"identified": "[PLAYER_rZh5FTHE] ([TEAM_]) unleashes a decent effort from just outside the box which goes narrowly wide of the left post.",
"anonymized": "[PLAYER] ([TEAM]) unleashes a decent effort from just outside the box which goes narrowly wide of the left post.",
"visibility": "shown",
"position": "1458000"
},
{
"important": true,
"gameTime": "2 - 23:43",
"label": "y-card",
"description": "Juan Martinez Munuera shows the yellow card to Francisco Jose Molinero Calderon (Betis) for a heavy challenge.",
"identified": "[REFEREE] shows the yellow card to [PLAYER_p46S3F3G] ([TEAM_]) for a heavy challenge.",
"anonymized": "[REFEREE] shows the yellow card to [PLAYER] ([TEAM]) for a heavy challenge.",
"visibility": "shown",
"position": "1423000"
},
{
"important": false,
"gameTime": "2 - 20:52",
"label": "",
"description": "A pass by James Rodriguez (Real Madrid) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_MPaioN57] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end.",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end.",
"visibility": "shown",
"position": "1252000"
},
{
"important": false,
"gameTime": "2 - 19:18",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"anonymized": "[PLAYER] ([TEAM]) sends over a cross from the side into the penalty area in order to find one of his teammates, but he fails and the opportunity goes begging.",
"visibility": "shown",
"position": "1158000"
},
{
"important": true,
"gameTime": "2 - 18:55",
"label": "substitution",
"description": "Substitution. Daniel Carvajal (Real Madrid) in, Danilo out.",
"identified": "Substitution. [PLAYER_rZh5FTHE] ([TEAM_]) in, [PLAYER_KUjvgUhB] out.",
"anonymized": "Substitution. [PLAYER] ([TEAM]) in, [PLAYER] out.",
"visibility": "shown",
"position": "1135000"
},
{
"important": true,
"gameTime": "2 - 18:39",
"label": "y-card",
"description": "Danilo (Real Madrid) sees a yellow card from Juan Martinez Munuera after he sent one of the opposing players to the ground.",
"identified": "[PLAYER_KUjvgUhB] ([TEAM_]) sees a yellow card from [REFEREE] after he sent one of the opposing players to the ground.",
"anonymized": "[PLAYER] ([TEAM]) sees a yellow card from [REFEREE] after he sent one of the opposing players to the ground.",
"visibility": "shown",
"position": "1119000"
},
{
"important": false,
"gameTime": "2 - 16:22",
"label": "",
"description": "The flag is raised and Cristiano Ronaldo (Real Madrid) is offside again, not for the first time today.",
"identified": "The flag is raised and [PLAYER_WGOY4FSt] ([TEAM_]) is offside again, not for the first time today.",
"anonymized": "The flag is raised and [PLAYER] ([TEAM]) is offside again, not for the first time today.",
"visibility": "shown",
"position": "982000"
},
{
"important": false,
"gameTime": "2 - 16:06",
"label": "",
"description": "Danilo (Real Madrid) sends a pass into the penalty area, but the opponent manages to cut it out.",
"identified": "[PLAYER_KUjvgUhB] ([TEAM_]) sends a pass into the penalty area, but the opponent manages to cut it out.",
"anonymized": "[PLAYER] ([TEAM]) sends a pass into the penalty area, but the opponent manages to cut it out.",
"visibility": "shown",
"position": "966000"
},
{
"important": true,
"gameTime": "2 - 15:16",
"label": "y-card",
"description": "A yellow card for a tackle by Petros (Betis). Juan Martinez Munuera doesn't hesitate at all to make this decision.",
"identified": "A yellow card for a tackle by [PLAYER_0GHXKCzN] ([TEAM_]). [REFEREE] doesn't hesitate at all to make this decision.",
"anonymized": "A yellow card for a tackle by [PLAYER] ([TEAM]). [REFEREE] doesn't hesitate at all to make this decision.",
"visibility": "shown",
"position": "916000"
},
{
"important": false,
"gameTime": "2 - 13:50",
"label": "",
"description": "Toni Kroos (Real Madrid) takes the resulting free kick from outside the box. He sends a nice cross into the box, but his intention is well anticipated by the goalkeeper who comes out to collect the ball.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) takes the resulting free kick from outside the box. He sends a nice cross into the box, but his intention is well anticipated by the goalkeeper who comes out to collect the ball.",
"anonymized": "[PLAYER] ([TEAM]) takes the resulting free kick from outside the box. He sends a nice cross into the box, but his intention is well anticipated by the goalkeeper who comes out to collect the ball.",
"visibility": "shown",
"position": "830000"
},
{
"important": true,
"gameTime": "2 - 12:28",
"label": "y-card",
"description": "Today's referee Juan Martinez Munuera rightly decides to book Juan Vargas (Betis) for his harsh tackle. A free kick is awarded to Real Madrid.",
"identified": "Today's referee [REFEREE] rightly decides to book [PLAYER_2H2ruXmP] ([TEAM_]) for his harsh tackle. A free kick is awarded to [TEAM_].",
"anonymized": "Today's referee [REFEREE] rightly decides to book [PLAYER] ([TEAM]) for his harsh tackle. A free kick is awarded to [TEAM].",
"visibility": "shown",
"position": "748000"
},
{
"important": true,
"gameTime": "2 - 12:19",
"label": "substitution",
"description": "Juan Merino is forced to make a change. Foued Kadir is unable to continue due to injury, Joaquin (Betis) comes on.",
"identified": "[COACH_6JOasSl4] is forced to make a change. [PLAYER_j3Q6pEtd] is unable to continue due to injury, [PLAYER_I3ySbl3q] ([TEAM_]) comes on.",
"anonymized": "[COACH] is forced to make a change. [PLAYER] is unable to continue due to injury, [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "739000"
},
{
"important": false,
"gameTime": "2 - 11:39",
"label": "injury",
"description": "Foued Kadir (Betis) is down injured and the referee stops play so that he can receive medical treatment.",
"identified": "[PLAYER_j3Q6pEtd] ([TEAM_]) is down injured and the referee stops play so that he can receive medical treatment.",
"anonymized": "[PLAYER] ([TEAM]) is down injured and the referee stops play so that he can receive medical treatment.",
"visibility": "shown",
"position": "699000"
},
{
"important": true,
"gameTime": "2 - 09:19",
"label": "",
"description": "A cross following the corner kick finds its way to James Rodriguez (Real Madrid) inside the box and he manages to steer it low to the middle of the target. He is about to start celebrating a goal, but Antonio Adan makes a save in the nick of time to maintain the current score.",
"identified": "A cross following the corner kick finds its way to [PLAYER_MPaioN57] ([TEAM_]) inside the box and he manages to steer it low to the middle of the target. He is about to start celebrating a goal, but [PLAYER_tbjcsOoa] makes a save in the nick of time to maintain the current score.",
"anonymized": "A cross following the corner kick finds its way to [PLAYER] ([TEAM]) inside the box and he manages to steer it low to the middle of the target. He is about to start celebrating a goal, but [PLAYER] makes a save in the nick of time to maintain the current score.",
"visibility": "shown",
"position": "559000"
},
{
"important": false,
"gameTime": "2 - 09:02",
"label": "corner",
"description": "Toni Kroos (Real Madrid) will take a corner kick.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) will take a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) will take a corner kick.",
"visibility": "shown",
"position": "542000"
},
{
"important": false,
"gameTime": "2 - 08:52",
"label": "",
"description": "The ball is cleared after Cristiano Ronaldo (Real Madrid) attempted to dribble past an opposing player. The referee and one of his assistants signal for a corner kick to Real Madrid.",
"identified": "The ball is cleared after [PLAYER_WGOY4FSt] ([TEAM_]) attempted to dribble past an opposing player. The referee and one of his assistants signal for a corner kick to [TEAM_].",
"anonymized": "The ball is cleared after [PLAYER] ([TEAM]) attempted to dribble past an opposing player. The referee and one of his assistants signal for a corner kick to [TEAM].",
"visibility": "shown",
"position": "532000"
},
{
"important": false,
"gameTime": "2 - 06:33",
"label": "",
"description": "Marcelo (Real Madrid) sends a long ball across the pitch, but it misses its target.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) sends a long ball across the pitch, but it misses its target.",
"anonymized": "[PLAYER] ([TEAM]) sends a long ball across the pitch, but it misses its target.",
"visibility": "shown",
"position": "393000"
},
{
"important": true,
"gameTime": "2 - 05:52",
"label": "substitution",
"description": "Juan Merino is forced to make an unplanned substitution as Fabian Ruiz suffers an injury and Daniel Ceballos (Betis) comes on.",
"identified": "[COACH_6JOasSl4] is forced to make an unplanned substitution as [PLAYER_l6HSH2Uo] suffers an injury and [PLAYER_zPYmze7F] ([TEAM_]) comes on.",
"anonymized": "[COACH] is forced to make an unplanned substitution as [PLAYER] suffers an injury and [PLAYER] ([TEAM]) comes on.",
"visibility": "shown",
"position": "352000"
},
{
"important": false,
"gameTime": "2 - 05:25",
"label": "injury",
"description": "Fabian Ruiz (Betis) is being forced to leave the pitch in order to receive medical treatment and his team will play with a man short for a few minutes.",
"identified": "[PLAYER_l6HSH2Uo] ([TEAM_]) is being forced to leave the pitch in order to receive medical treatment and his team will play with a man short for a few minutes.",
"anonymized": "[PLAYER] ([TEAM]) is being forced to leave the pitch in order to receive medical treatment and his team will play with a man short for a few minutes.",
"visibility": "shown",
"position": "325000"
},
{
"important": true,
"gameTime": "2 - 05:14",
"label": "",
"description": "Karim Benzema (Real Madrid) had a golden opportunity. He volleyed from point blank range towards the middle of the goal, but Antonio Adan was alert and made an amazing save!",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) had a golden opportunity. He volleyed from point blank range towards the middle of the goal, but [PLAYER_tbjcsOoa] was alert and made an amazing save!",
"anonymized": "[PLAYER] ([TEAM]) had a golden opportunity. He volleyed from point blank range towards the middle of the goal, but [PLAYER] was alert and made an amazing save!",
"visibility": "shown",
"position": "314000"
},
{
"important": false,
"gameTime": "2 - 03:54",
"label": "",
"description": "Toni Kroos (Real Madrid) produces an effort from the edge of the box, but doesn't hit the ball properly and sends it yards wide of the right post.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) produces an effort from the edge of the box, but doesn't hit the ball properly and sends it yards wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) produces an effort from the edge of the box, but doesn't hit the ball properly and sends it yards wide of the right post.",
"visibility": "shown",
"position": "234000"
},
{
"important": false,
"gameTime": "2 - 03:25",
"label": "corner",
"description": "James Rodriguez (Real Madrid) launches an inaccurate corner kick into the penalty area.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) launches an inaccurate corner kick into the penalty area.",
"anonymized": "[PLAYER] ([TEAM]) launches an inaccurate corner kick into the penalty area.",
"visibility": "shown",
"position": "205000"
},
{
"important": false,
"gameTime": "2 - 03:12",
"label": "",
"description": "An attempted cross from James Rodriguez (Real Madrid) is cleared. It will be a corner kick for Real Madrid.",
"identified": "An attempted cross from [PLAYER_MPaioN57] ([TEAM_]) is cleared. It will be a corner kick for [TEAM_].",
"anonymized": "An attempted cross from [PLAYER] ([TEAM]) is cleared. It will be a corner kick for [TEAM].",
"visibility": "shown",
"position": "192000"
},
{
"important": false,
"gameTime": "2 - 01:51",
"label": "",
"description": "James Rodriguez (Real Madrid) blasts the ball from just outside the box, but his attempt is blocked by the defender.",
"identified": "[PLAYER_MPaioN57] ([TEAM_]) blasts the ball from just outside the box, but his attempt is blocked by the defender.",
"anonymized": "[PLAYER] ([TEAM]) blasts the ball from just outside the box, but his attempt is blocked by the defender.",
"visibility": "shown",
"position": "111000"
},
{
"important": false,
"gameTime": "2 - 00:59",
"label": "corner",
"description": "Toni Kroos (Real Madrid) takes the corner but only sends it into a huddle of the defenders and one of them makes a good clearance.",
"identified": "[PLAYER_CloE7jjr] ([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": "59000"
},
{
"important": false,
"gameTime": "2 - 00:47",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The referee signals a corner kick to Real Madrid.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The referee signals a corner kick to [TEAM_].",
"anonymized": "[PLAYER] ([TEAM]) goes on a solo run, but he fails to create a chance as an opposition player blocks him. The referee signals a corner kick to [TEAM].",
"visibility": "shown",
"position": "47000"
},
{
"important": true,
"gameTime": "2 - 00:01",
"label": "whistle",
"description": "The referee blows his whistle to signal the start of the second half.",
"identified": "The referee blows his whistle to signal the start of the second half.",
"anonymized": "The referee blows his whistle to signal the start of the second half.",
"visibility": "shown",
"position": "1000"
},
{
"important": false,
"gameTime": "1 - 45:59",
"label": "",
"description": "Well, it hasn't been the most exciting game in the world but there has been some nice football on display. We hope that the second period will bring more action. The visitors enjoy superiority over the opposition. It's obvious that defence has the highest priority for the home side. The away team makes a lot of passes and attempts to maintain possession.",
"identified": "Well, it hasn't been the most exciting game in the world but there has been some nice football on display. We hope that the second period will bring more action. The visitors enjoy superiority over the opposition. It's obvious that defence has the highest priority for the home side. The away team makes a lot of passes and attempts to maintain possession.",
"anonymized": "Well, it hasn't been the most exciting game in the world but there has been some nice football on display. We hope that the second period will bring more action. The visitors enjoy superiority over the opposition. It's obvious that defence has the highest priority for the home side. The away team makes a lot of passes and attempts to maintain possession.",
"visibility": "shown",
"position": "2759000"
},
{
"important": true,
"gameTime": "1 - 45:38",
"label": "whistle",
"description": "Juan Martinez Munuera 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": "2738000"
},
{
"important": false,
"gameTime": "1 - 44:53",
"label": "",
"description": "Alvaro Cejudo (Betis) swings in a promising cross from the free kick, but one of the defenders does a perfect job to avert the danger.",
"identified": "[PLAYER_SEMyNX6C] ([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": "2693000"
},
{
"important": false,
"gameTime": "1 - 44:42",
"label": "",
"description": "Raphael Varane (Real Madrid) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves Juan Martinez Munuera with no other option than to blow for a foul. Betis are awarded a free kick. Let's see what they create from this.",
"identified": "[PLAYER_t20vQIvC] ([TEAM_]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul. [TEAM_] are awarded a free kick. Let's see what they create from this.",
"anonymized": "[PLAYER] ([TEAM]) is obviously not following the Golden Rule: \u201eTreat others as you want to be treated.\u201c He makes a bad challenge and leaves [REFEREE] with no other option than to blow for a foul. [TEAM] are awarded a free kick. Let's see what they create from this.",
"visibility": "shown",
"position": "2682000"
},
{
"important": false,
"gameTime": "1 - 42:48",
"label": "",
"description": "Fabian Ruiz (Betis) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"identified": "[PLAYER_l6HSH2Uo] ([TEAM_]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"anonymized": "[PLAYER] ([TEAM]) whips the ball into the penalty area, but one of the defenders is alert and spanks it away.",
"visibility": "shown",
"position": "2568000"
},
{
"important": false,
"gameTime": "1 - 40:34",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) is caught offside!",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) is caught offside!",
"anonymized": "[PLAYER] ([TEAM]) is caught offside!",
"visibility": "shown",
"position": "2434000"
},
{
"important": false,
"gameTime": "1 - 39:32",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"anonymized": "[PLAYER] ([TEAM]) sends a cross into the box, but the opposition's defence quickly intercepts the ball.",
"visibility": "shown",
"position": "2372000"
},
{
"important": false,
"gameTime": "1 - 37:13",
"label": "",
"description": "Marcelo (Real Madrid) swings a cross into the box, but it's far too close to Antonio Adan, who smothers the ball.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) swings a cross into the box, but it's far too close to [PLAYER_tbjcsOoa], who smothers the ball.",
"anonymized": "[PLAYER] ([TEAM]) swings a cross into the box, but it's far too close to [PLAYER], who smothers the ball.",
"visibility": "shown",
"position": "2233000"
},
{
"important": false,
"gameTime": "1 - 35:53",
"label": "",
"description": "The keeper doesn't have to worry about this one. Cristiano Ronaldo (Real Madrid) sacrificed accuracy for power, and thus his attempt went well wide of the left post.",
"identified": "The keeper doesn't have to worry about this one. [PLAYER_WGOY4FSt] ([TEAM_]) sacrificed accuracy for power, and thus his attempt went well wide of the left post.",
"anonymized": "The keeper doesn't have to worry about this one. [PLAYER] ([TEAM]) sacrificed accuracy for power, and thus his attempt went well wide of the left post.",
"visibility": "shown",
"position": "2153000"
},
{
"important": false,
"gameTime": "1 - 34:53",
"label": "corner",
"description": "Antonio Adan comes off his line to intercept the corner from Toni Kroos (Real Madrid).",
"identified": "[PLAYER_tbjcsOoa] comes off his line to intercept the corner from [PLAYER_CloE7jjr] ([TEAM_]).",
"anonymized": "[PLAYER] comes off his line to intercept the corner from [PLAYER] ([TEAM]).",
"visibility": "shown",
"position": "2093000"
},
{
"important": false,
"gameTime": "1 - 34:44",
"label": "",
"description": "Marcelo (Real Madrid) serves up a nice cross, but the defence clears the danger. Real Madrid force a corner. Their opponents will face another attacking threat.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) serves up a nice cross, but the defence clears the danger. [TEAM_] force a corner. Their opponents will face another attacking threat.",
"anonymized": "[PLAYER] ([TEAM]) serves up a nice cross, but the defence clears the danger. [TEAM] force a corner. Their opponents will face another attacking threat.",
"visibility": "shown",
"position": "2084000"
},
{
"important": false,
"gameTime": "1 - 33:07",
"label": "",
"description": "Pepe (Real Madrid) finds enough space to climb high and plants a header well wide of the left post. What a poor effort.",
"identified": "[PLAYER_2y9qaipI] ([TEAM_]) finds enough space to climb high and plants a header well wide of the left post. What a poor effort.",
"anonymized": "[PLAYER] ([TEAM]) finds enough space to climb high and plants a header well wide of the left post. What a poor effort.",
"visibility": "shown",
"position": "1987000"
},
{
"important": false,
"gameTime": "1 - 32:47",
"label": "corner",
"description": "Corner kick. Toni Kroos (Real Madrid) is ready to send the ball into the box.",
"identified": "Corner kick. [PLAYER_CloE7jjr] ([TEAM_]) is ready to send the ball into the box.",
"anonymized": "Corner kick. [PLAYER] ([TEAM]) is ready to send the ball into the box.",
"visibility": "shown",
"position": "1967000"
},
{
"important": false,
"gameTime": "1 - 32:37",
"label": "",
"description": "A lofted cross from Danilo (Real Madrid) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. Corner kick. Real Madrid will have an opportunity.",
"identified": "A lofted cross from [PLAYER_KUjvgUhB] ([TEAM_]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. Corner kick. [TEAM_] will have an opportunity.",
"anonymized": "A lofted cross from [PLAYER] ([TEAM]) is unsuccessful as the opponent's defence quickly clears the ball out of the penalty area. Corner kick. [TEAM] will have an opportunity.",
"visibility": "shown",
"position": "1957000"
},
{
"important": true,
"gameTime": "1 - 31:44",
"label": "",
"description": "Cristiano Ronaldo (Real Madrid) receives a well-played pass inside the penalty area and shoots. His effort sails well wide of the right post.",
"identified": "[PLAYER_WGOY4FSt] ([TEAM_]) receives a well-played pass inside the penalty area and shoots. His effort sails well wide of the right post.",
"anonymized": "[PLAYER] ([TEAM]) receives a well-played pass inside the penalty area and shoots. His effort sails well wide of the right post.",
"visibility": "shown",
"position": "1904000"
},
{
"important": false,
"gameTime": "1 - 30:37",
"label": "",
"description": "Danilo (Real Madrid) 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_KUjvgUhB] ([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": "1837000"
},
{
"important": false,
"gameTime": "1 - 28:21",
"label": "",
"description": "A pass by Cristiano Ronaldo (Real Madrid) ends up in no man's land, and the attacking effort comes to an end.",
"identified": "A pass by [PLAYER_WGOY4FSt] ([TEAM_]) ends up in no man's land, and the attacking effort comes to an end.",
"anonymized": "A pass by [PLAYER] ([TEAM]) ends up in no man's land, and the attacking effort comes to an end.",
"visibility": "shown",
"position": "1701000"
},
{
"important": false,
"gameTime": "1 - 27:45",
"label": "",
"description": "Fabian Ruiz (Betis) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"identified": "[PLAYER_l6HSH2Uo] ([TEAM_]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"anonymized": "[PLAYER] ([TEAM]) slaloms his way past challenges, but an opposing player does well to get the ball away.",
"visibility": "shown",
"position": "1665000"
},
{
"important": false,
"gameTime": "1 - 25:48",
"label": "",
"description": "Karim Benzema (Real Madrid) takes a shot from the edge of the box, but it's not a big threat for the goalkeeper as his effort is blocked by a defender.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) takes a shot from the edge of the box, but it's not a big threat for the goalkeeper as his effort is blocked by a defender.",
"anonymized": "[PLAYER] ([TEAM]) takes a shot from the edge of the box, but it's not a big threat for the goalkeeper as his effort is blocked by a defender.",
"visibility": "shown",
"position": "1548000"
},
{
"important": false,
"gameTime": "1 - 23:52",
"label": "",
"description": "A pass from James Rodriguez (Real Madrid) is intercepted by Antonio Adan and the move breaks down.",
"identified": "A pass from [PLAYER_MPaioN57] ([TEAM_]) is intercepted by [PLAYER_tbjcsOoa] and the move breaks down.",
"anonymized": "A pass from [PLAYER] ([TEAM]) is intercepted by [PLAYER] and the move breaks down.",
"visibility": "shown",
"position": "1432000"
},
{
"important": false,
"gameTime": "1 - 23:07",
"label": "",
"description": "Juan Martinez Munuera blows his whistle as Ruben Castro (Betis) used excessive force in the tackle during an attack.",
"identified": "[REFEREE] blows his whistle as [PLAYER_Am1OnaHH] ([TEAM_]) used excessive force in the tackle during an attack.",
"anonymized": "[REFEREE] blows his whistle as [PLAYER] ([TEAM]) used excessive force in the tackle during an attack.",
"visibility": "shown",
"position": "1387000"
},
{
"important": false,
"gameTime": "1 - 21:29",
"label": "",
"description": "A decent save by Antonio Adan. Isco (Real Madrid) finds some space near the penalty spot to meet a cross and head it down to the middle of the goal, but the effort is saved by the goalkeeper.",
"identified": "A decent save by [PLAYER_tbjcsOoa]. [PLAYER_ULLmpdEb] ([TEAM_]) finds some space near the penalty spot to meet a cross and head it down to the middle of the goal, but the effort is saved by the goalkeeper.",
"anonymized": "A decent save by [PLAYER]. [PLAYER] ([TEAM]) finds some space near the penalty spot to meet a cross and head it down to the middle of the goal, but the effort is saved by the goalkeeper.",
"visibility": "shown",
"position": "1289000"
},
{
"important": false,
"gameTime": "1 - 20:16",
"label": "",
"description": "Petros (Betis) decides to speed play up by quickly sending the free kick into the box.",
"identified": "[PLAYER_0GHXKCzN] ([TEAM_]) decides to speed play up by quickly sending the free kick into the box.",
"anonymized": "[PLAYER] ([TEAM]) decides to speed play up by quickly sending the free kick into the box.",
"visibility": "shown",
"position": "1216000"
},
{
"important": false,
"gameTime": "1 - 20:03",
"label": "",
"description": "A clumsy foul by Cristiano Ronaldo (Real Madrid) and Juan Martinez Munuera blows his whistle. A free kick has been awarded to Betis.",
"identified": "A clumsy foul by [PLAYER_WGOY4FSt] ([TEAM_]) and [REFEREE] blows his whistle. A free kick has been awarded to [TEAM_].",
"anonymized": "A clumsy foul by [PLAYER] ([TEAM]) and [REFEREE] blows his whistle. A free kick has been awarded to [TEAM].",
"visibility": "shown",
"position": "1203000"
},
{
"important": false,
"gameTime": "1 - 18:20",
"label": "",
"description": "Raphael Varane (Real Madrid) fails to find a teammate across the pitch with a long ball.",
"identified": "[PLAYER_t20vQIvC] ([TEAM_]) fails to find a teammate across the pitch with a long ball.",
"anonymized": "[PLAYER] ([TEAM]) fails to find a teammate across the pitch with a long ball.",
"visibility": "shown",
"position": "1100000"
},
{
"important": false,
"gameTime": "1 - 17:25",
"label": "",
"description": "Karim Benzema (Real Madrid) shoots from the edge of the penalty area. The ball travels towards the middle of the target, but Antonio Adan easily deals with the threat.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) shoots from the edge of the penalty area. The ball travels towards the middle of the target, but [PLAYER_tbjcsOoa] easily deals with the threat.",
"anonymized": "[PLAYER] ([TEAM]) shoots from the edge of the penalty area. The ball travels towards the middle of the target, but [PLAYER] easily deals with the threat.",
"visibility": "shown",
"position": "1045000"
},
{
"important": false,
"gameTime": "1 - 15:26",
"label": "corner",
"description": "The resulting corner, taken by Toni Kroos (Real Madrid), comes to nothing.",
"identified": "The resulting corner, taken by [PLAYER_CloE7jjr] ([TEAM_]), comes to nothing.",
"anonymized": "The resulting corner, taken by [PLAYER] ([TEAM]), comes to nothing.",
"visibility": "shown",
"position": "926000"
},
{
"important": false,
"gameTime": "1 - 15:15",
"label": "",
"description": "Luka Modric (Real Madrid) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety. The ball goes out of play. Real Madrid are awarded a corner kick.",
"identified": "[PLAYER_bZWyoJnA] ([TEAM_]) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety. The ball goes out of play. [TEAM_] are awarded a corner kick.",
"anonymized": "[PLAYER] ([TEAM]) passes the ball from the edge of the box in order to find his teammate, who is in a good scoring position, but the defender blocks the pass and spanks the ball to safety. The ball goes out of play. [TEAM] are awarded a corner kick.",
"visibility": "shown",
"position": "915000"
},
{
"important": false,
"gameTime": "1 - 14:12",
"label": "",
"description": "The game is interrupted as Cristiano Ronaldo (Real Madrid) is flagged offside.",
"identified": "The game is interrupted as [PLAYER_WGOY4FSt] ([TEAM_]) is flagged offside.",
"anonymized": "The game is interrupted as [PLAYER] ([TEAM]) is flagged offside.",
"visibility": "shown",
"position": "852000"
},
{
"important": false,
"gameTime": "1 - 13:59",
"label": "",
"description": "Toni Kroos (Real Madrid) takes the free kick and immediately restarts play with a short pass.",
"identified": "[PLAYER_CloE7jjr] ([TEAM_]) takes the free kick and immediately restarts play with a short pass.",
"anonymized": "[PLAYER] ([TEAM]) takes the free kick and immediately restarts play with a short pass.",
"visibility": "shown",
"position": "839000"
},
{
"important": false,
"gameTime": "1 - 13:53",
"label": "",
"description": "Fabian Ruiz (Betis) commits a rough foul. Juan Martinez Munuera stops the game and makes a call. It's a free kick to Real Madrid, but it's in no position for a direct shot on goal.",
"identified": "[PLAYER_l6HSH2Uo] ([TEAM_]) commits a rough foul. [REFEREE] stops the game and makes a call. It's a free kick to [TEAM_], but it's in no position for a direct shot on goal.",
"anonymized": "[PLAYER] ([TEAM]) commits a rough foul. [REFEREE] stops the game and makes a call. It's a free kick to [TEAM], but it's in no position for a direct shot on goal.",
"visibility": "shown",
"position": "833000"
},
{
"important": false,
"gameTime": "1 - 12:46",
"label": "",
"description": "Karim Benzema (Real Madrid) fails to send a pass into the box as his effort is cut out.",
"identified": "[PLAYER_tpV0VX0S] ([TEAM_]) fails to send a pass into the box as his effort is cut out.",
"anonymized": "[PLAYER] ([TEAM]) fails to send a pass into the box as his effort is cut out.",
"visibility": "shown",
"position": "766000"
},
{
"important": false,
"gameTime": "1 - 11:37",
"label": "",
"description": "Marcelo (Real Madrid) races towards goal but the defender gets back well to make a challenge.",
"identified": "[PLAYER_zmAm2AEH] ([TEAM_]) races towards goal but the defender gets back well to make a challenge.",
"anonymized": "[PLAYER] ([TEAM]) races towards goal but the defender gets back well to make a challenge.",
"visibility": "shown",
"position": "697000"
}
]
} |