File size: 245,382 Bytes
20a7802 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 |
2024-11-09T22:46:20.127Z info: Addon running on http://127.0.0.1:9876
2024-11-09T23:04:50.894Z warn: Port 9876 is in use, trying 9877
2024-11-09T23:04:50.897Z info: Addon running on http://127.0.0.1:9877
2024-11-09T23:09:33.136Z error: Failed to decode configuration: Unexpected token } in JSON at position 0
2024-11-09T23:11:04.956Z error: Failed to decode configuration: Unexpected token } in JSON at position 0
2024-11-09T23:14:44.056Z info: Received configuration:
2024-11-09T23:14:44.059Z info: Addon router created with configuration
2024-11-09T23:14:44.057Z info: TMDB handler initialized with API key
2024-11-09T23:14:44.057Z info: Configuration set for Easynews searcher
2024-11-09T23:15:16.845Z info: Fetching metadata for ID: tt29623480, Type: movie
2024-11-09T23:15:16.846Z info: Searching TMDB for IMDb ID: tt29623480
2024-11-09T23:15:17.015Z info: Fetching TMDB info for ID: 1184918, Type: movie
2024-11-09T23:15:17.241Z info: Successfully fetched metadata for tt29623480
2024-11-09T23:15:17.241Z info: Searching for movie: The Wild Robot 2024
2024-11-09T23:15:17.241Z info: Searching Easynews for: The Wild Robot 2024
2024-11-09T23:15:17.242Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=The%20Wild%20Robot%202024&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-09T23:15:18.929Z debug: Skipping sample file: the.wild.robot.2024.multi.2160p.web.h265-lost-sample.mkv
2024-11-09T23:15:18.934Z info: Found 74 streams for tt29623480
2024-11-09T23:15:18.930Z debug: Skipping sample file: the.wild.robot.2024.multi.dv.2160p.web.h265-lost-sample.mkv
2024-11-09T23:15:18.930Z debug: Skipping sample file: the.wild.robot.2024.multi.hdr.2160p.web.h265-lost-sample.mkv
2024-11-09T23:15:18.932Z info: Found 74 results
2024-11-09T23:17:15.483Z info: Fetching metadata for ID: tt13833978, Type: series
2024-11-09T23:17:15.484Z info: Searching TMDB for IMDb ID: tt13833978
2024-11-09T23:17:15.608Z info: Fetching TMDB info for ID: 116799, Type: series
2024-11-09T23:17:15.748Z info: Successfully fetched metadata for tt13833978
2024-11-09T23:17:15.748Z info: Searching for series episode: The Lincoln Lawyer S01E01
2024-11-09T23:17:15.748Z info: Searching Easynews for: The Lincoln Lawyer S01E01
2024-11-09T23:17:15.748Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=The%20Lincoln%20Lawyer%20S01E01&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-09T23:17:17.559Z info: Found 37 results
2024-11-09T23:17:17.560Z info: Found 37 streams for tt13833978:1:1
2024-11-09T23:17:37.279Z info: Fetching metadata for ID: tmdb-1335905, Type: movie
2024-11-09T23:17:37.279Z info: Fetching TMDB info for ID: 1335905, Type: movie
2024-11-09T23:17:37.296Z info: Successfully fetched metadata for tmdb-1335905
2024-11-09T23:17:37.296Z info: Searching for movie: UFC 307: Pereira vs. Rountree Jr. 2024
2024-11-09T23:17:37.296Z info: Searching Easynews for: UFC 307: Pereira vs. Rountree Jr. 2024
2024-11-09T23:17:37.296Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=UFC%20307%3A%20Pereira%20vs.%20Rountree%20Jr.%202024&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-09T23:17:37.956Z info: Found 0 results
2024-11-09T23:17:37.956Z info: No results found with year, trying without year: UFC 307: Pereira vs. Rountree Jr.
2024-11-09T23:17:37.956Z info: Searching Easynews for: UFC 307: Pereira vs. Rountree Jr.
2024-11-09T23:17:37.957Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=UFC%20307%3A%20Pereira%20vs.%20Rountree%20Jr.&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-09T23:17:38.633Z info: Found 3 results
2024-11-09T23:17:38.633Z info: Found 3 streams for tmdb-1335905
2024-11-09T23:29:04.075Z info: Fetching metadata for ID: tt16358384, Type: series
2024-11-09T23:29:04.080Z info: Searching TMDB for IMDb ID: tt16358384
2024-11-09T23:29:04.221Z info: Fetching TMDB info for ID: 153312, Type: series
2024-11-09T23:29:04.349Z info: Successfully fetched metadata for tt16358384
2024-11-09T23:29:04.349Z info: Searching for series episode: Tulsa King S01E01
2024-11-09T23:29:04.349Z info: Searching Easynews for: Tulsa King S01E01
2024-11-09T23:29:04.350Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=Tulsa%20King%20S01E01&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-09T23:29:05.864Z debug: Skipping sample file: tulsa.king.s01e01.multi.2160p.web.h265-higgsboson-sample.mkv
2024-11-09T23:29:05.871Z info: Found 44 streams for tt16358384:1:1
2024-11-09T23:29:05.866Z debug: Skipping sample file: tulsa.king.s01e01.french.720p.web.x264-higgsboson-sample.mkv
2024-11-09T23:29:05.870Z debug: Skipping sample file: tulsa.king.s01e01.1080p.web.h264-glhf-sample.mkv
2024-11-09T23:29:05.870Z debug: Skipping sample file: tulsa.king.s01e01.2160p.web.h265-glhf-sample.mkv
2024-11-09T23:29:05.870Z info: Found 44 results
2024-11-10T00:03:22.143Z info: Searching Easynews catalog for: ufc
2024-11-10T00:03:22.143Z info: Searching Easynews for: ufc
2024-11-10T00:03:22.144Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:03:22.150Z info: Searching Easynews catalog for: ufc
2024-11-10T00:03:22.150Z info: Searching Easynews for: ufc
2024-11-10T00:03:22.150Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:03:26.586Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.587Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.589Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.590Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.590Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.592Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.594Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.598Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.598Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.599Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.599Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.600Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.600Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.602Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.602Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.605Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.605Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.605Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.606Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.606Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.607Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.607Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.608Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.608Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.609Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.610Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.610Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.612Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.612Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.612Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.615Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.615Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.615Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.615Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.617Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.617Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.617Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.617Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.618Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.619Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.619Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.621Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.621Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.622Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.623Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.623Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.623Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.623Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.624Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.624Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.624Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.624Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.627Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.627Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.627Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.627Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.627Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.628Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.628Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.628Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.628Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.629Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.629Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.629Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:03:26.630Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.630Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.631Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.632Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.632Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.633Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:03:26.633Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:03:26.642Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.642Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.643Z info: Found 488 results
2024-11-10T00:03:26.761Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.762Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.762Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.763Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.763Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.764Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.764Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.765Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.765Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.766Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.766Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.766Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.766Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.767Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.767Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.769Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.769Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.769Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.770Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.770Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.770Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.772Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.772Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.772Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.773Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.773Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.773Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.774Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.775Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.776Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.777Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.777Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.777Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.777Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.779Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.779Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.779Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.779Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.780Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.780Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.780Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.782Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.782Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.783Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.783Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.783Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.783Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.783Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.784Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.784Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.784Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.785Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.786Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.786Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.787Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.787Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.787Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.787Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.787Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.788Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.788Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.788Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.788Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.788Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:03:26.789Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.789Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.791Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.792Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.793Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.794Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:03:26.794Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:03:26.797Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.798Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:03:26.798Z info: Found 488 results
2024-11-10T00:03:53.960Z info: Fetching metadata for ID: tt0203259, Type: series
2024-11-10T00:03:53.960Z info: Searching TMDB for IMDb ID: tt0203259
2024-11-10T00:03:54.085Z info: Fetching TMDB info for ID: 2734, Type: series
2024-11-10T00:03:54.211Z info: Successfully fetched metadata for tt0203259
2024-11-10T00:03:54.212Z info: Searching for series episode: Law & Order: Special Victims Unit S24E10
2024-11-10T00:03:54.212Z info: Searching Easynews for: Law & Order: Special Victims Unit S24E10
2024-11-10T00:03:54.212Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=Law%20%26%20Order%3A%20Special%20Victims%20Unit%20S24E10&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:03:56.816Z info: Found 4 results
2024-11-10T00:03:56.816Z info: Found 4 streams for tt0203259:24:10
2024-11-10T00:05:24.105Z info: Searching Easynews catalog for: ufc
2024-11-10T00:05:24.105Z info: Searching Easynews for: ufc
2024-11-10T00:05:24.107Z info: Searching Easynews catalog for: ufc
2024-11-10T00:05:24.105Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:05:24.107Z info: Searching Easynews for: ufc
2024-11-10T00:05:24.107Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:05:25.739Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.740Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.743Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.743Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.743Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.743Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.744Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.748Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.748Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.750Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.751Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.751Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.751Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.754Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.755Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.757Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.757Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.757Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.758Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.758Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.760Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.760Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.762Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.762Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.762Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.763Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.764Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.765Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.766Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.767Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.768Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.768Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.768Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.769Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.770Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.770Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.771Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.771Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.771Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.772Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.772Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.773Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.773Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.774Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.774Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.774Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.774Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.774Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.775Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.775Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.775Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.776Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.776Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.777Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.777Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.777Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.778Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.778Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.778Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.778Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.779Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.779Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.779Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.779Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:05:25.781Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.781Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.781Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.782Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.782Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.782Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:05:25.783Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:05:25.789Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.789Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.790Z info: Found 488 results
2024-11-10T00:05:25.924Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.925Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.925Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.926Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.926Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.926Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.928Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.929Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.929Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.930Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.930Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.930Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.930Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.932Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.932Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.933Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.933Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.933Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.934Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.934Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.935Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.935Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.936Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.936Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.936Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.937Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.937Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.938Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.938Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.939Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.940Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.940Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.941Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.941Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.942Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.943Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.943Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.943Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.944Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.944Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.944Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.948Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.948Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.951Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.951Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.951Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.952Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.952Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.952Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.952Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.953Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.953Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.954Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.954Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.955Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.955Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.955Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.955Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.955Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.955Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.955Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.956Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.956Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.956Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:05:25.956Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.957Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.957Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.957Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.957Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.958Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:05:25.959Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:05:25.963Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.963Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:05:25.963Z info: Found 488 results
2024-11-10T00:05:29.941Z info: Found 2 streams for easynews:UFC%20307%20Pereira%20Vs%20Rountree%2010%2005%20(2024)
2024-11-10T00:05:41.991Z info: Searching Easynews catalog for: ufc
2024-11-10T00:05:41.992Z info: Searching Easynews for: ufc
2024-11-10T00:05:42.002Z info: Searching Easynews catalog for: ufc
2024-11-10T00:05:41.992Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:05:42.002Z info: Searching Easynews for: ufc
2024-11-10T00:05:42.002Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:05:43.636Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.636Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.637Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.638Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.638Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.638Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.640Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.641Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.641Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.642Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.642Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.642Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.642Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.646Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.646Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.647Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.647Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.647Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.648Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.648Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.649Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.649Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.650Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.650Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.650Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.651Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.651Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.652Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.652Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.653Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.654Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.654Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.654Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.654Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.655Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.655Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.656Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.656Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.657Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.657Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.657Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.658Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.658Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.659Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.659Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.659Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.659Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.660Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.661Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.661Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.661Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.661Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.662Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.662Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.663Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.663Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.663Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.664Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.664Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.664Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.664Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.665Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.666Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.666Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:05:43.667Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.667Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.667Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.668Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.668Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.668Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:05:43.669Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:05:43.675Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.676Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.677Z info: Found 488 results
2024-11-10T00:05:43.700Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.701Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.702Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.702Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.702Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.703Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.704Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.705Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.705Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.706Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.706Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.706Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.706Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.708Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.708Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.709Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.709Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.711Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.712Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.712Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.713Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.713Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.713Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.715Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.715Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.716Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.716Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.717Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.717Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.717Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.718Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.718Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.719Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.719Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.720Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.720Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.720Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.720Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.721Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.721Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.721Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.722Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.722Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.723Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.723Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.723Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.723Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.723Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.723Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.724Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.724Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.724Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.725Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.725Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.726Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.726Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.726Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.727Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.727Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.727Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.728Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.729Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.729Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.729Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:05:43.730Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.730Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.730Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.730Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.731Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.731Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:05:43.731Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:05:43.737Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.737Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:05:43.738Z info: Found 488 results
2024-11-10T00:05:53.344Z info: Found 1 streams for easynews:fight%20inc%20inside%20the%20ufc%20S01E02
2024-11-10T00:06:11.300Z info: Searching Easynews catalog for: ufc
2024-11-10T00:06:11.301Z info: Searching Easynews for: ufc
2024-11-10T00:06:11.303Z info: Searching Easynews catalog for: ufc
2024-11-10T00:06:11.301Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:06:11.303Z info: Searching Easynews for: ufc
2024-11-10T00:06:11.303Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:06:12.899Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.900Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.901Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.901Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.901Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.901Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.902Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.903Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.904Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.907Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.907Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.907Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.908Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.910Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.911Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.912Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.912Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.913Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.913Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.913Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.915Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.915Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.916Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.916Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.917Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.918Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.919Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.920Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.920Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.921Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.922Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.923Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.923Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.923Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.924Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.925Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.925Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.925Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.926Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.926Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.926Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.928Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.929Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.929Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.930Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.930Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.930Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.930Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.931Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.931Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.931Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.932Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.933Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.933Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.934Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.934Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.934Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.934Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.935Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.935Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.935Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.935Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.936Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.936Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:06:12.936Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.936Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.937Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.937Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.937Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.938Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:06:12.938Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:06:12.944Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.944Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:06:12.945Z info: Found 488 results
2024-11-10T00:06:13.046Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.047Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.048Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.048Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.049Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.049Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.050Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.050Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.051Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.051Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.051Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.052Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.052Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.053Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.053Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.054Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.054Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.054Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.054Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.055Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.055Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.055Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.059Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.059Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.059Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.061Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.061Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.062Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.062Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.063Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.064Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.065Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.065Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.065Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.067Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.067Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.068Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.068Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.069Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.070Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.070Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.072Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.072Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.073Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.073Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.073Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.074Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.074Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.074Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.074Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.075Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.075Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.076Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.076Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.077Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.077Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.077Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.077Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.078Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.078Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.078Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.078Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.078Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.079Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:06:13.079Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.079Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.081Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.081Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.081Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.082Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:06:13.082Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:06:13.086Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.087Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:06:13.088Z info: Found 488 results
2024-11-10T00:06:32.870Z info: Fetching metadata for ID: tt29623480, Type: movie
2024-11-10T00:06:32.870Z info: Searching TMDB for IMDb ID: tt29623480
2024-11-10T00:06:32.903Z info: Fetching TMDB info for ID: 1184918, Type: movie
2024-11-10T00:06:32.927Z info: Successfully fetched metadata for tt29623480
2024-11-10T00:06:32.927Z info: Searching for movie: The Wild Robot 2024
2024-11-10T00:06:32.927Z info: Searching Easynews for: The Wild Robot 2024
2024-11-10T00:06:32.928Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=The%20Wild%20Robot%202024&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:06:34.198Z debug: Skipping sample file: the.wild.robot.2024.multi.2160p.web.h265-lost-sample.mkv
2024-11-10T00:06:34.199Z info: Found 74 streams for tt29623480
2024-11-10T00:06:34.198Z debug: Skipping sample file: the.wild.robot.2024.multi.dv.2160p.web.h265-lost-sample.mkv
2024-11-10T00:06:34.198Z debug: Skipping sample file: the.wild.robot.2024.multi.hdr.2160p.web.h265-lost-sample.mkv
2024-11-10T00:06:34.199Z info: Found 74 results
2024-11-10T00:07:38.829Z info: Fetching metadata for ID: tt29623480, Type: movie
2024-11-10T00:07:38.829Z info: Searching TMDB for IMDb ID: tt29623480
2024-11-10T00:07:38.845Z info: Fetching TMDB info for ID: 1184918, Type: movie
2024-11-10T00:07:38.865Z info: Successfully fetched metadata for tt29623480
2024-11-10T00:07:38.865Z info: Searching for movie: The Wild Robot 2024
2024-11-10T00:07:38.865Z info: Searching Easynews for: The Wild Robot 2024
2024-11-10T00:07:38.866Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=The%20Wild%20Robot%202024&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:07:39.583Z debug: Skipping sample file: the.wild.robot.2024.multi.2160p.web.h265-lost-sample.mkv
2024-11-10T00:07:39.586Z info: Found 74 streams for tt29623480
2024-11-10T00:07:39.584Z debug: Skipping sample file: the.wild.robot.2024.multi.dv.2160p.web.h265-lost-sample.mkv
2024-11-10T00:07:39.584Z debug: Skipping sample file: the.wild.robot.2024.multi.hdr.2160p.web.h265-lost-sample.mkv
2024-11-10T00:07:39.585Z info: Found 74 results
2024-11-10T00:07:52.430Z info: Searching Easynews catalog for: ufc
2024-11-10T00:07:52.431Z info: Searching Easynews for: ufc
2024-11-10T00:07:52.433Z info: Searching Easynews catalog for: ufc
2024-11-10T00:07:52.431Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:07:52.434Z info: Searching Easynews for: ufc
2024-11-10T00:07:52.434Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:07:54.104Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.105Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.108Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.109Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.109Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.110Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.111Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.113Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.113Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.116Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.116Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.117Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.117Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.119Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.119Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.120Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.121Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.121Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.121Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.123Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.123Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.123Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.124Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.125Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.125Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.126Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.126Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.129Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.129Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.130Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.131Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.132Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.132Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.132Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.133Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.134Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.136Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.137Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.138Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.138Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.138Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.140Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.140Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.141Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.141Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.141Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.142Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.143Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.143Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.143Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.143Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.144Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.144Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.145Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.145Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.145Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.145Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.146Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.146Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.146Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.146Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.146Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.147Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.147Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:07:54.148Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.148Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.149Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.149Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.149Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.150Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:07:54.150Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:07:54.156Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.157Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.158Z info: Found 488 results
2024-11-10T00:07:54.190Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.191Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.192Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.192Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.192Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.192Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.193Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.194Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.195Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.196Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.196Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.196Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.196Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.198Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.198Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.199Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.199Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.199Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.200Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.200Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.201Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.201Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.202Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.202Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.202Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.205Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.205Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.207Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.207Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.208Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.209Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.209Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.210Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.210Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.211Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.211Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.212Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.212Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.213Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.213Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.213Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.215Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.215Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.216Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.216Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.217Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.217Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.217Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.218Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.218Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.218Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.219Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.220Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.220Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.221Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.221Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.222Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.222Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.223Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.223Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.223Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.224Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.224Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.225Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:07:54.225Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.225Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.226Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.227Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.227Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.228Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:07:54.228Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:07:54.235Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.236Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:07:54.237Z info: Found 488 results
2024-11-10T00:07:57.796Z info: Found 2 streams for easynews:UFC%20307%20Pereira%20Vs%20Rountree%2010%2005%20(2024)
2024-11-10T00:08:01.610Z info: Searching Easynews catalog for: ufc
2024-11-10T00:08:01.611Z info: Searching Easynews for: ufc
2024-11-10T00:08:01.613Z info: Searching Easynews catalog for: ufc
2024-11-10T00:08:01.611Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:08:01.613Z info: Searching Easynews for: ufc
2024-11-10T00:08:01.613Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:08:03.405Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.406Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.406Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.406Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.407Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.407Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.407Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.408Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.408Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.409Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.409Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.409Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.409Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.410Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.410Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.411Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.411Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.411Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.411Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.411Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.412Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.412Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.413Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.413Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.413Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.414Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.414Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.415Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.415Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.416Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.416Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.416Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.417Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.417Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.418Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.418Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.418Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.418Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.419Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.419Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.419Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.420Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.420Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.421Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.421Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.421Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.421Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.421Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.422Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.422Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.422Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.422Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.423Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.423Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.424Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.424Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.424Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.424Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.426Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.426Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.426Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.427Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.427Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.427Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:08:03.428Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.428Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.428Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.428Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.428Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.429Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:08:03.429Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:08:03.432Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.432Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.432Z info: Found 488 results
2024-11-10T00:08:03.449Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.449Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.451Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.451Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.452Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.452Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.453Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.454Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.454Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.455Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.455Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.455Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.455Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.456Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.457Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.458Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.458Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.458Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.459Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.459Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.459Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.459Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.461Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.461Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.461Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.463Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.463Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.464Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.464Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.465Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.468Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.469Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.469Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.469Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.470Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.470Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.470Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.471Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.471Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.471Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.471Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.472Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.473Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.473Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.473Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.473Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.474Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.474Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.474Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.474Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.475Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.475Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.476Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.476Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.476Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.476Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.477Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.477Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.477Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.477Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.477Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.478Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.478Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.478Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:08:03.478Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.479Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.479Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.479Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.479Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.480Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:08:03.480Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:08:03.484Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.484Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:08:03.485Z info: Found 488 results
2024-11-10T00:08:21.716Z info: Searching Easynews catalog for: ufc
2024-11-10T00:08:21.716Z info: Searching Easynews for: ufc
2024-11-10T00:08:21.717Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:08:23.341Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.342Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.342Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.342Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.343Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.343Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.343Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.344Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.344Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.344Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.344Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.345Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.345Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.345Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.346Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.346Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.346Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.347Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.347Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.347Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.347Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.347Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.348Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.348Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.348Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.349Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.349Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.350Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.350Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.350Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.351Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.351Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.351Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.351Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.353Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.353Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.353Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.353Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.354Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.354Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.354Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.355Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.355Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.355Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.355Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.355Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.356Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.356Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.356Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.356Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.356Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.356Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.357Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.357Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.357Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.358Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.359Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.359Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.359Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.359Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.359Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.359Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.359Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.360Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:08:23.360Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.360Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.360Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.361Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.361Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.362Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:08:23.362Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:08:23.366Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.366Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:08:23.367Z info: Found 488 results
2024-11-10T00:08:23.383Z info: Searching Easynews catalog for: ufc
2024-11-10T00:08:23.383Z info: Searching Easynews for: ufc
2024-11-10T00:08:23.384Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:08:25.188Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.189Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.190Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.190Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.190Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.190Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.191Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.192Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.192Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.192Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.193Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.193Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.193Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.194Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.194Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.195Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.196Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.197Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.197Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.197Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.198Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.198Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.199Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.199Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.199Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.199Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.200Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.201Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.201Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.201Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.202Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.202Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.202Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.203Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.205Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.206Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.206Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.206Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.207Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.207Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.207Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.207Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.209Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.210Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.210Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.210Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.210Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.210Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.211Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.211Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.211Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.211Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.212Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.212Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.212Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.212Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.212Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.213Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.213Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.214Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.214Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.214Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.214Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.214Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:08:25.214Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.215Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.215Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.215Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.215Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.216Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:08:25.216Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:08:25.221Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.222Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:08:25.222Z info: Found 488 results
2024-11-10T00:09:41.745Z info: Searching Easynews catalog for: ufc
2024-11-10T00:09:41.746Z info: Searching Easynews for: ufc
2024-11-10T00:09:41.746Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:09:43.384Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.385Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.389Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.390Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.390Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.391Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.394Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.395Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.395Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.396Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.396Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.396Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.396Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.398Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.398Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.399Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.399Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.399Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.400Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.400Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.400Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.400Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.401Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.401Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.401Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.402Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.402Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.404Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.404Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.405Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.406Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.406Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.407Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.407Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.407Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.408Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.408Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.408Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.408Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.408Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.409Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.410Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.410Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.410Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.410Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.411Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.412Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.412Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.412Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.413Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.413Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.413Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.414Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.414Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.415Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.415Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.415Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.415Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.415Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.415Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.415Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.416Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.416Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.416Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:09:43.416Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.416Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.417Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.417Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.417Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.418Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:09:43.419Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:09:43.422Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.423Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:09:43.423Z info: Found 488 results
2024-11-10T00:15:14.001Z info: Searching Easynews catalog for: ufc
2024-11-10T00:15:14.001Z info: Searching Easynews for: ufc
2024-11-10T00:15:14.004Z info: Searching Easynews catalog for: ufc
2024-11-10T00:15:14.002Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:15:14.004Z info: Searching Easynews for: ufc
2024-11-10T00:15:14.004Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:15:18.935Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.943Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.945Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.945Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.945Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.946Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.947Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.948Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.948Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.949Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.949Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.949Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.950Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.952Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.952Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.953Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.954Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.954Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.954Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.955Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.956Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.957Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.958Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.958Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.958Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.959Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.960Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.962Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.963Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.963Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.965Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.965Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.965Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.965Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.967Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.967Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.969Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.969Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.969Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.969Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.970Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.971Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.971Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.972Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.972Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.972Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.972Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.972Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.973Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.974Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.974Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.974Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.975Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.975Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.976Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.976Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.976Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.976Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.976Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.977Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.977Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.977Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.977Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.977Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:15:18.978Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.979Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.979Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.980Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.980Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.980Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:15:18.981Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:15:18.985Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.986Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.986Z info: Found 488 results
2024-11-10T00:15:18.999Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:15:18.999Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.000Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.000Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.000Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.000Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.001Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.002Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.002Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.003Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.003Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.003Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.003Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.005Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.005Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.006Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.006Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.006Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.006Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.006Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.007Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.007Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.007Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.007Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.008Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.009Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.009Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.010Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.010Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.011Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.011Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.011Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.011Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.011Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.012Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.012Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.013Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.013Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.013Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.013Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.013Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.014Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.014Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.015Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.015Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.015Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.015Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.015Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.016Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.016Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.016Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.016Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.017Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.017Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.017Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.017Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.018Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.018Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.018Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.018Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.018Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.019Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.019Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.019Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:15:19.019Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.019Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.020Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.020Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.020Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.021Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:15:19.021Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:15:19.025Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.025Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:15:19.025Z info: Found 488 results
2024-11-10T00:15:30.379Z info: Found 1 streams for easynews:UFC%20297%20Strickland%20vs%20du%20Plessis%20Early%20Prelims%20(%20(2024)
2024-11-10T00:16:14.177Z info: Found 1 streams for easynews:UFC%20297%20Strickland%20vs%20du%20Plessis%20Early%20Prelims%20(%20(2024)
2024-11-10T00:16:27.313Z info: Found 1 streams for easynews:UFC%20297%20Strickland%20vs%20du%20Plessis%20Early%20Prelims%20(%20(2024)
2024-11-10T00:21:47.345Z info: Fetching metadata for ID: tt2049403, Type: movie
2024-11-10T00:21:47.346Z info: Searching TMDB for IMDb ID: tt2049403
2024-11-10T00:21:47.479Z info: Fetching TMDB info for ID: 917496, Type: movie
2024-11-10T00:21:47.601Z info: Successfully fetched metadata for tt2049403
2024-11-10T00:21:47.601Z info: Searching for movie: Beetlejuice Beetlejuice 2024
2024-11-10T00:21:47.601Z info: Searching Easynews for: Beetlejuice Beetlejuice 2024
2024-11-10T00:21:47.601Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=Beetlejuice%20Beetlejuice%202024&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:21:48.753Z info: Found 0 results
2024-11-10T00:21:48.753Z info: No results found with year, trying without year: Beetlejuice Beetlejuice
2024-11-10T00:21:48.753Z info: Searching Easynews for: Beetlejuice Beetlejuice
2024-11-10T00:21:48.753Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=Beetlejuice%20Beetlejuice&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:21:51.065Z debug: Skipping sample file: beetlejuice.1988.internal.1080p.web.h264-javlar-sample.mkv
2024-11-10T00:21:51.094Z info: Found 438 streams for tt2049403
2024-11-10T00:21:51.081Z debug: Skipping sample file: 1080-beetlejuice-sample.mkv
2024-11-10T00:21:51.086Z debug: Skipping sample file: fatal1ty-beetlejuice-s03e07-xvid-sample.avi
2024-11-10T00:21:51.087Z debug: Skipping sample file: fatal1ty-beetlejuice-s03e08-xvid-sample.avi
2024-11-10T00:21:51.087Z debug: Skipping sample file: haco-beetlejuice-xvid-sample.avi
2024-11-10T00:21:51.089Z debug: Skipping sample file: ils-beetlejuice-sample.avi
2024-11-10T00:21:51.090Z info: Found 438 results
2024-11-10T00:22:47.042Z info: Fetching metadata for ID: tt0107120, Type: movie
2024-11-10T00:22:47.042Z info: Searching TMDB for IMDb ID: tt0107120
2024-11-10T00:22:47.187Z info: Fetching TMDB info for ID: 10439, Type: movie
2024-11-10T00:22:47.307Z info: Successfully fetched metadata for tt0107120
2024-11-10T00:22:47.307Z info: Searching for movie: Hocus Pocus 1993
2024-11-10T00:22:47.307Z info: Searching Easynews for: Hocus Pocus 1993
2024-11-10T00:22:47.308Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=Hocus%20Pocus%201993&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:22:48.662Z debug: Skipping sample file: hocus.pocus.1993.german.eac3d.dl.2160p.uhd.bluray.hevc-agromash-sample.mkv
2024-11-10T00:22:48.669Z info: Found 76 streams for tt0107120
2024-11-10T00:22:48.663Z debug: Skipping sample file: hocus.pocus.1993.polish.1080p.web.h264-chopin-sample.mkv
2024-11-10T00:22:48.663Z debug: Skipping sample file: hocus.pocus.1993.polish.720p.web.h264-chopin-sample.mkv
2024-11-10T00:22:48.663Z debug: Skipping sample file: sample-hocus.pocus.1993.dv.2160p.web.h265-heathen.mkv
2024-11-10T00:22:48.667Z debug: Skipping sample file: sov-hocus.pocus.1993.1080p-sample.mkv
2024-11-10T00:22:48.668Z info: Found 76 results
2024-11-10T00:26:48.382Z info: Fetching metadata for ID: tt29623480, Type: movie
2024-11-10T00:26:48.382Z info: Searching TMDB for IMDb ID: tt29623480
2024-11-10T00:26:48.401Z info: Fetching TMDB info for ID: 1184918, Type: movie
2024-11-10T00:26:48.419Z info: Successfully fetched metadata for tt29623480
2024-11-10T00:26:48.419Z info: Searching for movie: The Wild Robot 2024
2024-11-10T00:26:48.419Z info: Searching Easynews for: The Wild Robot 2024
2024-11-10T00:26:48.420Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=The%20Wild%20Robot%202024&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:26:49.351Z debug: Skipping sample file: the.wild.robot.2024.multi.2160p.web.h265-lost-sample.mkv
2024-11-10T00:26:49.353Z info: Found 74 streams for tt29623480
2024-11-10T00:26:49.351Z debug: Skipping sample file: the.wild.robot.2024.multi.dv.2160p.web.h265-lost-sample.mkv
2024-11-10T00:26:49.351Z debug: Skipping sample file: the.wild.robot.2024.multi.hdr.2160p.web.h265-lost-sample.mkv
2024-11-10T00:26:49.352Z info: Found 74 results
2024-11-10T00:28:21.306Z info: Searching Easynews catalog for: ufc
2024-11-10T00:28:21.307Z info: Searching Easynews for: ufc
2024-11-10T00:28:21.307Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:28:23.046Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.047Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.048Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.048Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.048Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.048Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.050Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.051Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.051Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.052Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.052Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.052Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.052Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.054Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.054Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.055Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.056Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.056Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.056Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.057Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.057Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.057Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.058Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.059Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.059Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.060Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.060Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.061Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.062Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.062Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.064Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.064Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.064Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.064Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.065Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.065Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.066Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.066Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.066Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.066Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.067Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.069Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.069Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.070Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.070Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.070Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.070Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.070Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.071Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.071Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.071Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.071Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.073Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.074Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.074Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.074Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.074Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.075Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.075Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.076Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.076Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.077Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.077Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.077Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:28:23.077Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.078Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.078Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.079Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.079Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.080Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:28:23.081Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:28:23.087Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.088Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:28:23.088Z info: Found 488 results
2024-11-10T00:28:23.110Z info: Searching Easynews catalog for: ufc
2024-11-10T00:28:23.111Z info: Searching Easynews for: ufc
2024-11-10T00:28:23.111Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:28:24.840Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.841Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.842Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.842Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.843Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.843Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.845Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.847Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.847Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.848Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.848Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.848Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.848Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.850Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.850Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.852Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.852Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.852Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.853Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.853Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.854Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.854Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.856Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.856Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.857Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.858Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.859Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.860Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.860Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.861Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.863Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.863Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.863Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.863Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.865Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.865Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.866Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.866Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.867Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.867Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.867Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.871Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.872Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.872Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.873Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.873Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.873Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.873Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.874Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.874Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.874Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.874Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.875Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.875Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.876Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.876Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.876Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.876Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.876Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.877Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.877Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.877Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.877Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.877Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:28:24.878Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.878Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.878Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.878Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.879Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.879Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:28:24.879Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:28:24.884Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.884Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:28:24.885Z info: Found 488 results
2024-11-10T00:40:46.111Z warn: Port 9876 is in use, trying 9877
2024-11-10T00:40:46.114Z warn: Port 9877 is in use, trying 9878
2024-11-10T00:40:46.114Z info: Addon running on http://127.0.0.1:9878
2024-11-10T00:41:00.517Z info: Searching Easynews catalog for: ufc
2024-11-10T00:41:00.517Z info: Searching Easynews for: ufc
2024-11-10T00:41:00.517Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:41:02.014Z info: Searching Easynews catalog for: ufc
2024-11-10T00:41:02.014Z info: Searching Easynews for: ufc
2024-11-10T00:41:02.014Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:41:02.293Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.294Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.295Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.295Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.295Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.296Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.296Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.297Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.297Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.298Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.298Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.298Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.298Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.300Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.300Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.301Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.301Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.301Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.302Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.304Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.305Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.305Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.306Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.306Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.307Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.308Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.308Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.309Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.309Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.310Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.311Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.311Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.311Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.311Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.313Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.313Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.314Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.314Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.314Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.314Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.314Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.316Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.316Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.317Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.317Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.317Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.317Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.317Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.318Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.318Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.318Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.319Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.326Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.326Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.327Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.327Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.327Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.327Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.328Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.328Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.328Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.329Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.329Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.329Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:41:02.329Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.329Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.332Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.333Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.333Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.333Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:41:02.334Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:41:02.341Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.342Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:41:02.343Z info: Found 488 results
2024-11-10T00:41:03.640Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.641Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.644Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.645Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.645Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.646Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.647Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.648Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.648Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.650Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.650Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.650Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.650Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.654Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.654Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.655Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.656Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.656Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.656Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.656Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.657Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.657Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.658Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.659Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.659Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.662Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.662Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.663Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.663Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.665Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.667Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.667Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.667Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.667Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.668Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.668Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.669Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.669Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.669Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.669Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.670Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.671Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.671Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.671Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.671Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.672Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.672Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.672Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.672Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.673Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.673Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.674Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.675Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.675Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.675Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.675Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.675Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.676Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.676Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.676Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.676Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.676Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.676Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.677Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:41:03.677Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.677Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.677Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.678Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.678Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.678Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:41:03.678Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:41:03.683Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.684Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:41:03.684Z info: Found 488 results
2024-11-10T00:41:58.264Z info: Searching Easynews catalog for: ufc
2024-11-10T00:41:58.264Z info: Searching Easynews for: ufc
2024-11-10T00:41:58.264Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:41:59.594Z info: Searching Easynews catalog for: ufc
2024-11-10T00:41:59.594Z info: Searching Easynews for: ufc
2024-11-10T00:41:59.594Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=ufc&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-10T00:42:00.029Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.029Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.031Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.032Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.032Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.032Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.034Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.037Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.038Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.039Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.039Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.039Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.039Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.041Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.041Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.043Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.043Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.043Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.043Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.044Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.044Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.044Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.045Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.045Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.045Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.047Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.047Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.048Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.048Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.049Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.050Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.050Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.050Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.051Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.053Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.053Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.053Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.053Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.054Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.054Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.054Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.056Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.056Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.057Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.057Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.057Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.058Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.058Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.058Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.058Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.058Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.059Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.060Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.060Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.061Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.061Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.061Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.062Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.062Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.062Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.062Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.063Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.063Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.063Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:42:00.063Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.064Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.064Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.065Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.065Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.065Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:42:00.065Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:42:00.071Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.071Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:42:00.072Z info: Found 488 results
2024-11-10T00:42:01.220Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.220Z debug: Skipping sample file: sample-ufc.fight.night.243.moicano.vs.saint.denis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.221Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.221Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.221Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.221Z debug: Skipping sample file: sample-ufc.306.o.malley.vs.dvalishvili.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.222Z debug: Skipping sample file: sample-ufc.fight.night.242.burns.vs.brady.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.223Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.223Z debug: Skipping sample file: sample-ufc.on.espn.62.cannonier.vs.borralho.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.224Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.224Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.224Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.224Z debug: Skipping sample file: sample-ufc.305.du.plessis.vs.adesanya.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.225Z debug: Skipping sample file: sample-ufc.on.espn.61.tybura.vs.spivac.2.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.225Z debug: Skipping sample file: sample-ufc.on.abc.7.sandhagen.vs.nurmagomedov.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.227Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.227Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.227Z debug: Skipping sample file: sample-ufc.304.edwards.vs.muhammad.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.227Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.228Z debug: Skipping sample file: sample-ufc.on.espn.60.lemos.vs.jandiroba.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.229Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.229Z debug: Skipping sample file: sample-ufc.on.espn.59.namajunas.vs.cortez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.231Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.231Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.231Z debug: Skipping sample file: sample-ufc.303.pereira.vs.prochazka.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.232Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.232Z debug: Skipping sample file: sample-ufc.on.abc.6.whittaker.vs.aliskerov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.233Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.233Z debug: Skipping sample file: sample-ufc.on.espn.58.perez.vs.taira.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.233Z debug: Skipping sample file: sample-ufc.on.espn.57.cannonier.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.234Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.234Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.234Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirier.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.234Z debug: Skipping sample file: sample-ufc.302.makhachev.vs.poirierl.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.235Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.235Z debug: Skipping sample file: sample-ufc.fight.night.241.barboza.vs.murphy.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.236Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.236Z debug: Skipping sample file: sample-ufc.on.espn.56.lewis.vs.nascimento.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.236Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.236Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.236Z debug: Skipping sample file: sample-ufc.301.pantoja.vs.erceg.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.237Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.237Z debug: Skipping sample file: sample-ufc.on.espn.55.nicolau.vs.perez.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.238Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.238Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.238Z debug: Skipping sample file: sample-ufc.300.pereira.vs.hill.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.238Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.239Z debug: Skipping sample file: sample-ufc.fight.night.240.allen.vs.curtis.2.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.239Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.239Z debug: Skipping sample file: sample-ufc.on.espn.54.blanchfield.vs.fiorot.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.239Z debug: Skipping sample file: sample-ufc.on.espn.53.ribas.vs.namajunas.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.239Z debug: Skipping sample file: sample-ufc.fight.night.239.tuivasa.vs.tybura.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.240Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.240Z debug: Skipping sample file: sample-ufc.fight.night.237.moreno.vs.royal.2.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.241Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.241Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.early.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.241Z debug: Skipping sample file: sample-ufc.298.volkanovski.vs.topuria.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.241Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.241Z debug: Skipping sample file: sample-ufc.fight.night.236.hermansson.vs.pyfer.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.241Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.241Z debug: Skipping sample file: sample-ufc.fight.night.235.dolidze.vs.imavov.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.242Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.ppv.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.242Z debug: Skipping sample file: sample-ufc.297.strickland.vs.du.plessis.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.242Z debug: Skipping sample file: ufc.281.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:42:01.242Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.243Z debug: Skipping sample file: sample-ufc.296.edwards.vs.covington.ppv.repack.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.245Z debug: Skipping sample file: sample-ufc.fight.night.233.song.vs.gutierrez.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.245Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.246Z debug: Skipping sample file: sample-ufc.on.espn.52.dariush.vs.tsarukyan.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.246Z debug: Skipping sample file: ufc.268.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:42:01.247Z debug: Skipping sample file: ufc.267.french.1080p.hdtv.h264-titus-sample.mkv
2024-11-10T00:42:01.254Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.prelims.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.254Z debug: Skipping sample file: sample-ufc.fight.night.232.allen.vs.craig.1080p.web.h264-verum.mkv
2024-11-10T00:42:01.255Z info: Found 488 results
2024-11-16T01:22:45.955Z info: Addon running on http://127.0.0.1:9876
2024-11-16T01:23:03.216Z error: Failed to decode configuration: Unexpected token } in JSON at position 0
2024-11-16T01:23:06.653Z error: Failed to decode configuration: Unexpected token } in JSON at position 0
2024-11-16T01:23:47.252Z info: Received configuration:
2024-11-16T01:23:47.255Z info: Addon router created with configuration
2024-11-16T01:23:47.253Z info: TMDB handler initialized with API key
2024-11-16T01:23:47.253Z info: Configuration set for Easynews searcher
2024-11-16T01:24:19.315Z info: Searching Easynews catalog for: arcane
2024-11-16T01:24:19.316Z info: Searching Easynews for: arcane
2024-11-16T01:24:19.368Z info: Searching Easynews catalog for: arcane
2024-11-16T01:24:19.316Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=arcane&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-16T01:24:19.368Z info: Searching Easynews for: arcane
2024-11-16T01:24:19.369Z debug: Fetching from URL: https://members.easynews.com/1.0/global5/search.html?submit=Search&gps=&sbj=&from=&ns=&fil=arcane&fex=&vc=&ac=&fty%5B%5D=VIDEO&s1=dtime&s1d=-&s2=nsubject&s2d=%2B&s3=nrfile&s3d=%2B&pby=1000&pno=1&sS=5&u=1&svL=&d1=&d1t=&d2=&d2t=&b1=&b1t=&b2=&b2t=&px1=&px1t=&px2=&px2t=&fps1=&fps1t=&fps2=&fps2t=&bps1=&bps1t=&bps2=&bps2t=&hz1=&hz1t=&hz2=&hz2t=&rn1=&rn1t=&rn2=&rn2t=&fly=1
2024-11-16T01:24:21.555Z debug: Skipping sample file: arcane.s02e03.1080p.web.h264-successfulcrab-sample.mkv
2024-11-16T01:24:21.556Z debug: Skipping sample file: arcane.s02e02.1080p.web.h264-successfulcrab-sample.mkv
2024-11-16T01:24:21.557Z debug: Skipping sample file: arcane.s02e01.1080p.web.h264-successfulcrab-sample.mkv
2024-11-16T01:24:21.563Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e07.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.564Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e09.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.565Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e07.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.565Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e09.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.566Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e08.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.566Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e08.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.567Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e06.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.567Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e05.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.567Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e06.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.568Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e05.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.568Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e04.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.568Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e04.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.569Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e03.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.571Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e03.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.572Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e02.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.572Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e01.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.572Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e02.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.573Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e01.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.586Z info: Found 698 results
2024-11-16T01:24:21.608Z debug: Skipping sample file: arcane.s02e03.1080p.web.h264-successfulcrab-sample.mkv
2024-11-16T01:24:21.608Z debug: Skipping sample file: arcane.s02e02.1080p.web.h264-successfulcrab-sample.mkv
2024-11-16T01:24:21.609Z debug: Skipping sample file: arcane.s02e01.1080p.web.h264-successfulcrab-sample.mkv
2024-11-16T01:24:21.615Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e07.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.616Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e09.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.616Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e07.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.616Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e09.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.617Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e08.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.617Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e08.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.617Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e06.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.618Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e05.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.618Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e06.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.618Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e05.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.619Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e04.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.619Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e04.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.619Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e03.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.619Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e03.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.620Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e02.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.620Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e01.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.620Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e02.swedish.720p.web.h264-sample.mkv
2024-11-16T01:24:21.621Z debug: Skipping sample file: kidsweee-arcane.league.of.legends.s01e01.swedish.1080p.web.h264-sample.mkv
2024-11-16T01:24:21.635Z info: Found 698 results
|