File size: 212,607 Bytes
0f0937d | 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 | [{"stream_name":"stdout","time":18.795963572,"data":" ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 47.5/47.5 MB 30.4 MB/s eta 0:00:00\n"}
,{"stream_name":"stdout","time":62.454759835,"data":"Dependencies ready\n"}
,{"stream_name":"stdout","time":62.889865705,"data":"Loaded 1,119 builds from /kaggle/working/data/chunk.csv\n"}
,{"stream_name":"stdout","time":62.891764505,"data":"Already done: 412 (resuming)\n"}
,{"stream_name":"stdout","time":63.485112392,"data":"\n"}
,{"stream_name":"stdout","time":63.485145392,"data":"=======================================================\n"}
,{"stream_name":"stdout","time":63.485149823,"data":" PMC Chunk Scraper\n"}
,{"stream_name":"stdout","time":63.485153152,"data":" Chunk: /kaggle/working/data/chunk.csv\n"}
,{"stream_name":"stdout","time":63.485156452,"data":" Total builds: 1,119\n"}
,{"stream_name":"stdout","time":63.485160992,"data":" Already done: 412\n"}
,{"stream_name":"stdout","time":63.485342673,"data":" Remaining: 707\n"}
,{"stream_name":"stdout","time":63.485384853,"data":" Output: /kaggle/working/pmc_out\n"}
,{"stream_name":"stdout","time":63.485392713,"data":" Progress CSV: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":63.485400513,"data":"=======================================================\n"}
,{"stream_name":"stdout","time":63.485408273,"data":"\n"}
,{"stream_name":"stdout","time":65.772083593,"data":"Clearing CF...\n"}
,{"stream_name":"stdout","time":66.870057309,"data":"CF cleared\n"}
,{"stream_name":"stderr","time":77.454072229,"data":"06:51:03 | [W0] Started\n"}
,{"stream_name":"stdout","time":77.454162829,"data":"5 worker tabs ready\n"}
,{"stream_name":"stdout","time":77.454170609,"data":"\n"}
,{"stream_name":"stderr","time":79.459427675,"data":"06:51:05 | [W1] Started\n"}
,{"stream_name":"stderr","time":81.793286134,"data":"06:51:08 | [W2] Started\n"}
,{"stream_name":"stderr","time":83.625162384,"data":"06:51:09 | [W3] Started\n"}
,{"stream_name":"stderr","time":85.456743164,"data":"06:51:11 | [W4] Started\n"}
,{"stream_name":"stderr","time":89.406145269,"data":"06:51:15 | [W1] OK the-end-event-fortntie-zip-file the-end-event.zip (190,653B)\n"}
,{"stream_name":"stdout","time":89.410981029,"data":"[W1] OK:1 SK:0 FL:0 | 1/1119 (0.1%) | 139/hr | 11h39m | Q:151\n"}
,{"stream_name":"stderr","time":103.140576881,"data":"06:51:29 | [W0] Click fail 747-private-jet: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":106.162797108,"data":"06:51:32 | [W2] Click fail herobrines-lost-temples-minecraft-adventure-map-1300738: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":109.488021068,"data":"06:51:35 | [W3] Click fail minigame-waiting-lobby-3218867: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":110.841490199,"data":"06:51:37 | [W1] OK fnaf-map-6155455 map-fnaf.mcworld (321,478B)\n"}
,{"stream_name":"stdout","time":110.85502906,"data":"[W1] OK:2 SK:0 FL:0 | 2/1119 (0.2%) | 152/hr | 11h39m | Q:151\n"}
,{"stream_name":"stderr","time":113.427215127,"data":"06:51:39 | [W4] Click fail best-houses-ever: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stdout","time":127.178131958,"data":"[W0] OK:2 SK:0 FL:1 | 3/1119 (0.3%) | 113/hr | 11h38m | Q:151\n"}
,{"stream_name":"stderr","time":132.804664065,"data":"06:51:59 | [W1] OK minecraft-ps3-world-d home.mcworld (2,618,609B)\n"}
,{"stream_name":"stdout","time":132.814858306,"data":"[W1] OK:3 SK:0 FL:1 | 4/1119 (0.4%) | 156/hr | 11h38m | Q:151\n"}
,{"stream_name":"stderr","time":146.281773356,"data":"06:52:12 | [W2] Click fail herobrines-lost-temples-minecraft-adventure-map-1300738: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":147.734389828,"data":"06:52:14 | [W3] Click fail minigame-waiting-lobby-3218867: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":150.568579583,"data":"06:52:16 | [W0] OK beatblocks beatblocks.zip (4,651,512B)\n"}
,{"stream_name":"stdout","time":150.573219724,"data":"[W0] OK:4 SK:0 FL:1 | 5/1119 (0.4%) | 165/hr | 11h38m | Q:151\n"}
,{"stream_name":"stderr","time":151.305476855,"data":"06:52:17 | [W4] Click fail best-houses-ever: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":151.665397455,"data":"06:52:17 | [W1] OK caterpillar-d6c-dozer catd6c.schem (1,980B)\n"}
,{"stream_name":"stdout","time":151.671270916,"data":"[W1] OK:5 SK:0 FL:1 | 6/1119 (0.5%) | 204/hr | 11h38m | Q:151\n"}
,{"stream_name":"stderr","time":164.775583967,"data":"06:52:31 | [W0] OK squid-game-1-12 squid-game-1-12.mcworld (1,091,751B)\n"}
,{"stream_name":"stdout","time":164.780786177,"data":"[W0] OK:6 SK:0 FL:1 | 7/1119 (0.6%) | 213/hr | 11h38m | Q:151\n"}
,{"stream_name":"stderr","time":178.691016946,"data":"06:52:44 | [W1] Click fail lucky-block-dungeon-for-popularmmos: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":180.623284653,"data":"06:52:46 | [W0] OK black-white-city-1-20 blackwhitecity.mcworld (6,078,099B)\n"}
,{"stream_name":"stdout","time":180.637569344,"data":"[W0] OK:7 SK:0 FL:1 | 8/1119 (0.7%) | 215/hr | 11h38m | Q:151\n"}
,{"stream_name":"stderr","time":182.893088596,"data":"06:52:49 | [W2] Click fail herobrines-lost-temples-minecraft-adventure-map-1300738: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":184.403882851,"data":"06:52:50 | [W3] Click fail minigame-waiting-lobby-3218867: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":187.323392693,"data":"06:52:53 | [W4] Click fail best-houses-ever: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":198.254705854,"data":"06:53:04 | [W0] OK tree-house-bedrock-version tree-house.mcworld (2,667,946B)\n"}
,{"stream_name":"stdout","time":198.274424756,"data":"[W0] OK:8 SK:0 FL:1 | 9/1119 (0.8%) | 214/hr | 11h37m | Q:151\n"}
,{"stream_name":"stdout","time":200.982321842,"data":"[W2] OK:8 SK:0 FL:2 | 10/1119 (0.9%) | 209/hr | 11h37m | Q:151\n"}
,{"stream_name":"stdout","time":201.900005632,"data":"[W3] OK:8 SK:0 FL:3 | 11/1119 (1.0%) | 208/hr | 11h37m | Q:151\n"}
,{"stream_name":"stdout","time":204.817776094,"data":"[W4] OK:8 SK:0 FL:4 | 12/1119 (1.1%) | 204/hr | 11h37m | Q:151\n"}
,{"stream_name":"stderr","time":213.03878719,"data":"06:53:19 | [W0] OK backrooms-level-2 backrooms2.mcworld (1,804,174B)\n"}
,{"stream_name":"stdout","time":213.0431743,"data":"[W0] OK:9 SK:0 FL:4 | 13/1119 (1.2%) | 217/hr | 11h37m | Q:150\n"}
,{"stream_name":"stderr","time":213.978366321,"data":"06:53:20 | [W2] OK parkour-themes parkour-themes-because-yehs.mcworld (267,703B)\n"}
,{"stream_name":"stdout","time":213.985949012,"data":"[W2] OK:10 SK:0 FL:4 | 14/1119 (1.3%) | 239/hr | 11h37m | Q:151\n"}
,{"stream_name":"stderr","time":214.001102663,"data":"06:53:20 | [W1] Click fail lucky-block-dungeon-for-popularmmos: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":217.51070335,"data":"06:53:23 | [W3] OK -6696387 l-mo.mcworld (14,663,859B)\n"}
,{"stream_name":"stdout","time":217.521120741,"data":"[W3] OK:11 SK:0 FL:4 | 15/1119 (1.3%) | 257/hr | 11h37m | Q:151\n"}
,{"stream_name":"stderr","time":218.743594434,"data":"06:53:25 | [W4] OK bubs-puzzle-dungeon puzzle-dungeon.mcworld (1,288,497B)\n"}
,{"stream_name":"stdout","time":218.751521444,"data":"[W4] OK:12 SK:0 FL:4 | 16/1119 (1.4%) | 278/hr | 11h37m | Q:151\n"}
,{"stream_name":"stderr","time":228.475607384,"data":"06:53:34 | [W0] OK minecraft-medieval-village-bedrock-edition-1-17-11 village.mcworld (137,207B)\n"}
,{"stream_name":"stdout","time":228.480354155,"data":"[W0] OK:13 SK:0 FL:4 | 17/1119 (1.5%) | 284/hr | 11h37m | Q:151\n"}
,{"stream_name":"stderr","time":228.873835249,"data":"06:53:35 | [W2] OK winter-wonderland-medieval-castle---1112 winter-wonderland-castle.zip (3,065,083B)\n"}
,{"stream_name":"stdout","time":228.87822097,"data":"[W2] OK:14 SK:0 FL:4 | 18/1119 (1.6%) | 305/hr | 11h37m | Q:151\n"}
,{"stream_name":"stderr","time":233.023804547,"data":"06:53:39 | [W4] OK lockheed-sr-71-blackbird-2279764 SR-71-Blackbird-Final-Hollow.schematic (6,065B)\n"}
,{"stream_name":"stdout","time":233.030533597,"data":"[W4] OK:15 SK:0 FL:4 | 19/1119 (1.7%) | 318/hr | 11h37m | Q:151\n"}
,{"stream_name":"stderr","time":234.979478638,"data":"06:53:41 | [W3] OK minecart-station-258942 trainstation_639694.schematic (1,638B)\n"}
,{"stream_name":"stdout","time":234.987622139,"data":"[W3] OK:16 SK:0 FL:4 | 20/1119 (1.8%) | 336/hr | 11h37m | Q:150\n"}
,{"stream_name":"stderr","time":238.617752865,"data":"06:53:44 | [W2] OK creeper---statue-actual-block-size Creeper_264667.schematic (762B)\n"}
,{"stream_name":"stdout","time":238.621252615,"data":"[W2] OK:17 SK:0 FL:4 | 21/1119 (1.9%) | 349/hr | 11h37m | Q:151\n"}
,{"stream_name":"stderr","time":242.693659902,"data":"06:53:48 | [W0] OK studebaker-commander-starlight-coupe-with-download studebaker.schem (2,152B)\n"}
,{"stream_name":"stdout","time":242.701625243,"data":"[W0] OK:18 SK:0 FL:4 | 22/1119 (2.0%) | 362/hr | 11h37m | Q:151\n"}
,{"stream_name":"stderr","time":246.609149996,"data":"06:53:52 | [W4] OK medieval-survival-house-5587650 maisonpm.schem (4,766B)\n"}
,{"stream_name":"stdout","time":246.614426577,"data":"[W4] OK:19 SK:0 FL:4 | 23/1119 (2.1%) | 374/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":250.322563733,"data":"06:53:56 | [W3] OK s-s-thalia-by-sterreichisch-ungarischer-lloyd-1907 ss-thalia-1907.zip (1,633,960B)\n"}
,{"stream_name":"stdout","time":250.337154385,"data":"[W3] OK:20 SK:0 FL:4 | 24/1119 (2.1%) | 385/hr | 11h36m | Q:150\n"}
,{"stream_name":"stderr","time":250.541807423,"data":"06:53:56 | [W1] Click fail lucky-block-dungeon-for-popularmmos: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":256.592812885,"data":"06:54:02 | [W2] OK parkour-the-pinkrooms the-pinkrooms.zip (2,515,925B)\n"}
,{"stream_name":"stdout","time":256.604886046,"data":"[W2] OK:21 SK:0 FL:4 | 25/1119 (2.2%) | 391/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":259.897693714,"data":"06:54:06 | [W0] OK homeworld-2-fleet hiigaranfleet.schematic (88,139B)\n"}
,{"stream_name":"stdout","time":259.901948665,"data":"[W0] OK:22 SK:0 FL:4 | 26/1119 (2.3%) | 403/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":261.033626072,"data":"06:54:07 | [W4] OK 256-byte-sram-module sram.zip (6,267,567B)\n"}
,{"stream_name":"stdout","time":261.040128563,"data":"[W4] OK:23 SK:0 FL:4 | 27/1119 (2.4%) | 419/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":265.33727146,"data":"06:54:11 | [W3] OK furniture-3448733 furnicure9358578.zip (431,026B)\n"}
,{"stream_name":"stdout","time":265.341436051,"data":"[W3] OK:24 SK:0 FL:4 | 28/1119 (2.5%) | 428/hr | 11h36m | Q:150\n"}
,{"stream_name":"stdout","time":267.870732273,"data":"[W1] OK:24 SK:0 FL:5 | 29/1119 (2.6%) | 423/hr | 11h36m | Q:149\n"}
,{"stream_name":"stderr","time":273.730585017,"data":"06:54:20 | [W0] OK bowling-alley-2043038 bowling alley.schematic (3,893B)\n"}
,{"stream_name":"stdout","time":273.742085279,"data":"[W0] OK:25 SK:0 FL:5 | 30/1119 (2.7%) | 428/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":273.744717779,"data":"06:54:20 | [W2] OK egg-wars-4925153 eggwars-v3.mcworld (3,523,926B)\n"}
,{"stream_name":"stdout","time":273.74956512,"data":"[W2] OK:26 SK:0 FL:5 | 31/1119 (2.8%) | 445/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":274.196082842,"data":"06:54:20 | [W4] OK snowman-free snowman.schem (25,032B)\n"}
,{"stream_name":"stdout","time":274.199430863,"data":"[W4] OK:27 SK:0 FL:5 | 32/1119 (2.9%) | 461/hr | 11h36m | Q:150\n"}
,{"stream_name":"stderr","time":278.025146325,"data":"06:54:24 | [W3] OK puzzle-my-mind-1-18-1-adventure puzzle-my-mind.zip (5,863,587B)\n"}
,{"stream_name":"stdout","time":278.031181415,"data":"[W3] OK:28 SK:0 FL:5 | 33/1119 (2.9%) | 470/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":283.09884961,"data":"06:54:29 | [W1] OK nordic-one-chunk-build nordic-hall.zip (4,419,134B)\n"}
,{"stream_name":"stdout","time":283.105180051,"data":"[W1] OK:29 SK:0 FL:5 | 34/1119 (3.0%) | 475/hr | 11h36m | Q:149\n"}
,{"stream_name":"stderr","time":284.388536869,"data":"06:54:30 | [W0] OK mob-battle-arena-4037945 briga-de-mobs.zip (1,388,297B)\n"}
,{"stream_name":"stdout","time":284.400860861,"data":"[W0] OK:30 SK:0 FL:5 | 35/1119 (3.1%) | 489/hr | 11h36m | Q:149\n"}
,{"stream_name":"stderr","time":288.271564059,"data":"06:54:34 | [W4] OK traincraft-freight-yard traincraftfreightyard10375460.zip (580,909B)\n"}
,{"stream_name":"stdout","time":288.27553771,"data":"[W4] OK:31 SK:0 FL:5 | 36/1119 (3.2%) | 496/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":288.967315565,"data":"06:54:35 | [W2] OK tropico-6-anniversary-park annipark-t6.schem (4,852B)\n"}
,{"stream_name":"stdout","time":288.970725936,"data":"[W2] OK:32 SK:0 FL:5 | 37/1119 (3.3%) | 511/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":290.495594758,"data":"06:54:36 | [W3] OK cherry-house-2 cherry-house2.zip (5,472B)\n"}
,{"stream_name":"stdout","time":290.497984699,"data":"[W3] OK:33 SK:0 FL:5 | 38/1119 (3.4%) | 523/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":299.364916577,"data":"06:54:45 | [W1] OK dannis-bank-headquarters dannis-bank-headquarters.zip (3,181,582B)\n"}
,{"stream_name":"stdout","time":299.369203978,"data":"[W1] OK:34 SK:0 FL:5 | 39/1119 (3.5%) | 519/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":301.265466316,"data":"06:54:47 | [W0] OK the-rings-of-power-statue ancient-statue.zip (8,251,274B)\n"}
,{"stream_name":"stdout","time":301.276409939,"data":"[W0] OK:35 SK:0 FL:5 | 40/1119 (3.6%) | 530/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":302.009183646,"data":"06:54:48 | [W2] OK offshore-wind-power-generator-140m g1-offshore-wind-power-generator.zip (717,794B)\n"}
,{"stream_name":"stdout","time":302.014738998,"data":"[W2] OK:36 SK:0 FL:5 | 41/1119 (3.7%) | 543/hr | 11h36m | Q:151\n"}
,{"stream_name":"stderr","time":305.806256473,"data":"06:54:52 | [W4] OK u-s-s-titan-a-neo-constitution-class-starship-star-trek-picard titan-a.schem (12,921B)\n"}
,{"stream_name":"stdout","time":305.814458015,"data":"[W4] OK:37 SK:0 FL:5 | 42/1119 (3.8%) | 550/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":306.233375515,"data":"06:54:52 | [W3] OK hello-neighbor-beta-1 hello-neighbor-beta-1.zip (320,320B)\n"}
,{"stream_name":"stdout","time":306.239563637,"data":"[W3] OK:38 SK:0 FL:5 | 43/1119 (3.8%) | 564/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":311.496854786,"data":"06:54:57 | [W0] OK ivy-valentine-3938289 ivyvalentine10977314.schematic (4,558B)\n"}
,{"stream_name":"stdout","time":311.504552069,"data":"[W0] OK:39 SK:0 FL:5 | 44/1119 (3.9%) | 566/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":316.76959151,"data":"06:55:03 | [W2] OK small-vietnam-war Vietnam-War-.zip (1,639,196B)\n"}
,{"stream_name":"stdout","time":316.778789693,"data":"[W2] OK:40 SK:0 FL:5 | 45/1119 (4.0%) | 569/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":318.030777741,"data":"06:55:04 | [W3] OK small-ship-584290 Boat_1475065.schematic (4,539B)\n"}
,{"stream_name":"stdout","time":318.035488642,"data":"[W3] OK:41 SK:0 FL:5 | 46/1119 (4.1%) | 580/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":320.022476568,"data":"06:55:06 | [W4] OK t-17-light-fighter tessin.schematic (496B)\n"}
,{"stream_name":"stdout","time":320.028384,"data":"[W4] OK:42 SK:0 FL:5 | 47/1119 (4.2%) | 589/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":324.789250185,"data":"06:55:11 | [W0] OK big-court-restaurant court.zip (11,187B)\n"}
,{"stream_name":"stdout","time":324.795775127,"data":"[W0] OK:43 SK:0 FL:5 | 48/1119 (4.3%) | 592/hr | 11h35m | Q:150\n"}
,{"stream_name":"stderr","time":328.606933408,"data":"06:55:14 | [W2] OK riptide-acv-c-amp-c-red-alert-3 riptide.schematic (22,831B)\n"}
,{"stream_name":"stdout","time":328.615176441,"data":"[W2] OK:44 SK:0 FL:5 | 49/1119 (4.4%) | 597/hr | 11h35m | Q:150\n"}
,{"stream_name":"stderr","time":330.783233013,"data":"06:55:17 | [W3] OK paint-in-perspective-free-download paint-in-perspective-frostbeer.zip (5,495,434B)\n"}
,{"stream_name":"stdout","time":330.792960866,"data":"[W3] OK:45 SK:0 FL:5 | 50/1119 (4.5%) | 606/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":330.997489899,"data":"06:55:17 | [W1] Click fail concorde---singapore-airlines-livery-password-needed: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":332.96700755,"data":"06:55:19 | [W4] OK blueybird-s-skyblock skyblock-by-blueybird.zip (296,184B)\n"}
,{"stream_name":"stdout","time":332.971258581,"data":"[W4] OK:46 SK:0 FL:5 | 51/1119 (4.6%) | 615/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":340.125744617,"data":"06:55:26 | [W2] OK medieval-family-house MedievalFamilyHouse_By_AngelusCaligo.schematic (2,320B)\n"}
,{"stream_name":"stdout","time":340.130254099,"data":"[W2] OK:47 SK:0 FL:5 | 52/1119 (4.6%) | 612/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":342.269352442,"data":"06:55:28 | [W0] OK bikini-bottom-i-spongebob sponge-bob.zip (2,232,007B)\n"}
,{"stream_name":"stdout","time":342.276659824,"data":"[W0] OK:48 SK:0 FL:5 | 53/1119 (4.7%) | 620/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":345.723538752,"data":"06:55:32 | [W3] OK chill-guy-6478718 chillguy.zip (1,345,464B)\n"}
,{"stream_name":"stdout","time":345.731400025,"data":"[W3] OK:49 SK:0 FL:5 | 54/1119 (4.8%) | 625/hr | 11h35m | Q:150\n"}
,{"stream_name":"stderr","time":346.745117669,"data":"06:55:33 | [W4] OK luxury-log-cabin-5646064 luxury-log-cabin.schem (4,894B)\n"}
,{"stream_name":"stdout","time":346.752468541,"data":"[W4] OK:50 SK:0 FL:5 | 55/1119 (4.9%) | 635/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":350.167323129,"data":"06:55:36 | [W2] OK medieval-gate-schematic oak_wood_gate9327892.schematic (276B)\n"}
,{"stream_name":"stdout","time":350.174601002,"data":"[W2] OK:51 SK:0 FL:5 | 56/1119 (5.0%) | 640/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":355.656040706,"data":"06:55:41 | [W0] OK desert-fossil-home desertfossilhome.schematic (955B)\n"}
,{"stream_name":"stdout","time":355.661658366,"data":"[W0] OK:52 SK:0 FL:5 | 57/1119 (5.1%) | 641/hr | 11h35m | Q:150\n"}
,{"stream_name":"stderr","time":357.212337199,"data":"06:55:43 | [W4] OK pirates-of-the-carribeans-theme-noteblocks noteblock-world-undo.zip (184B)\n"}
,{"stream_name":"stdout","time":357.22682861,"data":"[W4] OK:53 SK:0 FL:5 | 58/1119 (5.2%) | 650/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":359.967569923,"data":"06:55:46 | [W3] OK ocean-dream-4576647 ocean-dream.zip (2,076,322B)\n"}
,{"stream_name":"stdout","time":359.972883024,"data":"[W3] OK:54 SK:0 FL:5 | 59/1119 (5.3%) | 656/hr | 11h35m | Q:151\n"}
,{"stream_name":"stderr","time":367.620841456,"data":"06:55:53 | [W1] Click fail concorde---singapore-airlines-livery-password-needed: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":367.829067523,"data":"06:55:54 | [W2] OK medieval-manor-pack mce-memanorpack1.schem (5,479B)\n"}
,{"stream_name":"stdout","time":367.840537883,"data":"[W2] OK:55 SK:0 FL:5 | 60/1119 (5.4%) | 651/hr | 11h34m | Q:150\n"}
,{"stream_name":"stderr","time":371.038263673,"data":"06:55:57 | [W0] OK pvp-amp-bridging pvp-bridging.mcworld (1,349,770B)\n"}
,{"stream_name":"stdout","time":371.045594403,"data":"[W0] OK:56 SK:0 FL:5 | 61/1119 (5.5%) | 655/hr | 11h34m | Q:150\n"}
,{"stream_name":"stderr","time":373.640102231,"data":"06:55:59 | [W4] OK medieval-combat-battlegrounds-bedrock-and-education-edition medievel-battlegrounds-bedrock.mcworld (154,688B)\n"}
,{"stream_name":"stdout","time":373.653485632,"data":"[W4] OK:57 SK:0 FL:5 | 62/1119 (5.5%) | 662/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":375.92621191,"data":"06:56:02 | [W3] OK alien-orbital-tank alien-orbital-tank.schematic (1,172B)\n"}
,{"stream_name":"stdout","time":375.93067001,"data":"[W3] OK:58 SK:0 FL:5 | 63/1119 (5.6%) | 668/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":380.516076207,"data":"06:56:06 | [W0] OK desert-oasis-3513573 desertoasis9571693.schematic (10,820B)\n"}
,{"stream_name":"stdout","time":380.523042277,"data":"[W0] OK:59 SK:0 FL:5 | 64/1119 (5.7%) | 670/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":384.40079421,"data":"06:56:10 | [W4] OK sun-city city8967.zip (318,197B)\n"}
,{"stream_name":"stdout","time":384.41170736,"data":"[W4] OK:60 SK:0 FL:5 | 65/1119 (5.8%) | 673/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":386.277793684,"data":"06:56:12 | [W2] OK cookie-clicker-fully-fuctional Cookie-Clicker.zip (375,061B)\n"}
,{"stream_name":"stdout","time":386.282278524,"data":"[W2] OK:61 SK:0 FL:5 | 66/1119 (5.9%) | 680/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":392.325245541,"data":"06:56:18 | [W0] OK fire-nation-airship FireNationAirship.schematic (4,639B)\n"}
,{"stream_name":"stdout","time":392.337643392,"data":"[W0] OK:62 SK:0 FL:5 | 67/1119 (6.0%) | 679/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":392.355610092,"data":"06:56:18 | [W3] OK zeppelin-552329 zeppelinfinal_1392653.schematic (24,369B)\n"}
,{"stream_name":"stdout","time":392.363650882,"data":"[W3] OK:63 SK:0 FL:5 | 68/1119 (6.1%) | 690/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":397.685031585,"data":"06:56:23 | [W4] OK immobilizer-418-cruiser interdictor V2.schematic (15,701B)\n"}
,{"stream_name":"stdout","time":397.688086824,"data":"[W4] OK:64 SK:0 FL:5 | 69/1119 (6.2%) | 689/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":398.624761367,"data":"06:56:24 | [W2] OK the-cube THE CUBE.schematic (49,139B)\n"}
,{"stream_name":"stdout","time":398.629509927,"data":"[W2] OK:65 SK:0 FL:5 | 70/1119 (6.3%) | 698/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":402.444173017,"data":"06:56:28 | [W0] OK scp-002 scp-002.zip (1,719,837B)\n"}
,{"stream_name":"stdout","time":402.449050097,"data":"[W0] OK:66 SK:0 FL:5 | 71/1119 (6.3%) | 701/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":404.113441784,"data":"06:56:30 | [W1] Click fail concorde---singapore-airlines-livery-password-needed: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":406.495038106,"data":"06:56:32 | [W3] OK chicken-farm-with-a-twist-vanilla-survival chickenator.zip (459,315B)\n"}
,{"stream_name":"stdout","time":406.514545146,"data":"[W3] OK:67 SK:0 FL:5 | 72/1119 (6.4%) | 703/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":412.403571468,"data":"06:56:38 | [W4] OK massey-fergusson-fendt-ideal-9t-combine-harvester mf.schematic (6,473B)\n"}
,{"stream_name":"stdout","time":412.412825208,"data":"[W4] OK:68 SK:0 FL:5 | 73/1119 (6.5%) | 702/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":413.315396379,"data":"06:56:39 | [W2] OK steampunk-robot-clock-with-eye-_ steampunkrobot110208168.schematic (15,958B)\n"}
,{"stream_name":"stdout","time":413.327102609,"data":"[W2] OK:69 SK:0 FL:5 | 74/1119 (6.6%) | 710/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":418.516281806,"data":"06:56:44 | [W0] OK cry-of-fear-3363453 cryoffear9854699.zip (3,351,716B)\n"}
,{"stream_name":"stdout","time":418.526546767,"data":"[W0] OK:70 SK:0 FL:5 | 75/1119 (6.7%) | 710/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":420.170954297,"data":"06:56:46 | [W3] OK star-wars-rebel-transport-with-download-weareconquest rebel-transport.schematic (18,922B)\n"}
,{"stream_name":"stdout","time":420.175648777,"data":"[W3] OK:71 SK:0 FL:5 | 76/1119 (6.8%) | 717/hr | 11h34m | Q:149\n"}
,{"stream_name":"stdout","time":422.331364043,"data":"[W1] OK:71 SK:0 FL:6 | 77/1119 (6.9%) | 712/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":423.391635796,"data":"06:56:49 | [W2] OK medieval-house-3623666 medieval10502597.schematic (12,670B)\n"}
,{"stream_name":"stdout","time":423.396483936,"data":"[W2] OK:72 SK:0 FL:6 | 78/1119 (7.0%) | 720/hr | 11h34m | Q:151\n"}
,{"stream_name":"stderr","time":425.227635222,"data":"06:56:51 | [W4] OK fictonal-sailing-ship fictionalsailingsteamship.schem (7,603B)\n"}
,{"stream_name":"stdout","time":425.233341012,"data":"[W4] OK:73 SK:0 FL:6 | 79/1119 (7.1%) | 726/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":433.037108482,"data":"06:56:59 | [W3] OK snake-python snake-statue1.schematic (55,989B)\n"}
,{"stream_name":"stdout","time":433.043986792,"data":"[W3] OK:74 SK:0 FL:6 | 80/1119 (7.1%) | 721/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":436.796652477,"data":"06:57:03 | [W2] OK cementerio m_cementerio9231377.schematic (49,353B)\n"}
,{"stream_name":"stdout","time":436.804365398,"data":"[W2] OK:75 SK:0 FL:6 | 81/1119 (7.2%) | 723/hr | 11h33m | Q:150\n"}
,{"stream_name":"stderr","time":438.51198805,"data":"06:57:04 | [W0] OK fairly-odd-parents-house-schematic fairly-odd-files.zip (5,312,966B)\n"}
,{"stream_name":"stdout","time":438.52109749,"data":"[W0] OK:76 SK:0 FL:6 | 82/1119 (7.3%) | 730/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":440.558111663,"data":"06:57:06 | [W1] OK mount-arkos mountarkos10956691.zip (15,294,896B)\n"}
,{"stream_name":"stdout","time":440.561474443,"data":"[W1] OK:77 SK:0 FL:6 | 83/1119 (7.4%) | 735/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":440.878399293,"data":"06:57:07 | [W4] OK herobrine-temple-halloween-edition herobrinetemple-halloweenedition.schem (98,211B)\n"}
,{"stream_name":"stdout","time":440.892028993,"data":"[W4] OK:78 SK:0 FL:6 | 84/1119 (7.5%) | 744/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":447.131430004,"data":"06:57:13 | [W3] OK server-spawn-4275340 clipboard-19.schematic (1,351,810B)\n"}
,{"stream_name":"stdout","time":447.140290015,"data":"[W3] OK:79 SK:0 FL:6 | 85/1119 (7.6%) | 741/hr | 11h33m | Q:150\n"}
,{"stream_name":"stderr","time":449.713475574,"data":"06:57:16 | [W0] OK halloween-pumpkin-5355619 citrouille-d-halloween.zip (1,235,898B)\n"}
,{"stream_name":"stdout","time":449.719936844,"data":"[W0] OK:80 SK:0 FL:6 | 86/1119 (7.7%) | 746/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":452.010146804,"data":"06:57:18 | [W4] OK literature-club-classroom-doki-doki-literature-club clubpng.zip (1,390B)\n"}
,{"stream_name":"stdout","time":452.014947355,"data":"[W4] OK:81 SK:0 FL:6 | 87/1119 (7.8%) | 751/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":453.298029814,"data":"06:57:19 | [W2] OK modern-house-in-redrock-desert-biom ebtszfviaaa.zip (1,745,971B)\n"}
,{"stream_name":"stdout","time":453.302021644,"data":"[W2] OK:82 SK:0 FL:6 | 88/1119 (7.9%) | 757/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":456.205083633,"data":"06:57:22 | [W1] OK ichigo-and-his-hollow About 40000 Blocks.schematic (13,465B)\n"}
,{"stream_name":"stdout","time":456.209418713,"data":"[W1] OK:83 SK:0 FL:6 | 89/1119 (8.0%) | 761/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":463.057565504,"data":"06:57:29 | [W0] OK dom-zu-magdeburg manuel-michel.zip (4,470,246B)\n"}
,{"stream_name":"stdout","time":463.063992964,"data":"[W0] OK:84 SK:0 FL:6 | 90/1119 (8.0%) | 757/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":464.56266609,"data":"06:57:30 | [W4] OK mq-1-predator-drone MQ-1 Predator.schematic (666B)\n"}
,{"stream_name":"stdout","time":464.57321145,"data":"[W4] OK:85 SK:0 FL:6 | 91/1119 (8.1%) | 763/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":465.806528368,"data":"06:57:32 | [W3] OK hollowcave-icebluebell hollowcave.zip (2,206,067B)\n"}
,{"stream_name":"stdout","time":465.813025248,"data":"[W3] OK:86 SK:0 FL:6 | 92/1119 (8.2%) | 770/hr | 11h33m | Q:150\n"}
,{"stream_name":"stderr","time":467.250138722,"data":"06:57:33 | [W2] OK grand-theft-auto-v-rancher-xl rancherxl.schematic (619B)\n"}
,{"stream_name":"stdout","time":467.257527072,"data":"[W2] OK:87 SK:0 FL:6 | 93/1119 (8.3%) | 776/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":469.899680153,"data":"06:57:36 | [W1] OK magma-giant magmatic-giant.schematic (1,206B)\n"}
,{"stream_name":"stdout","time":469.903560754,"data":"[W1] OK:88 SK:0 FL:6 | 94/1119 (8.4%) | 779/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":475.741630442,"data":"06:57:42 | [W0] OK modern-house-3989153 clipboard-8.schematic (11,096B)\n"}
,{"stream_name":"stdout","time":475.747984623,"data":"[W0] OK:89 SK:0 FL:6 | 95/1119 (8.5%) | 777/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":476.97663638,"data":"06:57:43 | [W3] OK marion-8750-walking-dragline marion8259880.schematic (4,686B)\n"}
,{"stream_name":"stdout","time":476.980799791,"data":"[W3] OK:90 SK:0 FL:6 | 96/1119 (8.6%) | 784/hr | 11h33m | Q:151\n"}
,{"stream_name":"stderr","time":479.506563298,"data":"06:57:45 | [W4] OK hidden-fireplace-door Hidden-Door-fireplace.schematic (729B)\n"}
,{"stream_name":"stdout","time":479.510016968,"data":"[W4] OK:91 SK:0 FL:6 | 97/1119 (8.7%) | 787/hr | 11h33m | Q:150\n"}
,{"stream_name":"stderr","time":486.005732237,"data":"06:57:52 | [W2] OK hardcore-museum-challenge hardcore-museum-season-5.zip (11,427,813B)\n"}
,{"stream_name":"stdout","time":486.013561777,"data":"[W2] OK:92 SK:0 FL:6 | 98/1119 (8.8%) | 784/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":487.174067113,"data":"06:57:53 | [W1] OK mini-games-hub hub_6470896.schematic (7,110B)\n"}
,{"stream_name":"stdout","time":487.181062784,"data":"[W1] OK:93 SK:0 FL:6 | 99/1119 (8.8%) | 790/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":488.319967798,"data":"06:57:54 | [W3] OK space-shuttle-in-crawler space-shuttle.schematic (26,178B)\n"}
,{"stream_name":"stdout","time":488.324802769,"data":"[W3] OK:94 SK:0 FL:6 | 100/1119 (8.9%) | 797/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":490.587186038,"data":"06:57:56 | [W0] OK try-not-to-laugh-game trynottolaugh10923424.zip (2,500,062B)\n"}
,{"stream_name":"stdout","time":490.592062118,"data":"[W0] OK:95 SK:0 FL:6 | 101/1119 (9.0%) | 801/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":492.316076421,"data":"06:57:58 | [W4] OK bedwars-paradise-map-schematic bedwars11-schematic.schematic (16,981B)\n"}
,{"stream_name":"stdout","time":492.334566781,"data":"[W4] OK:96 SK:0 FL:6 | 102/1119 (9.1%) | 806/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":499.859093113,"data":"06:58:06 | [W2] OK the-lost-tower---a-quick-35x35-plot-build zatharel210092483.schematic (6,722B)\n"}
,{"stream_name":"stdout","time":499.866990603,"data":"[W2] OK:97 SK:0 FL:6 | 103/1119 (9.2%) | 800/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":503.241361946,"data":"06:58:09 | [W1] OK mario-64-cool-cool-mountain cool cool mountain.zip (4,393,567B)\n"}
,{"stream_name":"stdout","time":503.247651127,"data":"[W1] OK:98 SK:0 FL:6 | 104/1119 (9.3%) | 802/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":506.111032195,"data":"06:58:12 | [W3] OK prison-escape-4495087 prison-escape-by-yumwaffle.zip (970,440B)\n"}
,{"stream_name":"stdout","time":506.115447115,"data":"[W3] OK:99 SK:0 FL:6 | 105/1119 (9.4%) | 805/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":508.305647692,"data":"06:58:14 | [W0] OK modern-house-sandstone HouseModernSandstone.schematic (1,919B)\n"}
,{"stream_name":"stdout","time":508.308664692,"data":"[W0] OK:100 SK:0 FL:6 | 106/1119 (9.5%) | 809/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":509.112063977,"data":"06:58:15 | [W4] OK the-best-pvp-ever- TheBestPvP_6518701.zip (4,000,796B)\n"}
,{"stream_name":"stdout","time":509.120073217,"data":"[W4] OK:101 SK:0 FL:6 | 107/1119 (9.6%) | 816/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":517.407603381,"data":"06:58:23 | [W2] OK arena-611816 Arena_1702378.schematic (13,197B)\n"}
,{"stream_name":"stdout","time":517.415977531,"data":"[W2] OK:102 SK:0 FL:6 | 108/1119 (9.7%) | 809/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":517.715941181,"data":"06:58:24 | [W1] OK mini-redstone-house-v1 new-world.zip (543,161B)\n"}
,{"stream_name":"stdout","time":517.728016071,"data":"[W1] OK:103 SK:0 FL:6 | 109/1119 (9.7%) | 816/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":520.382682072,"data":"06:58:26 | [W3] OK redstone-trap-house New-World--_2853240.zip (122,760B)\n"}
,{"stream_name":"stdout","time":520.388176413,"data":"[W3] OK:104 SK:0 FL:6 | 110/1119 (9.8%) | 819/hr | 11h32m | Q:150\n"}
,{"stream_name":"stderr","time":522.293711761,"data":"06:58:28 | [W4] OK pvp-arena-builddownload PvP-Arena_4197846.zip (314,804B)\n"}
,{"stream_name":"stdout","time":522.299292731,"data":"[W4] OK:105 SK:0 FL:6 | 111/1119 (9.9%) | 824/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":525.341476865,"data":"06:58:31 | [W0] OK witch-4025485 witch.schematic (29,817B)\n"}
,{"stream_name":"stdout","time":525.345437335,"data":"[W0] OK:106 SK:0 FL:6 | 112/1119 (10.0%) | 826/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":535.380785512,"data":"06:58:41 | [W2] OK the-hidden-tnt-maze the-hidden-tnt-maze.zip (6,407,447B)\n"}
,{"stream_name":"stdout","time":535.393449073,"data":"[W2] OK:107 SK:0 FL:6 | 113/1119 (10.1%) | 816/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":536.62593985,"data":"06:58:42 | [W3] OK build-swap-arena-v-1-build-only buildswaparena1.schem (34,193B)\n"}
,{"stream_name":"stdout","time":536.634023091,"data":"[W3] OK:108 SK:0 FL:6 | 114/1119 (10.2%) | 822/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":536.981420902,"data":"06:58:43 | [W1] OK airship-3805125 oshiro10525467.schematic (25,213B)\n"}
,{"stream_name":"stdout","time":536.987008772,"data":"[W1] OK:109 SK:0 FL:6 | 115/1119 (10.3%) | 829/hr | 11h32m | Q:150\n"}
,{"stream_name":"stderr","time":538.052761624,"data":"06:58:44 | [W4] OK brick-tnt-factory TNT-factory.zip (1,748B)\n"}
,{"stream_name":"stdout","time":538.062085255,"data":"[W4] OK:110 SK:0 FL:6 | 116/1119 (10.4%) | 834/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":540.969976474,"data":"06:58:47 | [W0] OK nyan-cat-94453 Nyan_Cat_By_aagiN.schematic (406B)\n"}
,{"stream_name":"stdout","time":540.975060874,"data":"[W0] OK:111 SK:0 FL:6 | 117/1119 (10.5%) | 837/hr | 11h32m | Q:151\n"}
,{"stream_name":"stderr","time":546.631782,"data":"06:58:52 | [W2] OK powhatan-class-fleet-ocean-tug powhatan-class10777500.schematic (23,057B)\n"}
,{"stream_name":"stdout","time":546.6371183,"data":"[W2] OK:112 SK:0 FL:6 | 118/1119 (10.5%) | 835/hr | 11h31m | Q:150\n"}
,{"stream_name":"stderr","time":551.027089601,"data":"06:58:57 | [W3] OK pvp-arena-3299785 dextori8856003.schematic (171,741B)\n"}
,{"stream_name":"stdout","time":551.034071992,"data":"[W3] OK:113 SK:0 FL:6 | 119/1119 (10.6%) | 834/hr | 11h31m | Q:151\n"}
,{"stream_name":"stderr","time":553.729115057,"data":"06:59:00 | [W1] OK japanese-temple-2376682 Japanese_Dojo_6108576.schematic (1,787B)\n"}
,{"stream_name":"stdout","time":553.732999298,"data":"[W1] OK:114 SK:0 FL:6 | 120/1119 (10.7%) | 837/hr | 11h31m | Q:150\n"}
,{"stream_name":"stderr","time":555.877867527,"data":"06:59:02 | [W0] OK john-deere-tractor-and-trailer-with-download deere.schematic (849B)\n"}
,{"stream_name":"stdout","time":555.892405069,"data":"[W0] OK:115 SK:0 FL:6 | 121/1119 (10.8%) | 841/hr | 11h31m | Q:151\n"}
,{"stream_name":"stderr","time":556.118992277,"data":"06:59:02 | [W4] OK pby-catalina-black-cats pbycatalina.schematic (804B)\n"}
,{"stream_name":"stdout","time":556.129118698,"data":"[W4] OK:116 SK:0 FL:6 | 122/1119 (10.9%) | 848/hr | 11h31m | Q:151\n"}
,{"stream_name":"stderr","time":558.641208331,"data":"06:59:04 | [W2] OK the-arena-of-bozolink the-ultimate-mob-arena_20674_schematic.schematic (10,507B)\n"}
,{"stream_name":"stdout","time":558.646114832,"data":"[W2] OK:117 SK:0 FL:6 | 123/1119 (11.0%) | 851/hr | 11h31m | Q:151\n"}
,{"stream_name":"stderr","time":567.019004615,"data":"06:59:13 | [W4] OK avalion-cristmas-event xall-cristmas-ii.schematic (192,897B)\n"}
,{"stream_name":"stdout","time":567.041029877,"data":"[W4] OK:118 SK:0 FL:6 | 124/1119 (11.1%) | 844/hr | 11h31m | Q:149\n"}
,{"stream_name":"stderr","time":570.415401915,"data":"06:59:16 | [W1] OK the-cannibal-horror-map-6317465 killer-cannibal-map.mcworld (8,722,862B)\n"}
,{"stream_name":"stdout","time":570.427317407,"data":"[W1] OK:119 SK:0 FL:6 | 125/1119 (11.2%) | 845/hr | 11h31m | Q:151\n"}
,{"stream_name":"stderr","time":570.915743436,"data":"06:59:17 | [W3] OK the-voice-australia-2021-blinds-stage the-voice-australia-2021-stage.zip (7,135,342B)\n"}
,{"stream_name":"stdout","time":570.921725756,"data":"[W3] OK:120 SK:0 FL:6 | 126/1119 (11.3%) | 851/hr | 11h31m | Q:151\n"}
,{"stream_name":"stderr","time":573.483384756,"data":"06:59:19 | [W0] OK cutypie-boss-spawner cutypie.zip (1,305B)\n"}
,{"stream_name":"stdout","time":573.492023367,"data":"[W0] OK:121 SK:0 FL:6 | 127/1119 (11.3%) | 854/hr | 11h31m | Q:151\n"}
,{"stream_name":"stderr","time":573.699392532,"data":"06:59:19 | [W2] OK cubic-town-house schematic_58070981.schematic (3,545B)\n"}
,{"stream_name":"stdout","time":573.706166843,"data":"[W2] OK:122 SK:0 FL:6 | 128/1119 (11.4%) | 861/hr | 11h31m | Q:151\n"}
,{"stream_name":"stderr","time":585.151805408,"data":"06:59:31 | [W1] OK 15automatic-brewer-by-evolvecraft [1.5]Automatic Brewer (Sandstone) by EvolveCraft.schematic (2,861B)\n"}
,{"stream_name":"stdout","time":585.160130719,"data":"[W1] OK:123 SK:0 FL:6 | 129/1119 (11.5%) | 849/hr | 11h31m | Q:149\n"}
,{"stream_name":"stderr","time":588.215505298,"data":"06:59:34 | [W3] OK redstone-horror-house-2-the-nightmare-continues fixed-redstone-horror-house-2-v1-2.mcworld (876,640B)\n"}
,{"stream_name":"stdout","time":588.225068369,"data":"[W3] OK:124 SK:0 FL:6 | 130/1119 (11.6%) | 851/hr | 11h31m | Q:151\n"}
,{"stream_name":"stderr","time":588.901377711,"data":"06:59:35 | [W4] OK spleef-championship-arena-with-live-audience-no-lag-map spleef-server.zip (1,666,495B)\n"}
,{"stream_name":"stdout","time":588.906866412,"data":"[W4] OK:125 SK:0 FL:6 | 131/1119 (11.7%) | 856/hr | 11h31m | Q:151\n"}
,{"stream_name":"stderr","time":590.517935146,"data":"06:59:36 | [W2] OK free-mc-hycraft-us-practice-map-1-12-2 hycraft-arena-pvp-by-betches.zip (858,446B)\n"}
,{"stream_name":"stdout","time":590.523121587,"data":"[W2] OK:126 SK:0 FL:6 | 132/1119 (11.8%) | 861/hr | 11h31m | Q:151\n"}
,{"stream_name":"stderr","time":591.076390174,"data":"06:59:37 | [W0] OK minecraft-cirurgia mapadecirurgia9679904.zip (796,212B)\n"}
,{"stream_name":"stdout","time":591.079769544,"data":"[W0] OK:127 SK:0 FL:6 | 133/1119 (11.9%) | 867/hr | 11h31m | Q:150\n"}
,{"stream_name":"stderr","time":600.863763428,"data":"06:59:47 | [W2] OK bell-47-helicopter-from-the-tv-show-m-a-s-h bell47.schem (2,239B)\n"}
,{"stream_name":"stdout","time":600.870509859,"data":"[W2] OK:128 SK:0 FL:6 | 134/1119 (12.0%) | 857/hr | 11h31m | Q:151\n"}
,{"stream_name":"stderr","time":604.458786053,"data":"06:59:50 | [W3] OK armoured-land-rover-tangi-and-pangolin armouredlandrovertangiandpangolin.schem (4,148B)\n"}
,{"stream_name":"stdout","time":604.464528284,"data":"[W3] OK:129 SK:0 FL:6 | 135/1119 (12.1%) | 858/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":605.5093226,"data":"06:59:51 | [W4] OK ancient-desert-pyramid ancientdesertpyramid.schematic (3,410B)\n"}
,{"stream_name":"stdout","time":605.520384241,"data":"[W4] OK:130 SK:0 FL:6 | 136/1119 (12.2%) | 863/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":606.315928037,"data":"06:59:52 | [W1] OK nabo-star-wars-not-done nabo-20-done.zip (7,647,100B)\n"}
,{"stream_name":"stdout","time":606.321477578,"data":"[W1] OK:131 SK:0 FL:6 | 137/1119 (12.2%) | 869/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":608.481987799,"data":"06:59:54 | [W0] OK ju-87-stuka-4141311 justuka.schematic (5,902B)\n"}
,{"stream_name":"stdout","time":608.485625809,"data":"[W0] OK:132 SK:0 FL:6 | 138/1119 (12.3%) | 872/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":610.686951206,"data":"06:59:56 | [W2] OK tree-of-the-forest tree_6725115.schematic (32,542B)\n"}
,{"stream_name":"stdout","time":610.691849036,"data":"[W2] OK:133 SK:0 FL:6 | 139/1119 (12.4%) | 875/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":614.922486908,"data":"07:00:01 | [W3] OK beacon-tower Beacon Tower.schematic (1,040B)\n"}
,{"stream_name":"stdout","time":614.930605829,"data":"[W3] OK:134 SK:0 FL:6 | 140/1119 (12.5%) | 875/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":621.590502444,"data":"07:00:07 | [W1] OK glare-boss-battle-beta-playable-qualquer1-1-21-3 glare-boss-battle-beta-q1.zip (5,046,469B)\n"}
,{"stream_name":"stdout","time":621.608203416,"data":"[W1] OK:135 SK:0 FL:6 | 141/1119 (12.6%) | 871/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":621.615924677,"data":"07:00:07 | [W4] OK large-spruce-house sprucehousedl1.zip (2,983,627B)\n"}
,{"stream_name":"stdout","time":621.630565289,"data":"[W4] OK:136 SK:0 FL:6 | 142/1119 (12.7%) | 877/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":627.931554861,"data":"07:00:14 | [W2] OK house-medieval-4356448 house-medieval-1.schem (2,790B)\n"}
,{"stream_name":"stdout","time":627.937850491,"data":"[W2] OK:137 SK:0 FL:6 | 143/1119 (12.8%) | 874/hr | 11h30m | Q:150\n"}
,{"stream_name":"stderr","time":629.74740487,"data":"07:00:16 | [W3] OK heavens-might-100-sub-special HeavensMight.schematic (11,524B)\n"}
,{"stream_name":"stdout","time":629.757886901,"data":"[W3] OK:138 SK:0 FL:6 | 144/1119 (12.9%) | 877/hr | 11h30m | Q:150\n"}
,{"stream_name":"stderr","time":634.21379313,"data":"07:00:20 | [W1] OK uther-the-light-bringer Uther.schematic (212,087B)\n"}
,{"stream_name":"stdout","time":634.221962811,"data":"[W1] OK:139 SK:0 FL:6 | 145/1119 (13.0%) | 877/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":637.385102103,"data":"07:00:23 | [W4] OK dungeon-creeper-2383744 Dungeon-Creeper.zip (722,463B)\n"}
,{"stream_name":"stdout","time":637.390437474,"data":"[W4] OK:140 SK:0 FL:6 | 146/1119 (13.0%) | 878/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":639.955951504,"data":"07:00:26 | [W0] OK steam-powered-theme-park cirrus-copy.zip (12,045,257B)\n"}
,{"stream_name":"stdout","time":639.960321305,"data":"[W0] OK:141 SK:0 FL:6 | 147/1119 (13.1%) | 881/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":644.121293058,"data":"07:00:30 | [W2] OK small-fast-piston-elevator Small_FastElevator_248_High.Schematic (1,694B)\n"}
,{"stream_name":"stdout","time":644.13562313,"data":"[W2] OK:142 SK:0 FL:6 | 148/1119 (13.2%) | 880/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":645.988178513,"data":"07:00:32 | [W3] OK modern-b-52-stratofortress-strategic-bomber-tutorialdownload b.schematic (4,578B)\n"}
,{"stream_name":"stdout","time":645.997638944,"data":"[W3] OK:143 SK:0 FL:6 | 149/1119 (13.3%) | 884/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":648.960688273,"data":"07:00:35 | [W1] OK gong gong.zip (1,258,403B)\n"}
,{"stream_name":"stdout","time":648.971923494,"data":"[W1] OK:144 SK:0 FL:6 | 150/1119 (13.4%) | 885/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":650.982990657,"data":"07:00:37 | [W4] OK mirror-dimension mirror.zip (34,149B)\n"}
,{"stream_name":"stdout","time":651.002199889,"data":"[W4] OK:145 SK:0 FL:6 | 151/1119 (13.5%) | 888/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":653.254989762,"data":"07:00:39 | [W0] OK cowboy-encounter desert9979731.schematic (55,116B)\n"}
,{"stream_name":"stdout","time":653.259158392,"data":"[W0] OK:146 SK:0 FL:6 | 152/1119 (13.6%) | 891/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":662.005583431,"data":"07:00:48 | [W3] OK overraid overraid-ver-1-1-2b.zip (2,856,728B)\n"}
,{"stream_name":"stdout","time":662.025279683,"data":"[W3] OK:147 SK:0 FL:6 | 153/1119 (13.7%) | 884/hr | 11h30m | Q:151\n"}
,{"stream_name":"stderr","time":665.589088815,"data":"07:00:51 | [W2] OK london-charing-cross-railway-station london-charing-cross.zip (1,050,133B)\n"}
,{"stream_name":"stdout","time":665.594967255,"data":"[W2] OK:148 SK:0 FL:6 | 154/1119 (13.8%) | 885/hr | 11h29m | Q:150\n"}
,{"stream_name":"stderr","time":665.998267824,"data":"07:00:52 | [W1] OK junk-boat junk-boat.zip (1,192,723B)\n"}
,{"stream_name":"stdout","time":666.004988395,"data":"[W1] OK:149 SK:0 FL:6 | 155/1119 (13.9%) | 890/hr | 11h29m | Q:150\n"}
,{"stream_name":"stderr","time":669.841240879,"data":"07:00:56 | [W4] OK alchemy-skyblock alchemy-skyblock.zip (564,812B)\n"}
,{"stream_name":"stdout","time":669.845774419,"data":"[W4] OK:150 SK:0 FL:6 | 156/1119 (13.9%) | 891/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":670.519516031,"data":"07:00:56 | [W0] OK evil-ice-cream-man-2-rob-s-ice-cream-shop evil-ice-cream-man-2-v1-3.zip (568,635B)\n"}
,{"stream_name":"stdout","time":670.530216432,"data":"[W0] OK:151 SK:0 FL:6 | 157/1119 (14.0%) | 895/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":675.38048353,"data":"07:01:01 | [W2] OK impossible-obby-1 impossible-obby-1-extract-me.zip (1,011,059B)\n"}
,{"stream_name":"stdout","time":675.391129991,"data":"[W2] OK:152 SK:0 FL:6 | 158/1119 (14.1%) | 894/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":679.628002272,"data":"07:01:05 | [W3] OK arithmetic-division-2014 arithmetic-division.zip (906,512B)\n"}
,{"stream_name":"stdout","time":679.632750172,"data":"[W3] OK:153 SK:0 FL:6 | 159/1119 (14.2%) | 894/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":680.971629706,"data":"07:01:07 | [W1] OK 1-14-4-one-chunk-mega-mansion circle-castle-project.zip (10,241,719B)\n"}
,{"stream_name":"stdout","time":680.978317487,"data":"[W1] OK:154 SK:0 FL:6 | 160/1119 (14.3%) | 898/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":687.823611932,"data":"07:01:14 | [W4] OK field-of-flowers campoflores.schem (3,361B)\n"}
,{"stream_name":"stdout","time":687.850053193,"data":"[W4] OK:155 SK:0 FL:6 | 161/1119 (14.4%) | 894/hr | 11h29m | Q:150\n"}
,{"stream_name":"stderr","time":690.780053532,"data":"07:01:17 | [W0] OK 4-way-dome-hub 4-way-dome-train10354573.schematic (4,412B)\n"}
,{"stream_name":"stdout","time":690.791122202,"data":"[W0] OK:156 SK:0 FL:6 | 162/1119 (14.5%) | 895/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":692.426128968,"data":"07:01:18 | [W2] OK annihilation-pro-survival-gamescz annihlationmatygodosadam8494635.schematic (186,253B)\n"}
,{"stream_name":"stdout","time":692.434833178,"data":"[W2] OK:157 SK:0 FL:6 | 163/1119 (14.6%) | 899/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":694.104389806,"data":"07:01:20 | [W3] OK create-mod-skyblock create-skyblock.zip (4,815,515B)\n"}
,{"stream_name":"stdout","time":694.111196156,"data":"[W3] OK:158 SK:0 FL:6 | 164/1119 (14.7%) | 902/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":694.112976886,"data":"07:01:20 | [W1] OK large-aircraft-hangar Small-aircraft-hangars.schematic (17,737B)\n"}
,{"stream_name":"stdout","time":694.118778556,"data":"[W1] OK:159 SK:0 FL:6 | 165/1119 (14.7%) | 908/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":702.180030479,"data":"07:01:28 | [W4] OK medieval-city-with-schematic MedievalCity.schematic (9,056B)\n"}
,{"stream_name":"stdout","time":702.18676973,"data":"[W4] OK:160 SK:0 FL:6 | 166/1119 (14.8%) | 902/hr | 11h29m | Q:150\n"}
,{"stream_name":"stderr","time":704.647547079,"data":"07:01:30 | [W2] OK medieval-market-town city1.zip (1,342,464B)\n"}
,{"stream_name":"stdout","time":704.66985374,"data":"[W2] OK:161 SK:0 FL:6 | 167/1119 (14.9%) | 904/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":709.277712776,"data":"07:01:35 | [W0] OK asian-garden-4271547 asiangarden.schematic (3,051B)\n"}
,{"stream_name":"stdout","time":709.292484697,"data":"[W0] OK:162 SK:0 FL:6 | 168/1119 (15.0%) | 903/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":709.675959772,"data":"07:01:35 | [W3] OK cave-survival-base survival-cave-base.zip (15,201,419B)\n"}
,{"stream_name":"stdout","time":709.681127463,"data":"[W3] OK:163 SK:0 FL:6 | 169/1119 (15.1%) | 908/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":711.667374663,"data":"07:01:37 | [W1] OK medieval-blacksmith-2793916 chronicminer_smallhouse.schematic (1,588B)\n"}
,{"stream_name":"stdout","time":711.681187004,"data":"[W1] OK:164 SK:0 FL:6 | 170/1119 (15.2%) | 911/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":714.541729209,"data":"07:01:40 | [W4] OK spawnpoint-mcedit-file-included Spawnpoint.schematic (2,661B)\n"}
,{"stream_name":"stdout","time":714.554740239,"data":"[W4] OK:165 SK:0 FL:6 | 171/1119 (15.3%) | 912/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":717.876994964,"data":"07:01:44 | [W2] OK candy-castle-cararose-s-color-the-build castlemakeover-by-cararose.zip (4,773,629B)\n"}
,{"stream_name":"stdout","time":717.881026354,"data":"[W2] OK:166 SK:0 FL:6 | 172/1119 (15.4%) | 913/hr | 11h29m | Q:151\n"}
,{"stream_name":"stderr","time":726.350342246,"data":"07:01:52 | [W1] OK a-perfect-house-template--a-start-of-a-house-kinda-a-terraformed-superflat-world-like-a-spawn Aperfecthousetemplate.zip (1,145,835B)\n"}
,{"stream_name":"stdout","time":726.357608917,"data":"[W1] OK:167 SK:0 FL:6 | 173/1119 (15.5%) | 907/hr | 11h28m | Q:151\n"}
,{"stream_name":"stderr","time":728.240536193,"data":"07:01:54 | [W3] OK 8-level-parkour-for-bedrock-edition parkour-mobile-adrenaline.mcworld (118,397B)\n"}
,{"stream_name":"stdout","time":728.269276674,"data":"[W3] OK:168 SK:0 FL:6 | 174/1119 (15.5%) | 910/hr | 11h28m | Q:151\n"}
,{"stream_name":"stderr","time":729.235598593,"data":"07:01:55 | [W4] OK on-my-way-alan-walker-sabrina-carpenter-amp-farruko-minecraft-note-block alan-walker-on-my-way.zip (832,088B)\n"}
,{"stream_name":"stdout","time":729.240505903,"data":"[W4] OK:169 SK:0 FL:6 | 175/1119 (15.6%) | 914/hr | 11h28m | Q:150\n"}
,{"stream_name":"stderr","time":733.447134273,"data":"07:01:59 | [W2] OK church-of-the-holy-apostles-new-york-usa church2.zip (329,865B)\n"}
,{"stream_name":"stdout","time":733.454235034,"data":"[W2] OK:170 SK:0 FL:6 | 176/1119 (15.7%) | 913/hr | 11h28m | Q:150\n"}
,{"stream_name":"stderr","time":739.194818135,"data":"07:02:05 | [W1] OK working-football-soccer-map-for-minecraft football-soccer.zip (14,020,950B)\n"}
,{"stream_name":"stdout","time":739.210624566,"data":"[W1] OK:171 SK:0 FL:6 | 177/1119 (15.8%) | 911/hr | 11h28m | Q:151\n"}
,{"stream_name":"stderr","time":741.354629253,"data":"07:02:07 | [W3] OK stonehenge-1659344 Schematics_4180395.zip (45,277B)\n"}
,{"stream_name":"stdout","time":741.364392923,"data":"[W3] OK:172 SK:0 FL:6 | 178/1119 (15.9%) | 913/hr | 11h28m | Q:151\n"}
,{"stream_name":"stderr","time":742.916029366,"data":"07:02:09 | [W0] Click fail tardis-and-the-docter: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":743.145965495,"data":"07:02:09 | [W4] OK premade-multiplayer-spawn-great-for-survivalcreative-download spawn2.schematic (1,140B)\n"}
,{"stream_name":"stdout","time":743.150626095,"data":"[W4] OK:173 SK:0 FL:6 | 179/1119 (16.0%) | 916/hr | 11h28m | Q:151\n"}
,{"stream_name":"stderr","time":749.160139049,"data":"07:02:15 | [W2] OK mountain-amp-oversized-fox fox-done.schematic (231,405B)\n"}
,{"stream_name":"stdout","time":749.168111929,"data":"[W2] OK:174 SK:0 FL:6 | 180/1119 (16.1%) | 914/hr | 11h28m | Q:151\n"}
,{"stream_name":"stderr","time":757.439917522,"data":"07:02:23 | [W1] OK sandstone-castle-236335 castle_585419.schematic (3,011B)\n"}
,{"stream_name":"stdout","time":757.446208642,"data":"[W1] OK:175 SK:0 FL:6 | 181/1119 (16.2%) | 908/hr | 11h28m | Q:151\n"}
,{"stream_name":"stderr","time":759.666817292,"data":"07:02:25 | [W3] OK the-village-of-technic let's play grazie luke.schematic (6,063B)\n"}
,{"stream_name":"stdout","time":759.673286373,"data":"[W3] OK:176 SK:0 FL:6 | 182/1119 (16.3%) | 910/hr | 11h28m | Q:151\n"}
,{"stream_name":"stderr","time":760.12227818,"data":"07:02:26 | [W4] OK bumpers-drive-in-455-sub-special drive-in.zip (3,971,406B)\n"}
,{"stream_name":"stdout","time":760.127891221,"data":"[W4] OK:177 SK:0 FL:6 | 183/1119 (16.4%) | 915/hr | 11h28m | Q:151\n"}
,{"stream_name":"stderr","time":764.779378888,"data":"07:02:31 | [W2] OK big-barn Big barn.schematic (1,236B)\n"}
,{"stream_name":"stdout","time":764.796730539,"data":"[W2] OK:178 SK:0 FL:6 | 184/1119 (16.4%) | 914/hr | 11h28m | Q:151\n"}
,{"stream_name":"stderr","time":768.243647797,"data":"07:02:34 | [W1] OK super-mario-3-the-sky supermariotheskyworld5.schematic (66,884B)\n"}
,{"stream_name":"stdout","time":768.247335137,"data":"[W1] OK:179 SK:0 FL:6 | 185/1119 (16.5%) | 914/hr | 11h28m | Q:151\n"}
,{"stream_name":"stderr","time":774.889290521,"data":"07:02:41 | [W3] OK small-mages-tower magetower.schematic (1,466B)\n"}
,{"stream_name":"stdout","time":774.894630651,"data":"[W3] OK:180 SK:0 FL:6 | 186/1119 (16.6%) | 911/hr | 11h28m | Q:150\n"}
,{"stream_name":"stderr","time":777.955972795,"data":"07:02:44 | [W0] Click fail tardis-and-the-docter: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":778.605420481,"data":"07:02:44 | [W4] OK a-old-map-beta-1-8-1 a-old-map-challenge.zip (2,978,432B)\n"}
,{"stream_name":"stdout","time":778.610755111,"data":"[W4] OK:181 SK:0 FL:6 | 187/1119 (16.7%) | 911/hr | 11h28m | Q:150\n"}
,{"stream_name":"stderr","time":778.890501552,"data":"07:02:45 | [W2] OK helicopter-8set-model-mirror-s-edge mmb-078-helicopter.zip (682,158B)\n"}
,{"stream_name":"stdout","time":778.896279493,"data":"[W2] OK:182 SK:0 FL:6 | 188/1119 (16.8%) | 916/hr | 11h28m | Q:150\n"}
,{"stream_name":"stderr","time":784.534016578,"data":"07:02:50 | [W1] OK clock-tower-3829515 clocktower10607193.schematic (6,248B)\n"}
,{"stream_name":"stdout","time":784.539495078,"data":"[W1] OK:183 SK:0 FL:6 | 189/1119 (16.9%) | 914/hr | 11h27m | Q:150\n"}
,{"stream_name":"stderr","time":788.714010615,"data":"07:02:55 | [W2] OK fnaf-2-sister-location planet-minecraft-fnaf-2.zip (769,599B)\n"}
,{"stream_name":"stdout","time":788.723925536,"data":"[W2] OK:184 SK:0 FL:6 | 190/1119 (17.0%) | 913/hr | 11h27m | Q:151\n"}
,{"stream_name":"stderr","time":789.944550534,"data":"07:02:56 | [W3] OK jurassic-park-lego-visitor-center jurassic-park-lego-visitor-center.schematic (1,148B)\n"}
,{"stream_name":"stdout","time":789.952643135,"data":"[W3] OK:185 SK:0 FL:6 | 191/1119 (17.1%) | 917/hr | 11h27m | Q:151\n"}
,{"stream_name":"stderr","time":793.218091284,"data":"07:02:59 | [W4] OK systems-alliance-destroyer systems_alliance_destroyer7964360.schematic (35,375B)\n"}
,{"stream_name":"stdout","time":793.222492544,"data":"[W4] OK:186 SK:0 FL:6 | 192/1119 (17.2%) | 918/hr | 11h27m | Q:150\n"}
,{"stream_name":"stderr","time":801.332766516,"data":"07:03:07 | [W1] OK hazelmc-com-free-lobby-1-20-1 hazelmc-com.zip (11,487,975B)\n"}
,{"stream_name":"stdout","time":801.344277157,"data":"[W1] OK:187 SK:0 FL:6 | 193/1119 (17.2%) | 912/hr | 11h27m | Q:151\n"}
,{"stream_name":"stderr","time":801.432270491,"data":"07:03:07 | [W2] OK boeing-797-triple-decker-delta-airlines boeing7979411799.schematic (16,325B)\n"}
,{"stream_name":"stdout","time":801.437995251,"data":"[W2] OK:188 SK:0 FL:6 | 194/1119 (17.3%) | 917/hr | 11h27m | Q:151\n"}
,{"stream_name":"stderr","time":803.82020694,"data":"07:03:10 | [W3] OK kylo-ren-star-wars-3944210 kylo-ren-3d-black10998139.schematic (6,774B)\n"}
,{"stream_name":"stdout","time":803.830819749,"data":"[W3] OK:189 SK:0 FL:6 | 195/1119 (17.4%) | 919/hr | 11h27m | Q:151\n"}
,{"stream_name":"stderr","time":812.946724897,"data":"07:03:19 | [W0] Click fail tardis-and-the-docter: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":815.105989883,"data":"07:03:21 | [W1] OK short-and-fun short-and-fun_28443_schematic.rar (5,133,398B)\n"}
,{"stream_name":"stdout","time":815.121893552,"data":"[W1] OK:190 SK:0 FL:6 | 196/1119 (17.5%) | 910/hr | 11h27m | Q:151\n"}
,{"stream_name":"stderr","time":815.740459089,"data":"07:03:22 | [W3] OK abandoned-castle-fortress new-world.zip (3,718,731B)\n"}
,{"stream_name":"stdout","time":815.747555229,"data":"[W3] OK:191 SK:0 FL:6 | 197/1119 (17.6%) | 914/hr | 11h27m | Q:151\n"}
,{"stream_name":"stderr","time":817.922874673,"data":"07:03:24 | [W2] OK uss-allen-m-sumner-1-1-scale allen-m-sumner.schematic (4,680B)\n"}
,{"stream_name":"stdout","time":817.929150213,"data":"[W2] OK:192 SK:0 FL:6 | 198/1119 (17.7%) | 916/hr | 11h27m | Q:151\n"}
,{"stream_name":"stderr","time":822.581358177,"data":"07:03:28 | [W4] Click fail monster-mash-minecraft-note-block-song: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":826.185196106,"data":"07:03:32 | [W1] OK spawn-skyblock-1-19-download-link-in-the-description spawn-skyblock-1-19-2.zip (1,824,534B)\n"}
,{"stream_name":"stdout","time":826.197638436,"data":"[W1] OK:193 SK:0 FL:6 | 199/1119 (17.8%) | 911/hr | 11h27m | Q:151\n"}
,{"stream_name":"stdout","time":831.068016228,"data":"[W0] OK:193 SK:0 FL:7 | 200/1119 (17.9%) | 905/hr | 11h27m | Q:150\n"}
,{"stream_name":"stderr","time":834.704416195,"data":"07:03:40 | [W3] OK garchomp-pixel-art-2409556 garchomp-pixel-art_6198386.schematic (2,598B)\n"}
,{"stream_name":"stdout","time":834.708737235,"data":"[W3] OK:194 SK:0 FL:7 | 201/1119 (18.0%) | 906/hr | 11h27m | Q:151\n"}
,{"stream_name":"stderr","time":836.925407488,"data":"07:03:43 | [W2] OK minecraft-pvz-map-plants-vs-zombies-5491751 15447227-PMC.schematic (10,971B)\n"}
,{"stream_name":"stdout","time":836.931267188,"data":"[W2] OK:195 SK:0 FL:7 | 202/1119 (18.1%) | 908/hr | 11h27m | Q:150\n"}
,{"stream_name":"stderr","time":837.83245884,"data":"07:03:44 | [W1] OK the-nux-car thenuxcar.schematic (1,194B)\n"}
,{"stream_name":"stdout","time":837.83584254,"data":"[W1] OK:196 SK:0 FL:7 | 203/1119 (18.1%) | 911/hr | 11h27m | Q:151\n"}
,{"stream_name":"stderr","time":844.545119564,"data":"07:03:50 | [W0] OK modernized-woodland-mansion woodland-mansion-modernized.zip (10,261,294B)\n"}
,{"stream_name":"stdout","time":844.557103074,"data":"[W0] OK:197 SK:0 FL:7 | 204/1119 (18.2%) | 908/hr | 11h26m | Q:150\n"}
,{"stream_name":"stderr","time":847.033500903,"data":"07:03:53 | [W3] OK bedrock-the-graveyard-discontinued mrswatpl-graveyard.mcworld (6,515,152B)\n"}
,{"stream_name":"stdout","time":847.039732622,"data":"[W3] OK:198 SK:0 FL:7 | 205/1119 (18.3%) | 910/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":848.939720682,"data":"07:03:55 | [W2] OK the-floor-is-lava-parkour-3472072 thefloorslava-bypimpin9440711.zip (749,768B)\n"}
,{"stream_name":"stdout","time":848.945842362,"data":"[W2] OK:199 SK:0 FL:7 | 206/1119 (18.4%) | 912/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":854.549173885,"data":"07:04:00 | [W1] OK seahorse-tower Teskaczu-wieza.schematic (38,902B)\n"}
,{"stream_name":"stdout","time":854.560343784,"data":"[W1] OK:200 SK:0 FL:7 | 207/1119 (18.5%) | 910/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":855.163653762,"data":"07:04:01 | [W0] OK goddness-diana-amp-deer-statue-roman-diety-statue dianadearstatueromandiety8736285.schematic (768B)\n"}
,{"stream_name":"stdout","time":855.168285842,"data":"[W0] OK:201 SK:0 FL:7 | 208/1119 (18.6%) | 914/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":858.110021127,"data":"07:04:04 | [W4] Click fail monster-mash-minecraft-note-block-song: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":859.999148336,"data":"07:04:06 | [W2] OK toyota-efd70u-forklift toyotafork.schem (1,560B)\n"}
,{"stream_name":"stdout","time":860.006600716,"data":"[W2] OK:202 SK:0 FL:7 | 209/1119 (18.7%) | 913/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":865.201796051,"data":"07:04:11 | [W3] OK wolfenstein-tno-guard-robot guardrobot19608869308.schematic (426B)\n"}
,{"stream_name":"stdout","time":865.209388481,"data":"[W3] OK:203 SK:0 FL:7 | 210/1119 (18.8%) | 912/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":872.128567924,"data":"07:04:18 | [W1] OK custom-tree-small ellietree10436335.schematic (534B)\n"}
,{"stream_name":"stdout","time":872.138495993,"data":"[W1] OK:204 SK:0 FL:7 | 211/1119 (18.9%) | 908/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":872.58404305,"data":"07:04:18 | [W2] OK house-6---gregonsburg-hills House 6 - Gregonsburg Hills.schematic (1,683B)\n"}
,{"stream_name":"stdout","time":872.59022736,"data":"[W2] OK:205 SK:0 FL:7 | 212/1119 (18.9%) | 912/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":875.909264914,"data":"07:04:22 | [W0] OK gorillaz-phase-two-showboat-to-hades abandoned-kong-studios.zip (8,709,452B)\n"}
,{"stream_name":"stdout","time":875.916855274,"data":"[W0] OK:206 SK:0 FL:7 | 213/1119 (19.0%) | 913/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":878.212385732,"data":"07:04:24 | [W3] OK 0-modern-sky-scraper-mistahrushaman mr-skyscraper.zip (2,411,035B)\n"}
,{"stream_name":"stdout","time":878.218096402,"data":"[W3] OK:207 SK:0 FL:7 | 214/1119 (19.1%) | 915/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":887.88514462,"data":"07:04:34 | [W0] OK realms-smp-survival-ep-1 realms-smp-survival-ep-1.zip (4,443,906B)\n"}
,{"stream_name":"stdout","time":887.89521225,"data":"[W0] OK:208 SK:0 FL:7 | 215/1119 (19.2%) | 908/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":890.241729205,"data":"07:04:36 | [W1] OK server-spawn-by-rayenuwu spawn-by-rayen-uwu.zip (1,202,918B)\n"}
,{"stream_name":"stdout","time":890.249687465,"data":"[W1] OK:209 SK:0 FL:7 | 216/1119 (19.3%) | 910/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":891.891772288,"data":"07:04:38 | [W2] OK roller-coaster-1648259 achterbahn.schematic (13,412B)\n"}
,{"stream_name":"stdout","time":891.897800487,"data":"[W2] OK:210 SK:0 FL:7 | 217/1119 (19.4%) | 913/hr | 11h26m | Q:151\n"}
,{"stream_name":"stderr","time":895.723822276,"data":"07:04:42 | [W4] Click fail monster-mash-minecraft-note-block-song: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":904.33361256,"data":"07:04:50 | [W0] OK minecraft-xcel-energy-center-home-of-the-minnesota-wild-download xcel-energy-center.zip (3,917,918B)\n"}
,{"stream_name":"stdout","time":904.343665899,"data":"[W0] OK:211 SK:0 FL:7 | 218/1119 (19.5%) | 903/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":907.013852558,"data":"07:04:53 | [W2] OK dead-by-daylight-coal-tower dbd-coal-tower.zip (6,848,205B)\n"}
,{"stream_name":"stdout","time":907.019705078,"data":"[W2] OK:212 SK:0 FL:7 | 219/1119 (19.6%) | 905/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":907.020171798,"data":"07:04:53 | [W2] Think pause 37s\n"}
,{"stream_name":"stdout","time":907.020224788,"data":"\n"}
,{"stream_name":"stdout","time":907.020232428,"data":"==================================================\n"}
,{"stream_name":"stdout","time":907.020237848,"data":"SUMMARY: 603 done | 7 failed | 0 skipped | 3 pending\n"}
,{"stream_name":"stdout","time":907.020242718,"data":"Progress CSV: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":907.020248018,"data":"==================================================\n"}
,{"stream_name":"stdout","time":907.020252898,"data":"\n"}
,{"stream_name":"stderr","time":907.35449406,"data":"07:04:53 | [W1] OK tie-fighter-with-full-interior TIE fighter.schematic (497B)\n"}
,{"stream_name":"stdout","time":907.359358799,"data":"[W1] OK:213 SK:0 FL:7 | 220/1119 (19.7%) | 909/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":908.690053419,"data":"07:04:54 | [W3] Click fail villa-auditore---villa: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stdout","time":914.492680922,"data":"[W4] OK:213 SK:0 FL:8 | 221/1119 (19.7%) | 901/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":920.588326209,"data":"07:05:06 | [W0] OK tnt-wars-an-automated-dtc-map TnT-Battles-Version-10.zip (340,423B)\n"}
,{"stream_name":"stdout","time":920.594438999,"data":"[W0] OK:214 SK:0 FL:8 | 222/1119 (19.8%) | 899/hr | 11h25m | Q:150\n"}
,{"stream_name":"stderr","time":922.341634877,"data":"07:05:08 | [W1] OK dino-house-in-minecraft dinohouse.schematic (571B)\n"}
,{"stream_name":"stdout","time":922.358109836,"data":"[W1] OK:215 SK:0 FL:8 | 223/1119 (19.9%) | 901/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":924.361846509,"data":"07:05:10 | [W4] OK tower-of-knowledge TowerofKnowledge.schematic (5,790B)\n"}
,{"stream_name":"stdout","time":924.367060439,"data":"[W4] OK:216 SK:0 FL:8 | 224/1119 (20.0%) | 903/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":930.484930875,"data":"07:05:16 | [W0] OK pokemon-solgaleo solgaleo.zip (134,092B)\n"}
,{"stream_name":"stdout","time":930.491982315,"data":"[W0] OK:217 SK:0 FL:8 | 225/1119 (20.1%) | 901/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":940.762615953,"data":"07:05:27 | [W4] OK transport-ship-dragon-flyz stratoglider-dragon-flyz.mcworld (5,437,208B)\n"}
,{"stream_name":"stdout","time":940.767269243,"data":"[W4] OK:218 SK:0 FL:8 | 226/1119 (20.2%) | 895/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":941.26000238,"data":"07:05:27 | [W1] OK escape-from-desert-pt1-minecraft-bedrock-1-21-80 escape-from-the-desert.mcworld (4,327,536B)\n"}
,{"stream_name":"stdout","time":941.268944941,"data":"[W1] OK:219 SK:0 FL:8 | 227/1119 (20.3%) | 898/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":942.96363599,"data":"07:05:29 | [W0] OK royal-navy-type-45-destroyer Type-45-Destroyer.schematic (16,260B)\n"}
,{"stream_name":"stdout","time":942.96972677,"data":"[W0] OK:220 SK:0 FL:8 | 228/1119 (20.4%) | 901/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":944.282667496,"data":"07:05:30 | [W3] Click fail villa-auditore---villa: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":950.186800401,"data":"07:05:36 | [W2] OK aliens-2-m577-armored-personnel-carrier aliens-m577-armored-personnel-carrier.schematic (1,275B)\n"}
,{"stream_name":"stdout","time":950.198983292,"data":"[W2] OK:221 SK:0 FL:8 | 229/1119 (20.5%) | 897/hr | 11h25m | Q:150\n"}
,{"stream_name":"stderr","time":955.380754791,"data":"07:05:41 | [W1] OK meteorite-enchanting-room meteorite-island.zip (3,525,060B)\n"}
,{"stream_name":"stdout","time":955.392072412,"data":"[W1] OK:222 SK:0 FL:8 | 230/1119 (20.6%) | 896/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":958.952386215,"data":"07:05:45 | [W4] OK the-biggest-rollercoaster copy-of-minecraft-rollercoaster.zip (2,567,935B)\n"}
,{"stream_name":"stdout","time":958.961730766,"data":"[W4] OK:223 SK:0 FL:8 | 231/1119 (20.6%) | 897/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":960.437268017,"data":"07:05:46 | [W0] OK papa-smurf-the-smurfs-pixel-art Papa-Smurf.zip (165,952B)\n"}
,{"stream_name":"stdout","time":960.446198647,"data":"[W0] OK:224 SK:0 FL:8 | 232/1119 (20.7%) | 899/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":962.028150102,"data":"07:05:48 | [W2] OK acacia-house-5963656 acacia-house.zip (629,786B)\n"}
,{"stream_name":"stdout","time":962.040864403,"data":"[W2] OK:225 SK:0 FL:8 | 233/1119 (20.8%) | 901/hr | 11h25m | Q:151\n"}
,{"stream_name":"stderr","time":973.847454063,"data":"07:06:00 | [W1] OK nba-arena-conversion-02-arena nba-arena.zip (8,454,751B)\n"}
,{"stream_name":"stdout","time":973.859132193,"data":"[W1] OK:226 SK:0 FL:8 | 234/1119 (20.9%) | 894/hr | 11h24m | Q:151\n"}
,{"stream_name":"stderr","time":975.275553222,"data":"07:06:01 | [W4] OK r-m-s-olympic olympic.schematic (4,112,384B)\n"}
,{"stream_name":"stdout","time":975.280683523,"data":"[W4] OK:227 SK:0 FL:8 | 235/1119 (21.0%) | 896/hr | 11h24m | Q:151\n"}
,{"stream_name":"stderr","time":976.959158501,"data":"07:06:03 | [W2] OK legends-of-the-hidden-temple legendofthehiddentemple8400361.zip (293,624B)\n"}
,{"stream_name":"stdout","time":976.964557101,"data":"[W2] OK:228 SK:0 FL:8 | 236/1119 (21.1%) | 899/hr | 11h24m | Q:151\n"}
,{"stream_name":"stderr","time":980.09905132,"data":"07:06:06 | [W3] Click fail villa-auditore---villa: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":987.355535402,"data":"07:06:13 | [W1] OK freki-class-assault-carrier freki-class-assault-carrier.schematic (20,307B)\n"}
,{"stream_name":"stdout","time":987.364715992,"data":"[W1] OK:229 SK:0 FL:8 | 237/1119 (21.2%) | 892/hr | 11h24m | Q:151\n"}
,{"stream_name":"stderr","time":990.429539969,"data":"07:06:16 | [W4] OK 20th-century-residential-area residental-area.schematic (38,708B)\n"}
,{"stream_name":"stdout","time":990.436864399,"data":"[W4] OK:230 SK:0 FL:8 | 238/1119 (21.3%) | 893/hr | 11h24m | Q:151\n"}
,{"stream_name":"stderr","time":990.644523626,"data":"07:06:16 | [W0] Click fail mario-kart-drive-minecarts-in-vanilla-mc-with-download: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":991.04841886,"data":"07:06:17 | [W2] OK square---modern-house far979140111.schematic (21,294B)\n"}
,{"stream_name":"stdout","time":991.056697221,"data":"[W2] OK:231 SK:0 FL:8 | 239/1119 (21.4%) | 897/hr | 11h24m | Q:151\n"}
,{"stream_name":"stdout","time":999.741981652,"data":"[W3] OK:231 SK:0 FL:9 | 240/1119 (21.4%) | 888/hr | 11h24m | Q:151\n"}
,{"stream_name":"stderr","time":1001.231774794,"data":"07:06:27 | [W1] OK limousine--download limousine8310720.schematic (488B)\n"}
,{"stream_name":"stdout","time":1001.241138304,"data":"[W1] OK:232 SK:0 FL:9 | 241/1119 (21.5%) | 891/hr | 11h24m | Q:151\n"}
,{"stream_name":"stderr","time":1003.829014244,"data":"07:06:30 | [W4] OK bag-end-2776104 hobbiton.schematic (912,059B)\n"}
,{"stream_name":"stdout","time":1003.837496745,"data":"[W4] OK:233 SK:0 FL:9 | 242/1119 (21.6%) | 892/hr | 11h24m | Q:151\n"}
,{"stream_name":"stderr","time":1006.440229135,"data":"07:06:32 | [W2] OK volvo-bm-425b-haul-truck-with-download 425b.schem (2,963B)\n"}
,{"stream_name":"stdout","time":1006.449424165,"data":"[W2] OK:234 SK:0 FL:9 | 243/1119 (21.7%) | 893/hr | 11h24m | Q:151\n"}
,{"stream_name":"stderr","time":1010.060564571,"data":"07:06:36 | [W0] OK mario-kart-drive-minecarts-in-vanilla-mc-with-download driveminecarts8590055.schematic (681B)\n"}
,{"stream_name":"stdout","time":1010.067937761,"data":"[W0] OK:235 SK:0 FL:9 | 244/1119 (21.8%) | 894/hr | 11h24m | Q:151\n"}
,{"stream_name":"stderr","time":1015.023028863,"data":"07:06:41 | [W1] OK archion world_6841145.schematic (60,112B)\n"}
,{"stream_name":"stdout","time":1015.033357493,"data":"[W1] OK:236 SK:0 FL:9 | 245/1119 (21.9%) | 893/hr | 11h24m | Q:150\n"}
,{"stream_name":"stderr","time":1019.105273895,"data":"07:06:45 | [W3] OK pvp-arena-for-server arena_1982664.schematic (15,966B)\n"}
,{"stream_name":"stdout","time":1019.115728285,"data":"[W3] OK:237 SK:0 FL:9 | 246/1119 (22.0%) | 893/hr | 11h24m | Q:150\n"}
,{"stream_name":"stderr","time":1020.843117935,"data":"07:06:47 | [W2] OK detailed-medievalnordic-house house-18182125.schematic (3,151B)\n"}
,{"stream_name":"stdout","time":1020.856179275,"data":"[W2] OK:238 SK:0 FL:9 | 247/1119 (22.1%) | 895/hr | 11h24m | Q:151\n"}
,{"stream_name":"stderr","time":1020.857407526,"data":"07:06:47 | [W4] OK the-land-of-oakheart the-land-of-oakheart.zip (4,576,687B)\n"}
,{"stream_name":"stdout","time":1020.869759806,"data":"[W4] OK:239 SK:0 FL:9 | 248/1119 (22.2%) | 899/hr | 11h24m | Q:151\n"}
,{"stream_name":"stderr","time":1023.87507057,"data":"07:06:50 | [W0] OK trump-mart trumpmart10744826.schematic (48,183B)\n"}
,{"stream_name":"stderr","time":1023.88285239,"data":"07:06:50 | [W0] Think pause 23s\n"}
,{"stream_name":"stdout","time":1023.88287031,"data":"[W0] OK:240 SK:0 FL:9 | 249/1119 (22.3%) | 900/hr | 11h23m | Q:151\n"}
,{"stream_name":"stdout","time":1023.88289047,"data":"\n"}
,{"stream_name":"stdout","time":1023.88291,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1023.88292104,"data":"SUMMARY: 631 done | 9 failed | 0 skipped | 0 pending\n"}
,{"stream_name":"stdout","time":1023.88292436,"data":"Progress CSV: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":1023.8829275,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1023.88293085,"data":"\n"}
,{"stream_name":"stderr","time":1031.445420193,"data":"07:06:57 | [W1] OK coffin-dance-by-nitish-ig astranomia-by-nitish-ig.zip (993,014B)\n"}
,{"stream_name":"stdout","time":1031.452541293,"data":"[W1] OK:241 SK:0 FL:9 | 250/1119 (22.3%) | 896/hr | 11h23m | Q:151\n"}
,{"stream_name":"stderr","time":1035.240628115,"data":"07:07:01 | [W3] OK mushroom-themed-town world.zip (7,089,856B)\n"}
,{"stream_name":"stdout","time":1035.249048925,"data":"[W3] OK:242 SK:0 FL:9 | 251/1119 (22.4%) | 897/hr | 11h23m | Q:151\n"}
,{"stream_name":"stderr","time":1037.69413292,"data":"07:07:03 | [W4] OK slipknot-symbol Smbolo Slipknot.schematic (745B)\n"}
,{"stream_name":"stdout","time":1037.70622938,"data":"[W4] OK:243 SK:0 FL:9 | 252/1119 (22.5%) | 898/hr | 11h23m | Q:151\n"}
,{"stream_name":"stderr","time":1037.70910817,"data":"07:07:03 | [W4] Think pause 24s\n"}
,{"stream_name":"stdout","time":1037.7091189,"data":"\n"}
,{"stream_name":"stdout","time":1037.70916221,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1037.70916686,"data":"SUMMARY: 634 done | 9 failed | 0 skipped | 1 pending\n"}
,{"stream_name":"stdout","time":1037.70917022,"data":"Progress CSV: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":1037.70917334,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1037.70917667,"data":"\n"}
,{"stream_name":"stderr","time":1049.074499385,"data":"07:07:15 | [W1] OK ultimate-superior-clicker ultimate-superior-clicker.zip (1,811,733B)\n"}
,{"stream_name":"stdout","time":1049.081695936,"data":"[W1] OK:244 SK:0 FL:9 | 253/1119 (22.6%) | 891/hr | 11h23m | Q:151\n"}
,{"stream_name":"stderr","time":1050.979177171,"data":"07:07:17 | [W3] OK ace-attorney-court-room-detention-center-phoenix-wright-amp-co ace-attorney.zip (12,079,837B)\n"}
,{"stream_name":"stdout","time":1051.004057732,"data":"[W3] OK:245 SK:0 FL:9 | 254/1119 (22.7%) | 893/hr | 11h23m | Q:151\n"}
,{"stream_name":"stdout","time":1051.004551862,"data":"\n"}
,{"stream_name":"stdout","time":1051.004651733,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1051.004715953,"data":"SUMMARY: 636 done | 9 failed | 0 skipped | 2 pending\n"}
,{"stream_name":"stdout","time":1051.004752733,"data":"Progress CSV: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":1051.004835513,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1051.004848933,"data":"\n"}
,{"stream_name":"stderr","time":1051.005099863,"data":"07:07:17 | [W3] Think pause 40s\n"}
,{"stream_name":"stderr","time":1051.273297232,"data":"07:07:17 | [W0] OK mine-city-pocket-edition minecitypocketedition12zip84579848457984.zip (1,489,022B)\n"}
,{"stream_name":"stdout","time":1051.279684332,"data":"[W0] OK:246 SK:0 FL:9 | 255/1119 (22.8%) | 897/hr | 11h23m | Q:151\n"}
,{"stream_name":"stderr","time":1054.619376817,"data":"07:07:20 | [W2] Click fail uss-constellation: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1060.425054558,"data":"07:07:26 | [W0] OK 256-byte-disk-drive disc_256.schematic (16,006B)\n"}
,{"stream_name":"stdout","time":1060.434992009,"data":"[W0] OK:247 SK:0 FL:9 | 256/1119 (22.9%) | 892/hr | 11h23m | Q:151\n"}
,{"stream_name":"stderr","time":1063.422045422,"data":"07:07:29 | [W1] OK mountain-mansion-5778904 mansion-1.schematic (9,080B)\n"}
,{"stream_name":"stdout","time":1063.429146443,"data":"[W1] OK:248 SK:0 FL:9 | 257/1119 (23.0%) | 893/hr | 11h23m | Q:151\n"}
,{"stream_name":"stderr","time":1065.249547145,"data":"07:07:31 | [W4] OK uss-kalamazoo kalamazoo-2.schematic (2,401B)\n"}
,{"stream_name":"stdout","time":1065.253637325,"data":"[W4] OK:249 SK:0 FL:9 | 258/1119 (23.1%) | 895/hr | 11h23m | Q:151\n"}
,{"stream_name":"stderr","time":1074.96506248,"data":"07:07:41 | [W0] OK floating-island-731742 Floating-Island_1856364.zip (3,491,540B)\n"}
,{"stream_name":"stdout","time":1074.96981549,"data":"[W0] OK:250 SK:0 FL:9 | 259/1119 (23.1%) | 890/hr | 11h23m | Q:151\n"}
,{"stream_name":"stderr","time":1079.937112321,"data":"07:07:46 | [W4] OK eye-stage-redstone-concert-stage-build-by-raupauk eye-stage.zip (6,049,623B)\n"}
,{"stream_name":"stdout","time":1079.956288012,"data":"[W4] OK:251 SK:0 FL:9 | 260/1119 (23.2%) | 889/hr | 11h23m | Q:151\n"}
,{"stream_name":"stderr","time":1081.147208103,"data":"07:07:47 | [W1] OK american-styled-barn American-Barn-by-atllep.schematic (4,060B)\n"}
,{"stream_name":"stdout","time":1081.162464994,"data":"[W1] OK:252 SK:0 FL:9 | 261/1119 (23.3%) | 891/hr | 11h23m | Q:151\n"}
,{"stream_name":"stdout","time":1081.165150034,"data":"\n"}
,{"stream_name":"stdout","time":1081.165170554,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1081.165174784,"data":"SUMMARY: 643 done | 9 failed | 0 skipped | 1 pending\n"}
,{"stream_name":"stdout","time":1081.165186404,"data":"Progress CSV: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":1081.165189714,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1081.165193044,"data":"\n"}
,{"stream_name":"stderr","time":1081.165393714,"data":"07:07:47 | [W1] Think pause 20s\n"}
,{"stream_name":"stderr","time":1086.948116473,"data":"07:07:53 | [W0] OK kamienica-pod-z-otym-psem-we-wroc-awiu-with-download z-oty-pies.zip (2,268,895B)\n"}
,{"stream_name":"stdout","time":1086.953014513,"data":"[W0] OK:253 SK:0 FL:9 | 262/1119 (23.4%) | 890/hr | 11h22m | Q:151\n"}
,{"stream_name":"stderr","time":1091.685094327,"data":"07:07:57 | [W2] Click fail uss-constellation: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1093.127600007,"data":"07:07:59 | [W4] OK blue-star-paros-car-ferry blue-star-paros.zip (7,350,706B)\n"}
,{"stream_name":"stdout","time":1093.133548147,"data":"[W4] OK:254 SK:0 FL:9 | 263/1119 (23.5%) | 888/hr | 11h22m | Q:151\n"}
,{"stream_name":"stderr","time":1096.034689307,"data":"07:08:02 | [W3] OK venusaur-122346 Venusaur.schematic (1,886B)\n"}
,{"stream_name":"stdout","time":1096.040535137,"data":"[W3] OK:255 SK:0 FL:9 | 264/1119 (23.6%) | 889/hr | 11h22m | Q:151\n"}
,{"stream_name":"stderr","time":1103.579683498,"data":"07:08:09 | [W0] OK modern-sailing-yacht tomyacht8253444.schematic (4,949B)\n"}
,{"stream_name":"stdout","time":1103.592142928,"data":"[W0] OK:256 SK:0 FL:9 | 265/1119 (23.7%) | 886/hr | 11h22m | Q:151\n"}
,{"stream_name":"stderr","time":1107.463420211,"data":"07:08:13 | [W1] OK komatsu-d155w-amphibious-dozer-with-download d155w.schem (2,326B)\n"}
,{"stream_name":"stdout","time":1107.473139402,"data":"[W1] OK:257 SK:0 FL:9 | 266/1119 (23.8%) | 886/hr | 11h22m | Q:151\n"}
,{"stream_name":"stderr","time":1110.717252924,"data":"07:08:17 | [W4] OK the-only-way-is-up the-only-way-is-up.zip (14,424,487B)\n"}
,{"stream_name":"stdout","time":1110.724324824,"data":"[W4] OK:258 SK:0 FL:9 | 267/1119 (23.9%) | 887/hr | 11h22m | Q:151\n"}
,{"stream_name":"stderr","time":1112.823184936,"data":"07:08:19 | [W3] OK endsumo-map-schematic-sumo-map endsumo.schem (1,317B)\n"}
,{"stream_name":"stdout","time":1112.839489646,"data":"[W3] OK:259 SK:0 FL:9 | 268/1119 (23.9%) | 889/hr | 11h22m | Q:150\n"}
,{"stream_name":"stderr","time":1116.450740001,"data":"07:08:22 | [W0] OK green-thumb---modern-build GreenThumb.schematic (3,294B)\n"}
,{"stream_name":"stdout","time":1116.460220971,"data":"[W0] OK:260 SK:0 FL:9 | 269/1119 (24.0%) | 889/hr | 11h22m | Q:151\n"}
,{"stream_name":"stderr","time":1119.129334513,"data":"07:08:25 | [W1] OK flatland Flat landmass.zip (3,279,245B)\n"}
,{"stream_name":"stdout","time":1119.136204443,"data":"[W1] OK:261 SK:0 FL:9 | 270/1119 (24.1%) | 890/hr | 11h22m | Q:151\n"}
,{"stream_name":"stderr","time":1129.226542651,"data":"07:08:35 | [W2] Click fail uss-constellation: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1129.46919974,"data":"07:08:35 | [W4] OK polacre-seventeenth-century-sailing-vessel polacre.schematic (4,953B)\n"}
,{"stream_name":"stdout","time":1129.47588719,"data":"[W4] OK:262 SK:0 FL:9 | 271/1119 (24.2%) | 885/hr | 11h22m | Q:151\n"}
,{"stream_name":"stderr","time":1133.043616083,"data":"07:08:39 | [W3] OK unreal-hospital unrealhospitalq.zip (2,865,911B)\n"}
,{"stream_name":"stdout","time":1133.057425784,"data":"[W3] OK:263 SK:0 FL:9 | 272/1119 (24.3%) | 885/hr | 11h22m | Q:151\n"}
,{"stream_name":"stderr","time":1133.305150752,"data":"07:08:39 | [W0] OK astle-free-downloand mini-castle.schematic (214,170B)\n"}
,{"stream_name":"stdout","time":1133.328453393,"data":"[W0] OK:264 SK:0 FL:9 | 273/1119 (24.4%) | 888/hr | 11h22m | Q:151\n"}
,{"stream_name":"stderr","time":1134.876893126,"data":"07:08:41 | [W1] OK gambo-gaming-haus-schematics gambogaminghaus.schem (3,848B)\n"}
,{"stream_name":"stdout","time":1134.886813457,"data":"[W1] OK:265 SK:0 FL:9 | 274/1119 (24.5%) | 890/hr | 11h22m | Q:151\n"}
,{"stream_name":"stderr","time":1139.196891904,"data":"07:08:45 | [W4] OK chaosop-factions-spawn-1 chaosopspawny.schematic (34,852B)\n"}
,{"stream_name":"stdout","time":1139.201805275,"data":"[W4] OK:266 SK:0 FL:9 | 275/1119 (24.6%) | 890/hr | 11h22m | Q:150\n"}
,{"stream_name":"stderr","time":1143.949715768,"data":"07:08:50 | [W3] OK pmc-15-birthday-cake pmc-bday-cake.schem (6,229B)\n"}
,{"stream_name":"stdout","time":1143.958444798,"data":"[W3] OK:267 SK:0 FL:9 | 276/1119 (24.7%) | 890/hr | 11h21m | Q:150\n"}
,{"stream_name":"stdout","time":1148.566942407,"data":"[W2] OK:267 SK:0 FL:10 | 277/1119 (24.8%) | 886/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1149.80589324,"data":"07:08:56 | [W1] OK aqua-survival-2-0 aqua-survive-2-0.zip (5,929,629B)\n"}
,{"stream_name":"stdout","time":1149.81070502,"data":"[W1] OK:268 SK:0 FL:10 | 278/1119 (24.8%) | 888/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1150.416705921,"data":"07:08:56 | [W0] OK tropico-5-plantation plantation-t5.schem (9,102B)\n"}
,{"stream_name":"stdout","time":1150.424612941,"data":"[W0] OK:269 SK:0 FL:10 | 279/1119 (24.9%) | 891/hr | 11h21m | Q:150\n"}
,{"stream_name":"stderr","time":1156.123602597,"data":"07:09:02 | [W4] OK fokker-dr-1-triplane Fokker-Dr-1.schematic (5,215B)\n"}
,{"stream_name":"stdout","time":1156.141006988,"data":"[W4] OK:270 SK:0 FL:10 | 280/1119 (25.0%) | 890/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1157.711138432,"data":"07:09:03 | [W3] OK cathedral-2198059 Cathedral_5617226.schematic (15,564B)\n"}
,{"stream_name":"stdout","time":1157.718396822,"data":"[W3] OK:271 SK:0 FL:10 | 281/1119 (25.1%) | 892/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1167.394659365,"data":"07:09:13 | [W0] OK smal-condo-building-schematic vivacondo.schem (5,498B)\n"}
,{"stream_name":"stdout","time":1167.404510926,"data":"[W0] OK:272 SK:0 FL:10 | 282/1119 (25.2%) | 887/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1168.419179381,"data":"07:09:14 | [W2] OK firewalk-arena-v1-1-21-5 firewalk-arena-v2.zip (1,871,549B)\n"}
,{"stream_name":"stdout","time":1168.427965671,"data":"[W2] OK:273 SK:0 FL:10 | 283/1119 (25.3%) | 889/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1168.436462191,"data":"07:09:14 | [W1] OK custom-minecraft-desert-temple custom-desert-temple.zip (12,281,850B)\n"}
,{"stream_name":"stdout","time":1168.446071241,"data":"[W1] OK:274 SK:0 FL:10 | 284/1119 (25.4%) | 893/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1169.998135185,"data":"07:09:16 | [W4] OK arabian-castle-622949 arabian-castle.schematic (154,655B)\n"}
,{"stream_name":"stdout","time":1170.010343755,"data":"[W4] OK:275 SK:0 FL:10 | 285/1119 (25.5%) | 895/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1174.463476619,"data":"07:09:20 | [W3] OK cyberman---doctor-who---3d-model Cyberman.schematic (19,531B)\n"}
,{"stream_name":"stdout","time":1174.467700969,"data":"[W3] OK:276 SK:0 FL:10 | 286/1119 (25.6%) | 894/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1179.799848673,"data":"07:09:26 | [W2] OK villa-toscana villa-toscana.schematic (11,418B)\n"}
,{"stream_name":"stdout","time":1179.808463223,"data":"[W2] OK:277 SK:0 FL:10 | 287/1119 (25.6%) | 893/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1180.986655444,"data":"07:09:27 | [W0] OK imagine-dragons-believer-on-noteblocks imagine-dragons-believer.zip (2,271,651B)\n"}
,{"stream_name":"stdout","time":1180.995813314,"data":"[W0] OK:278 SK:0 FL:10 | 288/1119 (25.7%) | 896/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1184.482800914,"data":"07:09:30 | [W1] OK vietnam-fisheries-resources-surveillance-kn-490-class-dn-2000-scale-1-5-1 vi-n-b-o-t-ng-2019-08-18-13-19-54.schematic (8,300B)\n"}
,{"stream_name":"stdout","time":1184.491604845,"data":"[W1] OK:279 SK:0 FL:10 | 289/1119 (25.8%) | 896/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1185.801257629,"data":"07:09:32 | [W4] OK fredbears-pizza-and-friends fredbears-pizza-and-friends.zip (401,905B)\n"}
,{"stream_name":"stdout","time":1185.81002424,"data":"[W4] OK:280 SK:0 FL:10 | 290/1119 (25.9%) | 898/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1191.770127655,"data":"07:09:38 | [W3] OK police-station-3880629 policestation10777614.zip (1,972,770B)\n"}
,{"stream_name":"stdout","time":1191.779665235,"data":"[W3] OK:281 SK:0 FL:10 | 291/1119 (26.0%) | 897/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1192.891402084,"data":"07:09:39 | [W0] OK marvels-agents-of-shield-bundle-part-5 agentcoulsonsvetandsuv8798598.schematic (641B)\n"}
,{"stream_name":"stdout","time":1192.912946984,"data":"[W0] OK:282 SK:0 FL:10 | 292/1119 (26.1%) | 899/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1193.692647711,"data":"07:09:39 | [W2] OK colonial-home Colonial.schematic (7,023B)\n"}
,{"stream_name":"stdout","time":1193.708579222,"data":"[W2] OK:283 SK:0 FL:10 | 293/1119 (26.2%) | 901/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1195.317960097,"data":"07:09:41 | [W1] OK woodport-lighthouse-14-beacons LighthousebyEratheon.schematic (2,440B)\n"}
,{"stream_name":"stdout","time":1195.325765438,"data":"[W1] OK:284 SK:0 FL:10 | 294/1119 (26.3%) | 903/hr | 11h21m | Q:151\n"}
,{"stream_name":"stderr","time":1202.568661417,"data":"07:09:48 | [W4] OK belaz-75710-in-scale-2-1 belaz-75710-by-cbs.zip (2,179,778B)\n"}
,{"stream_name":"stdout","time":1202.583982058,"data":"[W4] OK:285 SK:0 FL:10 | 295/1119 (26.4%) | 901/hr | 11h21m | Q:150\n"}
,{"stream_name":"stderr","time":1207.144058385,"data":"07:09:53 | [W3] OK new-holland-t8-tractor-with-download t8tractor.schem (2,482B)\n"}
,{"stream_name":"stdout","time":1207.164371575,"data":"[W3] OK:286 SK:0 FL:10 | 296/1119 (26.5%) | 900/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1207.804866467,"data":"07:09:54 | [W0] OK arab-gothic-sky-tower arab-gothic-tower.zip (289,508B)\n"}
,{"stream_name":"stdout","time":1207.816390758,"data":"[W0] OK:287 SK:0 FL:10 | 297/1119 (26.5%) | 903/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1209.028452459,"data":"07:09:55 | [W1] OK san-francisco san-francisco.zip (4,656,085B)\n"}
,{"stream_name":"stdout","time":1209.04262306,"data":"[W1] OK:288 SK:0 FL:10 | 298/1119 (26.6%) | 905/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1209.62947206,"data":"07:09:55 | [W2] OK contemporary-museum contemporary_museum9340096.schematic (55,388B)\n"}
,{"stream_name":"stdout","time":1209.63471026,"data":"[W2] OK:289 SK:0 FL:10 | 299/1119 (26.7%) | 908/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1221.037207243,"data":"07:10:07 | [W4] OK oakridge-medieval-outpost-amp-marketplace oakridge-medieval-outpost-marketplace.zip (44,790B)\n"}
,{"stream_name":"stdout","time":1221.047681873,"data":"[W4] OK:290 SK:0 FL:10 | 300/1119 (26.8%) | 902/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1222.427796201,"data":"07:10:08 | [W0] OK tamas-manor tamahouse2.schematic (100,178B)\n"}
,{"stream_name":"stdout","time":1222.439206111,"data":"[W0] OK:291 SK:0 FL:10 | 301/1119 (26.9%) | 904/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1226.027061275,"data":"07:10:12 | [W3] OK duffy-s-ford-burgundian-castle-hamlet duffy-s-ford.zip (2,249,668B)\n"}
,{"stream_name":"stdout","time":1226.035636235,"data":"[W3] OK:292 SK:0 FL:10 | 302/1119 (27.0%) | 904/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1226.356526126,"data":"07:10:12 | [W1] OK earth-dragon-lego-ninjago earth-dragon.schematic (2,120B)\n"}
,{"stream_name":"stdout","time":1226.364078516,"data":"[W1] OK:293 SK:0 FL:10 | 303/1119 (27.1%) | 907/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1226.908184605,"data":"07:10:13 | [W2] OK romanesque-tower-bedrock-vanilla pisa.mcstructure (205,797B)\n"}
,{"stream_name":"stdout","time":1226.915110586,"data":"[W2] OK:294 SK:0 FL:10 | 304/1119 (27.2%) | 910/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1236.435781444,"data":"07:10:22 | [W4] OK simple-modern-house-5947768 name-s-simple-modern-house.zip (3,240,295B)\n"}
,{"stream_name":"stdout","time":1236.444019884,"data":"[W4] OK:295 SK:0 FL:10 | 305/1119 (27.3%) | 905/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1239.000195322,"data":"07:10:25 | [W0] OK cn-tower-5864791 9cn-tower-mini.zip (805,267B)\n"}
,{"stream_name":"stdout","time":1239.010267072,"data":"[W0] OK:296 SK:0 FL:10 | 306/1119 (27.3%) | 906/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1239.615422593,"data":"07:10:25 | [W3] OK sf-18-harpy-space-superiority-fighter harpy.schematic (955B)\n"}
,{"stream_name":"stdout","time":1239.635057524,"data":"[W3] OK:297 SK:0 FL:10 | 307/1119 (27.4%) | 909/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1241.946019593,"data":"07:10:28 | [W2] OK clay-soldier-arena-now-with-reinforcement-airdrops-read-description clay soldier arena with reinforcment airdrops.schematic (28,160B)\n"}
,{"stream_name":"stdout","time":1241.967287954,"data":"[W2] OK:298 SK:0 FL:10 | 308/1119 (27.5%) | 910/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1244.328570825,"data":"07:10:30 | [W1] OK hub-pirate-free-download cast.schematic (561,644B)\n"}
,{"stream_name":"stdout","time":1244.334483635,"data":"[W1] OK:299 SK:0 FL:10 | 309/1119 (27.6%) | 912/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1251.514454862,"data":"07:10:37 | [W4] OK skelebobs random-villagers.zip (1,891,024B)\n"}
,{"stream_name":"stdout","time":1251.523690162,"data":"[W4] OK:300 SK:0 FL:10 | 310/1119 (27.7%) | 909/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1255.744664978,"data":"07:10:42 | [W3] OK desert-paintball-minigame-map desert-paintball.zip (3,188,573B)\n"}
,{"stream_name":"stdout","time":1255.755128168,"data":"[W3] OK:301 SK:0 FL:10 | 311/1119 (27.8%) | 909/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1256.128545811,"data":"07:10:42 | [W0] OK nemesis-class-destroyer-fictional nemesisdestroyer.schem (12,753B)\n"}
,{"stream_name":"stdout","time":1256.136815871,"data":"[W0] OK:302 SK:0 FL:10 | 312/1119 (27.9%) | 912/hr | 11h20m | Q:151\n"}
,{"stream_name":"stderr","time":1263.996835762,"data":"07:10:50 | [W4] OK spruce-village-butcher butcher-big.schem (2,728B)\n"}
,{"stream_name":"stdout","time":1264.007230992,"data":"[W4] OK:303 SK:0 FL:10 | 313/1119 (28.0%) | 909/hr | 11h19m | Q:151\n"}
,{"stream_name":"stderr","time":1266.512266379,"data":"07:10:52 | [W3] OK large-yoshi-statue yoshiworld.zip (2,152,053B)\n"}
,{"stream_name":"stdout","time":1266.519355329,"data":"[W3] OK:304 SK:0 FL:10 | 314/1119 (28.1%) | 910/hr | 11h19m | Q:150\n"}
,{"stream_name":"stderr","time":1270.91687492,"data":"07:10:57 | [W0] OK five-nights-at-freddys-map-18 fnafmapriopug8964070.zip (6,344,658B)\n"}
,{"stream_name":"stdout","time":1270.921681671,"data":"[W0] OK:305 SK:0 FL:10 | 315/1119 (28.2%) | 909/hr | 11h19m | Q:150\n"}
,{"stream_name":"stderr","time":1274.623327428,"data":"07:11:00 | [W4] OK 03-minibiomes-desert-download 03-minibiomes-desert.zip (3,021,443B)\n"}
,{"stream_name":"stdout","time":1274.632353978,"data":"[W4] OK:306 SK:0 FL:10 | 316/1119 (28.2%) | 910/hr | 11h19m | Q:151\n"}
,{"stream_name":"stderr","time":1276.883388526,"data":"07:11:03 | [W3] OK among-us-pixel-art-by-darkmazeblox among-us-pixel-art-by-darkmazeblox.mcworld (283,714B)\n"}
,{"stream_name":"stdout","time":1276.889791416,"data":"[W3] OK:307 SK:0 FL:10 | 317/1119 (28.3%) | 911/hr | 11h19m | Q:151\n"}
,{"stream_name":"stderr","time":1276.923971737,"data":"07:11:03 | [W2] Click fail invazion-mod-map: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1277.859294449,"data":"07:11:04 | [W1] Click fail enclave-modern-concept: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1285.941766418,"data":"07:11:12 | [W0] OK 8-bit-serial-encoder-decoder-idk serial-port-upgrade.schem (1,894B)\n"}
,{"stream_name":"stdout","time":1285.948615448,"data":"[W0] OK:308 SK:0 FL:10 | 318/1119 (28.4%) | 907/hr | 11h19m | Q:151\n"}
,{"stream_name":"stderr","time":1290.509738095,"data":"07:11:16 | [W4] OK minecraft-xbox-360-tu-73-9019-seed-for-minecraft-bedrock-1-14-3 xbox-360-tu-73-9019.zip (8,630,289B)\n"}
,{"stream_name":"stdout","time":1290.514957466,"data":"[W4] OK:309 SK:0 FL:10 | 319/1119 (28.5%) | 907/hr | 11h19m | Q:151\n"}
,{"stream_name":"stderr","time":1293.008183071,"data":"07:11:19 | [W3] OK small-house-in-the-mountain Small-house-on-the-mountain.zip (8,106,212B)\n"}
,{"stream_name":"stdout","time":1293.016453381,"data":"[W3] OK:310 SK:0 FL:10 | 320/1119 (28.6%) | 908/hr | 11h19m | Q:151\n"}
,{"stream_name":"stderr","time":1300.989285676,"data":"07:11:27 | [W0] OK modern-shop---with-download-2257582 modern_shop.schematic (474B)\n"}
,{"stream_name":"stdout","time":1300.996284786,"data":"[W0] OK:311 SK:0 FL:10 | 321/1119 (28.7%) | 905/hr | 11h19m | Q:151\n"}
,{"stream_name":"stderr","time":1302.84960754,"data":"07:11:29 | [W4] OK automatic-shop-decimal-price-totaling-and-payment-calculator math-machine.zip (1,667,824B)\n"}
,{"stream_name":"stdout","time":1302.85523398,"data":"[W4] OK:312 SK:0 FL:10 | 322/1119 (28.8%) | 906/hr | 11h19m | Q:151\n"}
,{"stream_name":"stderr","time":1307.296065743,"data":"07:11:33 | [W3] OK statue-2686138 gskin.schematic (3,583B)\n"}
,{"stream_name":"stdout","time":1307.303448323,"data":"[W3] OK:313 SK:0 FL:10 | 323/1119 (28.9%) | 906/hr | 11h19m | Q:151\n"}
,{"stream_name":"stderr","time":1313.184474685,"data":"07:11:39 | [W1] Click fail enclave-modern-concept: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1313.478133365,"data":"07:11:39 | [W4] OK easy-void-world void-world.zip (1,299,297B)\n"}
,{"stream_name":"stdout","time":1313.491000815,"data":"[W4] OK:314 SK:0 FL:10 | 324/1119 (29.0%) | 904/hr | 11h19m | Q:151\n"}
,{"stream_name":"stderr","time":1313.593071069,"data":"07:11:39 | [W2] Click fail invazion-mod-map: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1313.826420537,"data":"07:11:40 | [W0] OK wisps-in-minecraft wisps.zip (7,504B)\n"}
,{"stream_name":"stdout","time":1313.848733718,"data":"[W0] OK:315 SK:0 FL:10 | 325/1119 (29.0%) | 907/hr | 11h19m | Q:151\n"}
,{"stream_name":"stderr","time":1323.261201063,"data":"07:11:49 | [W3] OK air-hot-balloon ballon.schem (558B)\n"}
,{"stream_name":"stdout","time":1323.270952363,"data":"[W3] OK:316 SK:0 FL:10 | 326/1119 (29.1%) | 903/hr | 11h19m | Q:151\n"}
,{"stream_name":"stderr","time":1324.6212156,"data":"07:11:50 | [W0] OK skyscraper-1-3874917 chowtaifookcentre10758544.schematic (6,741B)\n"}
,{"stream_name":"stdout","time":1324.63013682,"data":"[W0] OK:317 SK:0 FL:10 | 327/1119 (29.2%) | 905/hr | 11h18m | Q:151\n"}
,{"stream_name":"stderr","time":1329.964995699,"data":"07:11:56 | [W4] OK fully-automatic-raw-chicken-farm-with-sorting-and-transport bigchickenfarm10121439.zip (862,783B)\n"}
,{"stream_name":"stdout","time":1329.981700219,"data":"[W4] OK:318 SK:0 FL:10 | 328/1119 (29.3%) | 904/hr | 11h18m | Q:151\n"}
,{"stream_name":"stderr","time":1337.577837279,"data":"07:12:03 | [W0] OK ice-city-4088355 pmc-snow-globe-contest.zip (1,408,725B)\n"}
,{"stream_name":"stdout","time":1337.583087459,"data":"[W0] OK:319 SK:0 FL:10 | 329/1119 (29.4%) | 901/hr | 11h18m | Q:151\n"}
,{"stream_name":"stderr","time":1341.08986221,"data":"07:12:07 | [W3] OK mniam-s-cathedral 2022-07-05-21-31-59-cathedral-1-17.zip (13,644,672B)\n"}
,{"stream_name":"stdout","time":1341.09797798,"data":"[W3] OK:320 SK:0 FL:10 | 330/1119 (29.5%) | 902/hr | 11h18m | Q:151\n"}
,{"stream_name":"stderr","time":1344.754745637,"data":"07:12:11 | [W4] OK be-a-pro-player be-a-pro-player.zip (3,354,771B)\n"}
,{"stream_name":"stdout","time":1344.763189477,"data":"[W4] OK:321 SK:0 FL:10 | 331/1119 (29.6%) | 902/hr | 11h18m | Q:151\n"}
,{"stream_name":"stderr","time":1349.207275493,"data":"07:12:15 | [W1] Click fail enclave-modern-concept: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1349.37568114,"data":"07:12:15 | [W2] Click fail invazion-mod-map: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1351.786648319,"data":"07:12:18 | [W0] OK bank-294027 bankplanetmc.schematic (2,638B)\n"}
,{"stream_name":"stdout","time":1351.805946279,"data":"[W0] OK:322 SK:0 FL:10 | 332/1119 (29.7%) | 900/hr | 11h18m | Q:151\n"}
,{"stream_name":"stderr","time":1359.598775746,"data":"07:12:25 | [W3] OK the-ant-hill theanthill8126582.schematic (1,028,928B)\n"}
,{"stream_name":"stdout","time":1359.607049726,"data":"[W3] OK:323 SK:0 FL:10 | 333/1119 (29.8%) | 897/hr | 11h18m | Q:150\n"}
,{"stream_name":"stderr","time":1361.857530207,"data":"07:12:28 | [W4] OK dawnfire-the-forgotten-kingdomnether-empire-contest Dawnfire_6184120.zip (4,731,838B)\n"}
,{"stream_name":"stdout","time":1361.871600297,"data":"[W4] OK:324 SK:0 FL:10 | 334/1119 (29.8%) | 898/hr | 11h18m | Q:151\n"}
,{"stream_name":"stderr","time":1363.897099232,"data":"07:12:30 | [W0] OK schematic-trading-ship---requires-mcedit Trading Ship.schematic (4,575B)\n"}
,{"stream_name":"stdout","time":1363.902923902,"data":"[W0] OK:325 SK:0 FL:10 | 335/1119 (29.9%) | 900/hr | 11h18m | Q:151\n"}
,{"stream_name":"stdout","time":1366.194615423,"data":"[W1] OK:325 SK:0 FL:11 | 336/1119 (30.0%) | 898/hr | 11h18m | Q:151\n"}
,{"stream_name":"stdout","time":1366.933570751,"data":"[W2] OK:325 SK:0 FL:12 | 337/1119 (30.1%) | 898/hr | 11h18m | Q:151\n"}
,{"stream_name":"stderr","time":1374.749592278,"data":"07:12:41 | [W3] OK project-rhs-scrapped world-8.zip (11,096,900B)\n"}
,{"stream_name":"stdout","time":1374.761641417,"data":"[W3] OK:326 SK:0 FL:12 | 338/1119 (30.2%) | 895/hr | 11h18m | Q:151\n"}
,{"stream_name":"stderr","time":1376.794636163,"data":"07:12:43 | [W4] OK bedwars-and-skywars-hybrid bedwars.zip (4,870,453B)\n"}
,{"stream_name":"stdout","time":1376.802797652,"data":"[W4] OK:327 SK:0 FL:12 | 339/1119 (30.3%) | 896/hr | 11h18m | Q:151\n"}
,{"stream_name":"stderr","time":1379.630319174,"data":"07:12:45 | [W1] OK minecraft-ninja-warrior-grassland-finals mcnw-grassland-finals-course.zip (631,924B)\n"}
,{"stream_name":"stdout","time":1379.637022084,"data":"[W1] OK:328 SK:0 FL:12 | 340/1119 (30.4%) | 897/hr | 11h18m | Q:151\n"}
,{"stream_name":"stderr","time":1381.407484544,"data":"07:12:47 | [W0] OK the-adventure-4157308 the-adventure.zip (9,356,174B)\n"}
,{"stream_name":"stdout","time":1381.412849904,"data":"[W0] OK:329 SK:0 FL:12 | 341/1119 (30.5%) | 899/hr | 11h18m | Q:151\n"}
,{"stream_name":"stderr","time":1387.005666679,"data":"07:12:53 | [W3] OK jump-and-run-5818992 jump-and-run.mcworld (85,095B)\n"}
,{"stream_name":"stdout","time":1387.015127789,"data":"[W3] OK:330 SK:0 FL:12 | 342/1119 (30.6%) | 898/hr | 11h17m | Q:151\n"}
,{"stream_name":"stderr","time":1394.472003932,"data":"07:13:00 | [W1] OK wraith-dart-stargate wraithdart8050125.schematic (282B)\n"}
,{"stream_name":"stdout","time":1394.486083822,"data":"[W1] OK:331 SK:0 FL:12 | 343/1119 (30.7%) | 895/hr | 11h17m | Q:151\n"}
,{"stream_name":"stderr","time":1395.284989178,"data":"07:13:01 | [W4] OK khmer-temple khmer-temple.zip (3,636,289B)\n"}
,{"stream_name":"stdout","time":1395.291119508,"data":"[W4] OK:332 SK:0 FL:12 | 344/1119 (30.7%) | 897/hr | 11h17m | Q:151\n"}
,{"stream_name":"stderr","time":1396.984584639,"data":"07:13:03 | [W0] OK t-122-heavy-fighter-vanguard topha.schematic (1,206B)\n"}
,{"stream_name":"stdout","time":1396.992072439,"data":"[W0] OK:333 SK:0 FL:12 | 345/1119 (30.8%) | 899/hr | 11h17m | Q:150\n"}
,{"stream_name":"stderr","time":1398.641165911,"data":"07:13:04 | [W2] Click fail mommy-long-legs-death-scene: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1400.968618321,"data":"07:13:07 | [W3] OK club-vaughan nightclub-mv88370015.schematic (6,203B)\n"}
,{"stream_name":"stdout","time":1400.994021131,"data":"[W3] OK:334 SK:0 FL:12 | 346/1119 (30.9%) | 899/hr | 11h17m | Q:151\n"}
,{"stream_name":"stderr","time":1409.942683589,"data":"07:13:16 | [W0] OK wrestlemania-29-arena TheBigAsh1-WM-29.zip (4,541,904B)\n"}
,{"stream_name":"stdout","time":1409.959235189,"data":"[W0] OK:335 SK:0 FL:12 | 347/1119 (31.0%) | 896/hr | 11h17m | Q:151\n"}
,{"stream_name":"stderr","time":1411.192177098,"data":"07:13:17 | [W4] OK wtfbuild-series-1---tetris-house d3rrida-ilovetetris-sansheart.schematic (4,381B)\n"}
,{"stream_name":"stdout","time":1411.206793967,"data":"[W4] OK:336 SK:0 FL:12 | 348/1119 (31.1%) | 898/hr | 11h17m | Q:150\n"}
,{"stream_name":"stderr","time":1412.708236422,"data":"07:13:18 | [W1] OK mc-donalds-hotel McDonalds_2144965.schematic (1,976B)\n"}
,{"stream_name":"stdout","time":1412.727317911,"data":"[W1] OK:337 SK:0 FL:12 | 349/1119 (31.2%) | 899/hr | 11h17m | Q:151\n"}
,{"stream_name":"stderr","time":1415.249374808,"data":"07:13:21 | [W3] OK granny-chapter-2-map-unfinished granny-2-map-full-mc.zip (548,453B)\n"}
,{"stream_name":"stdout","time":1415.262818528,"data":"[W3] OK:338 SK:0 FL:12 | 350/1119 (31.3%) | 900/hr | 11h17m | Q:151\n"}
,{"stream_name":"stderr","time":1422.944817079,"data":"07:13:29 | [W4] OK spongebob-mr-krabs mrkrabs.schem (21,911B)\n"}
,{"stream_name":"stdout","time":1422.955477269,"data":"[W4] OK:339 SK:0 FL:12 | 351/1119 (31.4%) | 898/hr | 11h17m | Q:150\n"}
,{"stream_name":"stderr","time":1426.807277493,"data":"07:13:33 | [W0] OK top-spin---funride---amusement-park-attraction inkatopspinfunride10471120.schematic (6,674B)\n"}
,{"stream_name":"stdout","time":1426.818076463,"data":"[W0] OK:340 SK:0 FL:12 | 352/1119 (31.5%) | 898/hr | 11h17m | Q:151\n"}
,{"stream_name":"stderr","time":1428.257316938,"data":"07:13:34 | [W1] OK minecraft-nation-rocket-pmc-one-chunk-challenge pmc-chunk-challenge.zip (769,306B)\n"}
,{"stream_name":"stdout","time":1428.270397488,"data":"[W1] OK:341 SK:0 FL:12 | 353/1119 (31.5%) | 899/hr | 11h17m | Q:151\n"}
,{"stream_name":"stderr","time":1433.532449469,"data":"07:13:39 | [W3] OK minecraft-xbox-360-tu-73-oreo-seed-for-minecraft-bedrock-1-14-3 xbox-360-tu-73-oreo.zip (9,102,059B)\n"}
,{"stream_name":"stdout","time":1433.541916999,"data":"[W3] OK:342 SK:0 FL:12 | 354/1119 (31.6%) | 899/hr | 11h17m | Q:151\n"}
,{"stream_name":"stderr","time":1434.502453942,"data":"07:13:40 | [W2] Click fail mommy-long-legs-death-scene: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1443.060929746,"data":"07:13:49 | [W1] OK working-windmill windmill.schematic (2,592B)\n"}
,{"stream_name":"stdout","time":1443.074370976,"data":"[W1] OK:343 SK:0 FL:12 | 355/1119 (31.7%) | 895/hr | 11h17m | Q:151\n"}
,{"stream_name":"stderr","time":1443.369871351,"data":"07:13:49 | [W4] OK old-castle-4177607 old-castle.zip (6,754,963B)\n"}
,{"stream_name":"stdout","time":1443.383095821,"data":"[W4] OK:344 SK:0 FL:12 | 356/1119 (31.8%) | 897/hr | 11h17m | Q:151\n"}
,{"stream_name":"stderr","time":1443.952634741,"data":"07:13:50 | [W0] OK the-knight-s-lists t-me-mineservcontent.zip (11,955B)\n"}
,{"stream_name":"stdout","time":1443.976109781,"data":"[W0] OK:345 SK:0 FL:12 | 357/1119 (31.9%) | 900/hr | 11h16m | Q:151\n"}
,{"stream_name":"stderr","time":1454.407995643,"data":"07:14:00 | [W1] OK treadnaught-enter-the-gungeon-litematic treadnaught.zip (5,091B)\n"}
,{"stream_name":"stdout","time":1454.423814473,"data":"[W1] OK:346 SK:0 FL:12 | 358/1119 (32.0%) | 896/hr | 11h16m | Q:151\n"}
,{"stream_name":"stderr","time":1458.660604251,"data":"07:14:04 | [W4] OK mario-galaxy-star-festival starfestival-mario-by-techis.zip (1,225,710B)\n"}
,{"stream_name":"stdout","time":1458.675597131,"data":"[W4] OK:347 SK:0 FL:12 | 359/1119 (32.1%) | 895/hr | 11h16m | Q:151\n"}
,{"stream_name":"stderr","time":1459.374587498,"data":"07:14:05 | [W0] OK wheatley-and-space-core-from-portal-2 wheatley-and-space-core.zip (2,334,457B)\n"}
,{"stream_name":"stdout","time":1459.389576088,"data":"[W0] OK:348 SK:0 FL:12 | 360/1119 (32.2%) | 897/hr | 11h16m | Q:151\n"}
,{"stream_name":"stderr","time":1465.198481541,"data":"07:14:11 | [W3] Click fail epic-airport-164: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1465.397426987,"data":"07:14:11 | [W1] OK tower-prison-1124333 BlackTowerPrison.schematic (2,660B)\n"}
,{"stream_name":"stdout","time":1465.411874917,"data":"[W1] OK:349 SK:0 FL:12 | 361/1119 (32.3%) | 896/hr | 11h16m | Q:150\n"}
,{"stream_name":"stderr","time":1469.808794493,"data":"07:14:16 | [W4] OK cyan-winter-yacht-157-blocks-long cyanwinterupdate78683106.schematic (8,921B)\n"}
,{"stream_name":"stdout","time":1469.820664532,"data":"[W4] OK:350 SK:0 FL:12 | 362/1119 (32.4%) | 896/hr | 11h16m | Q:151\n"}
,{"stream_name":"stderr","time":1469.96806664,"data":"07:14:16 | [W2] Click fail mommy-long-legs-death-scene: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1474.773532238,"data":"07:14:21 | [W0] OK great-sphinx-of-giza great-sphinx-of-giza.zip (2,065,130B)\n"}
,{"stream_name":"stdout","time":1474.780886028,"data":"[W0] OK:351 SK:0 FL:12 | 363/1119 (32.4%) | 895/hr | 11h16m | Q:151\n"}
,{"stream_name":"stderr","time":1480.701649808,"data":"07:14:26 | [W1] OK factionregular-spawn ooroughtosfinal.schematic (21,375B)\n"}
,{"stream_name":"stdout","time":1480.707493447,"data":"[W1] OK:352 SK:0 FL:12 | 364/1119 (32.5%) | 894/hr | 11h16m | Q:151\n"}
,{"stream_name":"stderr","time":1486.796088544,"data":"07:14:33 | [W4] OK aeros-embassy aerosembassy.schematic (7,016B)\n"}
,{"stream_name":"stdout","time":1486.804159903,"data":"[W4] OK:353 SK:0 FL:12 | 365/1119 (32.6%) | 893/hr | 11h16m | Q:151\n"}
,{"stream_name":"stdout","time":1488.329862107,"data":"[W2] OK:353 SK:0 FL:13 | 366/1119 (32.7%) | 892/hr | 11h16m | Q:151\n"}
,{"stream_name":"stderr","time":1491.228803198,"data":"07:14:37 | [W0] OK medieval-3865037 yapmcxasher10723635.zip (12,739,247B)\n"}
,{"stream_name":"stdout","time":1491.238135618,"data":"[W0] OK:354 SK:0 FL:13 | 367/1119 (32.8%) | 893/hr | 11h16m | Q:151\n"}
,{"stream_name":"stderr","time":1493.962372592,"data":"07:14:40 | [W1] OK john-deere-3020-diesel-tractor-with-download 3020.schem (1,413B)\n"}
,{"stream_name":"stdout","time":1493.970831702,"data":"[W1] OK:355 SK:0 FL:13 | 368/1119 (32.9%) | 893/hr | 11h16m | Q:151\n"}
,{"stream_name":"stderr","time":1503.65062917,"data":"07:14:49 | [W3] Click fail epic-airport-164: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1505.8470566619999,"data":"07:14:52 | [W4] OK waterdrop-mlg waterdrop-mlg.zip (6,377,985B)\n"}
,{"stream_name":"stdout","time":1505.870326522,"data":"[W4] OK:356 SK:0 FL:13 | 369/1119 (33.0%) | 889/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1506.798595166,"data":"07:14:53 | [W2] OK map-for-mapmakers-some-custom-items Good-Kits-v11_5531171.zip (295,817B)\n"}
,{"stream_name":"stdout","time":1506.805880836,"data":"[W2] OK:357 SK:0 FL:13 | 370/1119 (33.1%) | 890/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1507.456671175,"data":"07:14:53 | [W0] OK my-singing-monsters-ethereal-island-1-16-5 etherealisland.zip (641,841B)\n"}
,{"stream_name":"stdout","time":1507.480911084,"data":"[W0] OK:358 SK:0 FL:13 | 371/1119 (33.2%) | 893/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1509.765882005,"data":"07:14:56 | [W1] OK windmill-home imlr---Windmill-Home_1565414.schematic (11,994B)\n"}
,{"stream_name":"stdout","time":1509.778630085,"data":"[W1] OK:359 SK:0 FL:13 | 372/1119 (33.2%) | 894/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1521.749684814,"data":"07:15:08 | [W4] OK medieval-lobby-4304089 spawn.zip (37,433B)\n"}
,{"stream_name":"stdout","time":1521.765796034,"data":"[W4] OK:360 SK:0 FL:13 | 373/1119 (33.3%) | 889/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1521.766710604,"data":"07:15:08 | [W2] OK crystal-tree-trunk-house crystaltreetrunkhousebyanii.schem (19,282B)\n"}
,{"stream_name":"stdout","time":1521.780974274,"data":"[W2] OK:361 SK:0 FL:13 | 374/1119 (33.4%) | 891/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1526.661978611,"data":"07:15:12 | [W0] OK spider-island spiderisland.zip (4,758,307B)\n"}
,{"stream_name":"stdout","time":1526.672327141,"data":"[W0] OK:362 SK:0 FL:13 | 375/1119 (33.5%) | 891/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1527.675708464,"data":"07:15:13 | [W1] OK rich-oak---craftsman-home rillhouse.schematic (14,256B)\n"}
,{"stream_name":"stdout","time":1527.705878313,"data":"[W1] OK:363 SK:0 FL:13 | 376/1119 (33.6%) | 892/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1532.920661745,"data":"07:15:19 | [W4] OK the-hero-3127059 herostatue8464292.schematic (17,326B)\n"}
,{"stream_name":"stdout","time":1532.927864325,"data":"[W4] OK:364 SK:0 FL:13 | 377/1119 (33.7%) | 892/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1541.308382942,"data":"07:15:27 | [W2] OK hms-quest-steampunk-air-balloon-and-announcement hmsqueststeampunkairshipenergycrysis8975551.schematic (3,171B)\n"}
,{"stream_name":"stdout","time":1541.341719421,"data":"[W2] OK:365 SK:0 FL:13 | 378/1119 (33.8%) | 889/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1542.651717121,"data":"07:15:28 | [W0] OK christmas-island-4302120 christmas-island.zip (4,503,884B)\n"}
,{"stream_name":"stdout","time":1542.66051171,"data":"[W0] OK:366 SK:0 FL:13 | 379/1119 (33.9%) | 891/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1543.023582914,"data":"07:15:29 | [W1] OK wintery-larnach-castle---advent-calendar-14 larnach_castle.schematic (69,211B)\n"}
,{"stream_name":"stdout","time":1543.032435674,"data":"[W1] OK:367 SK:0 FL:13 | 380/1119 (34.0%) | 893/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1543.480134057,"data":"07:15:29 | [W3] Click fail epic-airport-164: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1550.756097185,"data":"07:15:37 | [W4] OK fire-station-3576290 firestation9786315.schematic (11,142B)\n"}
,{"stream_name":"stdout","time":1550.765671614,"data":"[W4] OK:368 SK:0 FL:13 | 381/1119 (34.0%) | 891/hr | 11h15m | Q:149\n"}
,{"stream_name":"stderr","time":1553.323171032,"data":"07:15:39 | [W2] OK halloween-special-3x3-chunk-build halloween-special-3x3-chunk-build.zip (20,384B)\n"}
,{"stream_name":"stdout","time":1553.337022622,"data":"[W2] OK:369 SK:0 FL:13 | 382/1119 (34.1%) | 892/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1557.930096404,"data":"07:15:44 | [W1] OK twin-tower-3286113 twin-tower8808889.zip (22,946B)\n"}
,{"stream_name":"stdout","time":1557.938067644,"data":"[W1] OK:370 SK:0 FL:13 | 383/1119 (34.2%) | 891/hr | 11h15m | Q:150\n"}
,{"stream_name":"stderr","time":1558.315544158,"data":"07:15:44 | [W0] OK paladin-fortress-schematic-1-19-2-kinghills-rpg paladin-fortress.schem (103,481B)\n"}
,{"stream_name":"stdout","time":1558.325945858,"data":"[W0] OK:371 SK:0 FL:13 | 384/1119 (34.3%) | 893/hr | 11h15m | Q:151\n"}
,{"stream_name":"stdout","time":1561.180387431,"data":"[W3] OK:371 SK:0 FL:14 | 385/1119 (34.4%) | 892/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1562.928620242,"data":"07:15:49 | [W4] OK another-small-medieval-style-house small-medieval-house-2.zip (1,169,277B)\n"}
,{"stream_name":"stdout","time":1562.935527742,"data":"[W4] OK:372 SK:0 FL:14 | 386/1119 (34.5%) | 893/hr | 11h15m | Q:151\n"}
,{"stream_name":"stderr","time":1568.246067857,"data":"07:15:54 | [W2] OK the-traveller-airship-concept v910463938.schematic (25,357B)\n"}
,{"stream_name":"stdout","time":1568.252099207,"data":"[W2] OK:373 SK:0 FL:14 | 387/1119 (34.6%) | 892/hr | 11h14m | Q:149\n"}
,{"stream_name":"stderr","time":1575.016309837,"data":"07:16:01 | [W0] OK glowstone-palace-30750 palace-and-temple.schematic (6,415B)\n"}
,{"stream_name":"stdout","time":1575.028186606,"data":"[W0] OK:374 SK:0 FL:14 | 388/1119 (34.7%) | 891/hr | 11h14m | Q:151\n"}
,{"stream_name":"stderr","time":1575.444519099,"data":"07:16:01 | [W1] OK building-3178484 building1-by-yahgiggle8443180.schematic (3,943B)\n"}
,{"stream_name":"stdout","time":1575.466943579,"data":"[W1] OK:375 SK:0 FL:14 | 389/1119 (34.8%) | 893/hr | 11h14m | Q:151\n"}
,{"stream_name":"stderr","time":1577.832049559,"data":"07:16:04 | [W3] OK cheatsheet-spreadsheet-blockworld---all-blockssubids cheatsheet.schematic (33,984B)\n"}
,{"stream_name":"stdout","time":1577.851876348,"data":"[W3] OK:376 SK:0 FL:14 | 390/1119 (34.9%) | 894/hr | 11h14m | Q:151\n"}
,{"stream_name":"stderr","time":1578.411144829,"data":"07:16:04 | [W4] OK halloween-ghost-4206809 halloween-ghost.schematic (5,270B)\n"}
,{"stream_name":"stdout","time":1578.419547668,"data":"[W4] OK:377 SK:0 FL:14 | 391/1119 (34.9%) | 896/hr | 11h14m | Q:151\n"}
,{"stream_name":"stderr","time":1580.264776057,"data":"07:16:06 | [W2] OK small-manor-schematic---pixelrush Small_ManorPR.zip (4,779B)\n"}
,{"stream_name":"stdout","time":1580.272412767,"data":"[W2] OK:378 SK:0 FL:14 | 392/1119 (35.0%) | 897/hr | 11h14m | Q:151\n"}
,{"stream_name":"stderr","time":1590.048178383,"data":"07:16:16 | [W0] OK one-world-trade-center-1-1-scale-cubic-chunks one-world-trade-center-copy.zip (9,367,992B)\n"}
,{"stream_name":"stdout","time":1590.056143842,"data":"[W0] OK:379 SK:0 FL:14 | 393/1119 (35.1%) | 894/hr | 11h14m | Q:150\n"}
,{"stream_name":"stderr","time":1591.885623385,"data":"07:16:18 | [W4] OK creeper-ship-487470 CreeperBoat.schematic (1,471B)\n"}
,{"stream_name":"stdout","time":1591.897803894,"data":"[W4] OK:380 SK:0 FL:14 | 394/1119 (35.2%) | 895/hr | 11h14m | Q:151\n"}
,{"stream_name":"stderr","time":1596.80398551,"data":"07:16:23 | [W2] OK redstone-fortress Archespore.zip (6,394,512B)\n"}
,{"stream_name":"stdout","time":1596.81099594,"data":"[W2] OK:381 SK:0 FL:14 | 395/1119 (35.3%) | 895/hr | 11h14m | Q:150\n"}
,{"stream_name":"stderr","time":1597.090478093,"data":"07:16:23 | [W3] OK giant-endersent-creepy-enderman-from-minecraft-dungeons endersent-schematic-world-download.zip (282,060B)\n"}
,{"stream_name":"stdout","time":1597.099933162,"data":"[W3] OK:382 SK:0 FL:14 | 396/1119 (35.4%) | 897/hr | 11h14m | Q:150\n"}
,{"stream_name":"stderr","time":1601.955087715,"data":"07:16:28 | [W0] OK dd-black-dragon DDBlackDragon.schematic (3,012B)\n"}
,{"stream_name":"stdout","time":1601.970239973,"data":"[W0] OK:383 SK:0 FL:14 | 397/1119 (35.5%) | 896/hr | 11h14m | Q:151\n"}
,{"stream_name":"stderr","time":1602.725697145,"data":"07:16:29 | [W1] Click fail tnt-cannon-623533: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1603.08043897,"data":"07:16:29 | [W4] OK norse-home-ii mce-norsehome3.schem (3,476B)\n"}
,{"stream_name":"stdout","time":1603.096575548,"data":"[W4] OK:384 SK:0 FL:14 | 398/1119 (35.6%) | 898/hr | 11h14m | Q:151\n"}
,{"stream_name":"stderr","time":1612.621243177,"data":"07:16:38 | [W2] OK kawahara-stadium aincradunited-kawaharastadium10143512.schematic (67,795B)\n"}
,{"stream_name":"stdout","time":1612.630014096,"data":"[W2] OK:385 SK:0 FL:14 | 399/1119 (35.7%) | 895/hr | 11h14m | Q:151\n"}
,{"stream_name":"stderr","time":1613.051290172,"data":"07:16:39 | [W3] OK ptaks-fantasy-asian-styled-huthouse asian.fantasy.round.house.byLacross80.schematic (984B)\n"}
,{"stream_name":"stdout","time":1613.080630538,"data":"[W3] OK:386 SK:0 FL:14 | 400/1119 (35.7%) | 897/hr | 11h14m | Q:151\n"}
,{"stream_name":"stderr","time":1617.579071227,"data":"07:16:43 | [W0] OK wall-of-mistyia-constructuion-fantastic mistryiaw-tsyino-pu.zip (3,664,112B)\n"}
,{"stream_name":"stdout","time":1617.588619256,"data":"[W0] OK:387 SK:0 FL:14 | 401/1119 (35.8%) | 896/hr | 11h14m | Q:151\n"}
,{"stream_name":"stderr","time":1617.895330376,"data":"07:16:44 | [W4] OK corvette-concept gspace.schem (4,033B)\n"}
,{"stream_name":"stdout","time":1617.912233304,"data":"[W4] OK:388 SK:0 FL:14 | 402/1119 (35.9%) | 899/hr | 11h14m | Q:151\n"}
,{"stream_name":"stderr","time":1631.462632804,"data":"07:16:57 | [W3] OK 100-subscriber-subscriber-special hamburg10002681.schematic (30,354B)\n"}
,{"stream_name":"stdout","time":1631.474800592,"data":"[W3] OK:389 SK:0 FL:14 | 403/1119 (36.0%) | 893/hr | 11h13m | Q:151\n"}
,{"stream_name":"stderr","time":1632.065613736,"data":"07:16:58 | [W0] OK simple-modern-house-sd-2 modernhousesd2.schematic (5,073B)\n"}
,{"stream_name":"stdout","time":1632.079573814,"data":"[W0] OK:390 SK:0 FL:14 | 404/1119 (36.1%) | 895/hr | 11h13m | Q:151\n"}
,{"stream_name":"stderr","time":1632.543736794,"data":"07:16:58 | [W2] OK a-medieval-village-3918978 village10931509.zip (9,389,180B)\n"}
,{"stream_name":"stdout","time":1632.549335943,"data":"[W2] OK:391 SK:0 FL:14 | 405/1119 (36.2%) | 897/hr | 11h13m | Q:151\n"}
,{"stream_name":"stderr","time":1637.619338528,"data":"07:17:03 | [W1] Click fail tnt-cannon-623533: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1646.158984155,"data":"07:17:12 | [W0] OK medium-sized-hotel---16-rooms-16x16 Hotel_2810235.schematic (220B)\n"}
,{"stream_name":"stdout","time":1646.172679803,"data":"[W0] OK:392 SK:0 FL:14 | 406/1119 (36.3%) | 892/hr | 11h13m | Q:151\n"}
,{"stream_name":"stderr","time":1648.873654384,"data":"07:17:15 | [W2] OK fuzzoland-survival-spawn fuzzolandspawn.schematic (25,531B)\n"}
,{"stream_name":"stdout","time":1648.879021513,"data":"[W2] OK:393 SK:0 FL:14 | 407/1119 (36.4%) | 892/hr | 11h13m | Q:151\n"}
,{"stream_name":"stderr","time":1649.033944663,"data":"07:17:15 | [W4] Click fail 3x3-flush-glass-door-v2-opens-in-0-95s-and-closes-in-0-75s: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1653.77964858,"data":"07:17:20 | [W3] OK bear-city-222-subs-special bear-bow9809400.schematic (5,440,890B)\n"}
,{"stream_name":"stdout","time":1653.787564539,"data":"[W3] OK:394 SK:0 FL:14 | 408/1119 (36.5%) | 892/hr | 11h13m | Q:151\n"}
,{"stream_name":"stderr","time":1660.033649682,"data":"07:17:26 | [W0] OK a-pirate-ship-1155985 pirate_3063247.zip (1,582,216B)\n"}
,{"stream_name":"stdout","time":1660.041117751,"data":"[W0] OK:395 SK:0 FL:14 | 409/1119 (36.6%) | 891/hr | 11h13m | Q:151\n"}
,{"stream_name":"stderr","time":1662.895640342,"data":"07:17:29 | [W2] OK starter-home-281339 tartanshouseclean.schematic (4,207B)\n"}
,{"stream_name":"stdout","time":1662.905547341,"data":"[W2] OK:396 SK:0 FL:14 | 410/1119 (36.6%) | 891/hr | 11h13m | Q:151\n"}
,{"stream_name":"stderr","time":1666.031364608,"data":"07:17:32 | [W3] OK the-ceberus---strike-ship Cerberus Schematic.schematic (3,011B)\n"}
,{"stream_name":"stdout","time":1666.044972856,"data":"[W3] OK:397 SK:0 FL:14 | 411/1119 (36.7%) | 892/hr | 11h13m | Q:151\n"}
,{"stream_name":"stderr","time":1673.496892654,"data":"07:17:39 | [W1] Click fail tnt-cannon-623533: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1673.894190762,"data":"07:17:40 | [W0] OK red-ship-of-the-line ship3.schem (13,744B)\n"}
,{"stream_name":"stdout","time":1673.903171571,"data":"[W0] OK:398 SK:0 FL:14 | 412/1119 (36.8%) | 890/hr | 11h13m | Q:151\n"}
,{"stream_name":"stderr","time":1676.656173806,"data":"07:17:42 | [W2] OK massive-wheat-farm massive-farm-wheat.zip (2,178,562B)\n"}
,{"stream_name":"stdout","time":1676.667259334,"data":"[W2] OK:399 SK:0 FL:14 | 413/1119 (36.9%) | 890/hr | 11h13m | Q:151\n"}
,{"stream_name":"stderr","time":1678.003452862,"data":"07:17:44 | [W3] OK age-of-empires-ii-north-european-alpha-castle aoe-ii-alpha-burg.zip (80,416B)\n"}
,{"stream_name":"stdout","time":1678.01407541,"data":"[W3] OK:400 SK:0 FL:14 | 414/1119 (37.0%) | 892/hr | 11h13m | Q:151\n"}
,{"stream_name":"stderr","time":1686.164778167,"data":"07:17:52 | [W4] Click fail 3x3-flush-glass-door-v2-opens-in-0-95s-and-closes-in-0-75s: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1691.665428237,"data":"07:17:57 | [W0] OK world-centre-for-vedic-learning-megatall-skyscraper-jabalpur-india world-centre-for-vedic-learning-jabalpur-schematic-by-bodyki.zip (224,810B)\n"}
,{"stream_name":"stdout","time":1691.673659665,"data":"[W0] OK:401 SK:0 FL:14 | 415/1119 (37.1%) | 887/hr | 11h12m | Q:151\n"}
,{"stream_name":"stdout","time":1693.071194655,"data":"[W1] OK:401 SK:0 FL:15 | 416/1119 (37.2%) | 886/hr | 11h12m | Q:151\n"}
,{"stream_name":"stderr","time":1694.4258686,"data":"07:18:00 | [W2] OK boat-survival-4260865 minecraft-boat-survival.zip (3,701,962B)\n"}
,{"stream_name":"stdout","time":1694.441313098,"data":"[W2] OK:402 SK:0 FL:15 | 417/1119 (37.3%) | 887/hr | 11h12m | Q:151\n"}
,{"stream_name":"stderr","time":1696.456886207,"data":"07:18:02 | [W3] OK cooles-haus Coole Villa.schematic (3,320B)\n"}
,{"stream_name":"stdout","time":1696.471317236,"data":"[W3] OK:403 SK:0 FL:15 | 418/1119 (37.4%) | 888/hr | 11h12m | Q:151\n"}
,{"stream_name":"stderr","time":1709.211501988,"data":"07:18:15 | [W0] OK foraging-farm-hypixel-skyblock foraging-farm.schematic (749B)\n"}
,{"stream_name":"stdout","time":1709.223423877,"data":"[W0] OK:404 SK:0 FL:15 | 419/1119 (37.4%) | 884/hr | 11h12m | Q:150\n"}
,{"stream_name":"stderr","time":1711.28754419,"data":"07:18:17 | [W1] OK portal-aperture-science-map-read-description portal2done.zip (2,427,627B)\n"}
,{"stream_name":"stdout","time":1711.295983769,"data":"[W1] OK:405 SK:0 FL:15 | 420/1119 (37.5%) | 885/hr | 11h12m | Q:151\n"}
,{"stream_name":"stderr","time":1711.924592068,"data":"07:18:18 | [W2] OK my-bad-spongebob-world archive.zip (1,979,673B)\n"}
,{"stream_name":"stdout","time":1711.940580365,"data":"[W2] OK:406 SK:0 FL:15 | 421/1119 (37.6%) | 887/hr | 11h12m | Q:151\n"}
,{"stream_name":"stderr","time":1713.412094006,"data":"07:18:19 | [W3] OK rammstein-volkerball-ahoi-tour-1-7-10 ahoi.zip (1,368,414B)\n"}
,{"stream_name":"stdout","time":1713.429828903,"data":"[W3] OK:407 SK:0 FL:15 | 422/1119 (37.7%) | 888/hr | 11h12m | Q:151\n"}
,{"stream_name":"stderr","time":1722.709651524,"data":"07:18:28 | [W1] OK furnace-with-a-bamboo-farm-inside infinitefurnace.schem (1,409B)\n"}
,{"stream_name":"stdout","time":1722.730130931,"data":"[W1] OK:408 SK:0 FL:15 | 423/1119 (37.8%) | 885/hr | 11h12m | Q:151\n"}
,{"stream_name":"stderr","time":1725.559254226,"data":"07:18:31 | [W4] Click fail 3x3-flush-glass-door-v2-opens-in-0-95s-and-closes-in-0-75s: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1726.512142773,"data":"07:18:32 | [W2] OK ijn-no-101-1-1-scale ijn-no101.schematic (2,163B)\n"}
,{"stream_name":"stdout","time":1726.523285091,"data":"[W2] OK:409 SK:0 FL:15 | 424/1119 (37.9%) | 885/hr | 11h12m | Q:151\n"}
,{"stream_name":"stderr","time":1733.855232274,"data":"07:18:40 | [W3] OK ocean-survival-6101001 ocean-survival.zip (3,054,542B)\n"}
,{"stream_name":"stdout","time":1733.863490033,"data":"[W3] OK:410 SK:0 FL:15 | 425/1119 (38.0%) | 884/hr | 11h12m | Q:151\n"}
,{"stream_name":"stderr","time":1736.271785462,"data":"07:18:42 | [W1] OK skyscraper-6223730 edificio72.schem (57,142B)\n"}
,{"stream_name":"stdout","time":1736.303963888,"data":"[W1] OK:411 SK:0 FL:15 | 426/1119 (38.1%) | 884/hr | 11h12m | Q:151\n"}
,{"stream_name":"stderr","time":1738.596119222,"data":"07:18:44 | [W2] OK meerkat-statue-in-three-sizes world-map-schematics.zip (2,535,271B)\n"}
,{"stream_name":"stdout","time":1738.602336631,"data":"[W2] OK:412 SK:0 FL:15 | 427/1119 (38.2%) | 885/hr | 11h12m | Q:151\n"}
,{"stream_name":"stdout","time":1742.308018772,"data":"[W4] OK:412 SK:0 FL:16 | 428/1119 (38.2%) | 883/hr | 11h12m | Q:151\n"}
,{"stream_name":"stderr","time":1742.991240094,"data":"07:18:49 | [W0] Click fail huge-rp-town-giant-house: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1752.636107818,"data":"07:18:58 | [W3] OK big-stone-palace palacebig8133213.schematic (440,647B)\n"}
,{"stream_name":"stdout","time":1752.644662167,"data":"[W3] OK:413 SK:0 FL:16 | 429/1119 (38.3%) | 880/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1755.188422798,"data":"07:19:01 | [W1] OK 1-17-1-5318500 zip-winrar.zip (1,248,818B)\n"}
,{"stream_name":"stdout","time":1755.198234017,"data":"[W1] OK:414 SK:0 FL:16 | 430/1119 (38.4%) | 881/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1755.336193169,"data":"07:19:01 | [W2] OK modern-apartment-2-5650089 uenobuilding.schem (5,172B)\n"}
,{"stream_name":"stdout","time":1755.350324257,"data":"[W2] OK:415 SK:0 FL:16 | 431/1119 (38.5%) | 883/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1756.130693316,"data":"07:19:02 | [W4] OK suburban-house-series-1 suburban-house-1.schematic (5,563B)\n"}
,{"stream_name":"stdout","time":1756.148461414,"data":"[W4] OK:416 SK:0 FL:16 | 432/1119 (38.6%) | 885/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1768.535531744,"data":"07:19:14 | [W4] OK star-destroyer-version1 star-wars-raumschiffe.zip (191,187B)\n"}
,{"stream_name":"stdout","time":1768.543150533,"data":"[W4] OK:417 SK:0 FL:16 | 433/1119 (38.7%) | 880/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1769.300931865,"data":"07:19:15 | [W3] OK boeing-c-17-1-1-scale-with-download c17.mcworld (110,388B)\n"}
,{"stream_name":"stdout","time":1769.316468073,"data":"[W3] OK:418 SK:0 FL:16 | 434/1119 (38.8%) | 882/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1773.98779329,"data":"07:19:20 | [W1] OK baathor-the-dwarven-city Baa'Thor.schematic (267,472B)\n"}
,{"stream_name":"stdout","time":1774.012535246,"data":"[W1] OK:419 SK:0 FL:16 | 435/1119 (38.9%) | 882/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1774.389680068,"data":"07:19:20 | [W2] OK jump-windcharge-a-minecraft-jump-map-1-21-3 jump-windcharge-rc3.zip (8,309,277B)\n"}
,{"stream_name":"stdout","time":1774.398464607,"data":"[W2] OK:420 SK:0 FL:16 | 436/1119 (39.0%) | 884/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1778.288674564,"data":"07:19:24 | [W4] OK nuketown-2025-6115840 nuketown-2025.mcworld (358,114B)\n"}
,{"stream_name":"stdout","time":1778.295823623,"data":"[W4] OK:421 SK:0 FL:16 | 437/1119 (39.1%) | 884/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1778.63199034,"data":"07:19:24 | [W0] Click fail huge-rp-town-giant-house: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1788.714703058,"data":"07:19:35 | [W3] OK cheezers-fnaf-map faztown-fnaf-3-sneek-peek.mcworld (363,671B)\n"}
,{"stream_name":"stdout","time":1788.738779074,"data":"[W3] OK:422 SK:0 FL:16 | 438/1119 (39.1%) | 881/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1789.201752444,"data":"07:19:35 | [W1] OK rush-e-on-note-blocks-not-complete extractmeinsavesfolder.zip (1,298,639B)\n"}
,{"stream_name":"stdout","time":1789.209961913,"data":"[W1] OK:423 SK:0 FL:16 | 439/1119 (39.2%) | 882/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1791.772858852,"data":"07:19:38 | [W4] OK urd-class-modular-carrier class-urd-assault-transport.schematic (10,248B)\n"}
,{"stream_name":"stdout","time":1791.79348991,"data":"[W4] OK:424 SK:0 FL:16 | 440/1119 (39.3%) | 883/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1792.139186675,"data":"07:19:38 | [W2] OK chunk-castles chunk-castles.zip (1,241,143B)\n"}
,{"stream_name":"stdout","time":1792.152816703,"data":"[W2] OK:425 SK:0 FL:16 | 441/1119 (39.4%) | 885/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1799.355860723,"data":"07:19:45 | [W3] OK simple-jail-2900838 jail3109.schematic (5,309B)\n"}
,{"stream_name":"stdout","time":1799.37138898,"data":"[W3] OK:426 SK:0 FL:16 | 442/1119 (39.5%) | 883/hr | 11h11m | Q:151\n"}
,{"stream_name":"stderr","time":1805.709049012,"data":"07:19:51 | [W1] OK steampunk-airship-collection---advent-calendar-7 SteampunkAirship.schematic (13,127B)\n"}
,{"stream_name":"stdout","time":1805.738912628,"data":"[W1] OK:427 SK:0 FL:16 | 443/1119 (39.6%) | 882/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1809.417791663,"data":"07:19:55 | [W4] OK the-sky---a-mc-server-spawn Spawn_5241913.schematic (49,308B)\n"}
,{"stream_name":"stdout","time":1809.425365511,"data":"[W4] OK:428 SK:0 FL:16 | 444/1119 (39.7%) | 883/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1809.955571463,"data":"07:19:56 | [W2] OK age-of-empires-ii-west-european-castle aoe-ii-burg-westeuropa.zip (118,479B)\n"}
,{"stream_name":"stdout","time":1809.965298602,"data":"[W2] OK:429 SK:0 FL:16 | 445/1119 (39.8%) | 884/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1813.625601259,"data":"07:19:59 | [W0] Click fail huge-rp-town-giant-house: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":1814.648762147,"data":"07:20:00 | [W3] OK tiger-2-21-model-kit-download _namsek_tiger2kit10802896.schematic (2,135B)\n"}
,{"stream_name":"stdout","time":1814.667033145,"data":"[W3] OK:430 SK:0 FL:16 | 446/1119 (39.9%) | 884/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1818.474409663,"data":"07:20:04 | [W1] OK pvp-spawn-2936870 spawn7894560.schematic (32,365B)\n"}
,{"stream_name":"stdout","time":1818.521632127,"data":"[W1] OK:431 SK:0 FL:16 | 447/1119 (39.9%) | 884/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1822.657839172,"data":"07:20:08 | [W4] OK case-ih-titan-4540-fertilizer-spreader-with-download casetitan.schem (4,236B)\n"}
,{"stream_name":"stdout","time":1822.666226041,"data":"[W4] OK:432 SK:0 FL:16 | 448/1119 (40.0%) | 884/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1825.412178177,"data":"07:20:11 | [W2] OK cliff-house-467187 ___lol_1946554.zip (4,059,808B)\n"}
,{"stream_name":"stdout","time":1825.443730712,"data":"[W2] OK:433 SK:0 FL:16 | 449/1119 (40.1%) | 885/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1830.508742178,"data":"07:20:16 | [W1] OK sawmill-1-21-1-litematica-grotiva sawmill.zip (3,296B)\n"}
,{"stream_name":"stdout","time":1830.524395876,"data":"[W1] OK:434 SK:0 FL:16 | 450/1119 (40.2%) | 884/hr | 11h10m | Q:151\n"}
,{"stream_name":"stdout","time":1831.405958582,"data":"[W0] OK:434 SK:0 FL:17 | 451/1119 (40.3%) | 884/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1833.056951179,"data":"07:20:19 | [W3] OK the-trade-federation-lucrehulk-class-battleship-star-wars the-lucrehulk-class-battleship-trade-federation.zip (13,448,862B)\n"}
,{"stream_name":"stdout","time":1833.065470178,"data":"[W3] OK:435 SK:0 FL:17 | 452/1119 (40.4%) | 885/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1839.86262908,"data":"07:20:26 | [W4] OK orc-watch-tower Orc-Watch-Tower.schematic (683B)\n"}
,{"stream_name":"stdout","time":1839.871564299,"data":"[W4] OK:436 SK:0 FL:17 | 453/1119 (40.5%) | 884/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1841.712673981,"data":"07:20:28 | [W2] OK christmas-chicken-4460117 chicken.zip (4,266,991B)\n"}
,{"stream_name":"stdout","time":1841.72393171,"data":"[W2] OK:437 SK:0 FL:17 | 454/1119 (40.6%) | 885/hr | 11h10m | Q:150\n"}
,{"stream_name":"stderr","time":1846.573102934,"data":"07:20:32 | [W0] OK skyblock-expansion-152-2242648 SkyBlock_Expansion_5748732.zip (3,240,131B)\n"}
,{"stream_name":"stdout","time":1846.583372644,"data":"[W0] OK:438 SK:0 FL:17 | 455/1119 (40.7%) | 884/hr | 11h10m | Q:150\n"}
,{"stream_name":"stderr","time":1850.591806202,"data":"07:20:36 | [W1] OK ktm-125-exc ktm1258888787.schematic (102,036B)\n"}
,{"stream_name":"stdout","time":1850.608572202,"data":"[W1] OK:439 SK:0 FL:17 | 456/1119 (40.8%) | 884/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1851.269674168,"data":"07:20:37 | [W3] OK cc-modern-house cc-modernhouse.zip (895,741B)\n"}
,{"stream_name":"stdout","time":1851.297224718,"data":"[W3] OK:440 SK:0 FL:17 | 457/1119 (40.8%) | 886/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1853.629831186,"data":"07:20:39 | [W4] OK working-bomber-plane Bomber Plane.schematic (2,002B)\n"}
,{"stream_name":"stdout","time":1853.637475206,"data":"[W4] OK:441 SK:0 FL:17 | 458/1119 (40.9%) | 887/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1854.71930549,"data":"07:20:41 | [W2] OK tesla-coil-lightning-generator tesla-coil.zip (2,914,231B)\n"}
,{"stream_name":"stdout","time":1854.72933207,"data":"[W2] OK:442 SK:0 FL:17 | 459/1119 (41.0%) | 888/hr | 11h10m | Q:151\n"}
,{"stream_name":"stderr","time":1863.657478871,"data":"07:20:49 | [W0] OK lockheed-u-2-spy-plane Lockheed-u-2.schematic (797B)\n"}
,{"stream_name":"stdout","time":1863.667753011,"data":"[W0] OK:443 SK:0 FL:17 | 460/1119 (41.1%) | 886/hr | 11h09m | Q:151\n"}
,{"stream_name":"stderr","time":1864.808271185,"data":"07:20:51 | [W1] OK goron-gamer-s-site-19-scp-map goron-gamer-s-scp-foundation-copy.zip (5,002,539B)\n"}
,{"stream_name":"stdout","time":1864.819151185,"data":"[W1] OK:444 SK:0 FL:17 | 461/1119 (41.2%) | 887/hr | 11h09m | Q:150\n"}
,{"stream_name":"stderr","time":1865.569703751,"data":"07:20:51 | [W3] OK churchkoci church_6175994.schematic (4,204B)\n"}
,{"stream_name":"stdout","time":1865.58888513,"data":"[W3] OK:445 SK:0 FL:17 | 462/1119 (41.3%) | 889/hr | 11h09m | Q:150\n"}
,{"stream_name":"stderr","time":1867.44606376,"data":"07:20:53 | [W4] OK small-rubik-s-cube small-rubik-s-cube.schematic (4,983B)\n"}
,{"stream_name":"stdout","time":1867.46127172,"data":"[W4] OK:446 SK:0 FL:17 | 463/1119 (41.4%) | 890/hr | 11h09m | Q:151\n"}
,{"stream_name":"stderr","time":1870.013595106,"data":"07:20:56 | [W2] OK phaendar--medieval-church-island churchpm10670125.schematic (7,543B)\n"}
,{"stream_name":"stdout","time":1870.021195266,"data":"[W2] OK:447 SK:0 FL:17 | 464/1119 (41.5%) | 891/hr | 11h09m | Q:151\n"}
,{"stream_name":"stderr","time":1880.091803681,"data":"07:21:06 | [W1] OK portal-map-777836 Protal-map.zip (872,231B)\n"}
,{"stream_name":"stdout","time":1880.100224541,"data":"[W1] OK:448 SK:0 FL:17 | 465/1119 (41.6%) | 888/hr | 11h09m | Q:151\n"}
,{"stream_name":"stderr","time":1880.444056839,"data":"07:21:06 | [W0] OK secutor-class-star-destroyer-3583028 secutor-class-star-destroyer-2016-01-19-16-43-29.schematic (3,601B)\n"}
,{"stream_name":"stdout","time":1880.454516939,"data":"[W0] OK:449 SK:0 FL:17 | 466/1119 (41.6%) | 890/hr | 11h09m | Q:151\n"}
,{"stream_name":"stderr","time":1884.366726897,"data":"07:21:10 | [W3] OK bunker-will-soon-be-finished-maybe bunker-build.zip (7,913,270B)\n"}
,{"stream_name":"stdout","time":1884.386425547,"data":"[W3] OK:450 SK:0 FL:17 | 467/1119 (41.7%) | 890/hr | 11h09m | Q:151\n"}
,{"stream_name":"stderr","time":1885.540216031,"data":"07:21:11 | [W2] OK antonov-an-12-1-1 an12.schem (1,985B)\n"}
,{"stream_name":"stdout","time":1885.554127361,"data":"[W2] OK:451 SK:0 FL:17 | 468/1119 (41.8%) | 891/hr | 11h09m | Q:150\n"}
,{"stream_name":"stderr","time":1885.7931723,"data":"07:21:12 | [W4] OK mew-pokemon-2632367 Pokemon-Art.zip (331,045B)\n"}
,{"stream_name":"stdout","time":1885.8020861,"data":"[W4] OK:452 SK:0 FL:17 | 469/1119 (41.9%) | 893/hr | 11h09m | Q:150\n"}
,{"stream_name":"stderr","time":1889.252014061,"data":"07:21:15 | [W1] OK small-airsip sp_small_airship9486757.schematic (2,743B)\n"}
,{"stream_name":"stdout","time":1889.260593301,"data":"[W1] OK:453 SK:0 FL:17 | 470/1119 (42.0%) | 893/hr | 11h09m | Q:151\n"}
,{"stream_name":"stderr","time":1900.009708222,"data":"07:21:26 | [W3] OK the-residence-of-the-modern-world---modern-house-mcedit-schematic Residente.schematic (7,559B)\n"}
,{"stream_name":"stdout","time":1900.021396332,"data":"[W3] OK:454 SK:0 FL:17 | 471/1119 (42.1%) | 890/hr | 11h09m | Q:151\n"}
,{"stream_name":"stderr","time":1901.192579305,"data":"07:21:27 | [W0] OK santo-stefano-degli-abissini 18308379-PMC.zip (1,765,533B)\n"}
,{"stream_name":"stdout","time":1901.201843855,"data":"[W0] OK:455 SK:0 FL:17 | 472/1119 (42.2%) | 891/hr | 11h09m | Q:151\n"}
,{"stream_name":"stdout","time":1901.203066105,"data":"\n"}
,{"stream_name":"stdout","time":1901.203093376,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1901.203181756,"data":"SUMMARY: 846 done | 17 failed | 0 skipped | 3 pending\n"}
,{"stream_name":"stdout","time":1901.203262575,"data":"Progress CSV: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":1901.203267985,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1901.203301285,"data":"\n"}
,{"stream_name":"stderr","time":1901.203520566,"data":"07:21:27 | [W0] Think pause 31s\n"}
,{"stream_name":"stderr","time":1901.410042454,"data":"07:21:27 | [W4] OK kiev-pechersk-lavra-great-bell-tower download.zip (242B)\n"}
,{"stream_name":"stdout","time":1901.420070414,"data":"[W4] OK:456 SK:0 FL:17 | 473/1119 (42.3%) | 893/hr | 11h09m | Q:151\n"}
,{"stream_name":"stdout","time":1901.420528354,"data":"\n"}
,{"stream_name":"stdout","time":1901.420538644,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1901.420591264,"data":"SUMMARY: 847 done | 17 failed | 0 skipped | 2 pending\n"}
,{"stream_name":"stdout","time":1901.420699824,"data":"Progress CSV: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":1901.420706784,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1901.420709964,"data":"\n"}
,{"stream_name":"stderr","time":1901.420873284,"data":"07:21:27 | [W4] Think pause 28s\n"}
,{"stream_name":"stderr","time":1904.10295134,"data":"07:21:30 | [W2] OK fort-knolltop fortknolltop.schematic (38,818B)\n"}
,{"stream_name":"stdout","time":1904.114207879,"data":"[W2] OK:457 SK:0 FL:17 | 474/1119 (42.4%) | 894/hr | 11h09m | Q:151\n"}
,{"stream_name":"stderr","time":1905.966598259,"data":"07:21:32 | [W1] OK minecraft-ares-statue-free ares-schematic.zip (195,890B)\n"}
,{"stream_name":"stdout","time":1905.976472109,"data":"[W1] OK:458 SK:0 FL:17 | 475/1119 (42.4%) | 895/hr | 11h09m | Q:150\n"}
,{"stream_name":"stderr","time":1909.783163268,"data":"07:21:36 | [W3] OK unfair-1-19-unfair-nether unfair1-19-unfairnether.zip (944,915B)\n"}
,{"stream_name":"stdout","time":1909.792270028,"data":"[W3] OK:459 SK:0 FL:17 | 476/1119 (42.5%) | 895/hr | 11h09m | Q:151\n"}
,{"stream_name":"stderr","time":1915.643677356,"data":"07:21:41 | [W2] OK the-crafting-dead-different-storyline the-crafting-dead-for-pat-and-jen.zip (3,918,225B)\n"}
,{"stream_name":"stdout","time":1915.655749206,"data":"[W2] OK:460 SK:0 FL:17 | 477/1119 (42.6%) | 894/hr | 11h09m | Q:150\n"}
,{"stream_name":"stderr","time":1918.60915411,"data":"07:21:44 | [W1] OK cultist-church church3.schem (6,381B)\n"}
,{"stream_name":"stdout","time":1918.62057753,"data":"[W1] OK:461 SK:0 FL:17 | 478/1119 (42.7%) | 895/hr | 11h09m | Q:150\n"}
,{"stream_name":"stderr","time":1922.693697878,"data":"07:21:48 | [W3] OK tatooine-homestead-minecraft-1-12-2 tatooine-homestead-by-shadowdemon.zip (2,652,317B)\n"}
,{"stream_name":"stdout","time":1922.701397308,"data":"[W3] OK:462 SK:0 FL:17 | 479/1119 (42.8%) | 895/hr | 11h09m | Q:151\n"}
,{"stream_name":"stderr","time":1929.7226615,"data":"07:21:56 | [W2] OK endonian-library-17-3-types-of-schematics endonianlibrary-vanilla8129641.schematic (6,852B)\n"}
,{"stream_name":"stdout","time":1929.74926609,"data":"[W2] OK:463 SK:0 FL:17 | 480/1119 (42.9%) | 893/hr | 11h08m | Q:149\n"}
,{"stream_name":"stderr","time":1934.757483183,"data":"07:22:01 | [W1] OK skywars-map-antic-gt-free-download skywars-antic.zip (193,439B)\n"}
,{"stream_name":"stdout","time":1934.770661162,"data":"[W1] OK:464 SK:0 FL:17 | 481/1119 (43.0%) | 893/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1938.78583043,"data":"07:22:05 | [W4] OK jurassic-park-1993-triceratops-paddock jurassic-park-triceratops-paddock.schematic (538B)\n"}
,{"stream_name":"stdout","time":1938.79476051,"data":"[W4] OK:465 SK:0 FL:17 | 482/1119 (43.1%) | 893/hr | 11h08m | Q:150\n"}
,{"stream_name":"stderr","time":1940.456424321,"data":"07:22:06 | [W0] OK historical-police-stacion heliopolis-city-2021-08-28-21-26-27police-stacion-schematic.schematic (11,477B)\n"}
,{"stream_name":"stdout","time":1940.472151401,"data":"[W0] OK:466 SK:0 FL:17 | 483/1119 (43.2%) | 894/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1941.303092066,"data":"07:22:07 | [W3] OK intercontinental-minecart-tubedownload Intercontinental-minecart-tube.zip (3,953B)\n"}
,{"stream_name":"stdout","time":1941.319093537,"data":"[W3] OK:467 SK:0 FL:17 | 484/1119 (43.3%) | 895/hr | 11h08m | Q:150\n"}
,{"stream_name":"stderr","time":1944.46369245,"data":"07:22:10 | [W2] OK base-aquatique base-aquatique.zip (10,047B)\n"}
,{"stream_name":"stdout","time":1944.475334439,"data":"[W2] OK:468 SK:0 FL:17 | 485/1119 (43.3%) | 896/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1945.707759893,"data":"07:22:11 | [W1] OK pokeball-house-v1 pokeballv1.schematic (4,974B)\n"}
,{"stream_name":"stdout","time":1945.720038603,"data":"[W1] OK:469 SK:0 FL:17 | 486/1119 (43.4%) | 897/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1953.245252231,"data":"07:22:19 | [W4] OK redstone-mountain-coaster piston-coster.schematic (124,511B)\n"}
,{"stream_name":"stdout","time":1953.257179701,"data":"[W4] OK:470 SK:0 FL:17 | 487/1119 (43.5%) | 895/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1954.581571584,"data":"07:22:20 | [W0] OK r-e-p-o-statue-house-figure repo-house.nbt (190,977B)\n"}
,{"stream_name":"stdout","time":1954.602276074,"data":"[W0] OK:471 SK:0 FL:17 | 488/1119 (43.6%) | 897/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1956.743336142,"data":"07:22:23 | [W3] OK dutch-fluyt-ship fluyt ship.schematic (7,372B)\n"}
,{"stream_name":"stdout","time":1956.757519402,"data":"[W3] OK:472 SK:0 FL:17 | 489/1119 (43.7%) | 897/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1960.010316574,"data":"07:22:26 | [W2] OK gas-station-6297815 gas-station.zip (3,417,106B)\n"}
,{"stream_name":"stdout","time":1960.027960634,"data":"[W2] OK:473 SK:0 FL:17 | 490/1119 (43.8%) | 898/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1962.087702223,"data":"07:22:28 | [W1] OK infinity-parkour-map-parcour-1-16-amp map-parkour-v2.zip (13,062,815B)\n"}
,{"stream_name":"stdout","time":1962.093556053,"data":"[W1] OK:474 SK:0 FL:17 | 491/1119 (43.9%) | 899/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1970.344588778,"data":"07:22:36 | [W4] OK modern-pizza-restaurant-place pizza.schematic (1,948B)\n"}
,{"stream_name":"stdout","time":1970.355247518,"data":"[W4] OK:475 SK:0 FL:17 | 492/1119 (44.0%) | 897/hr | 11h08m | Q:150\n"}
,{"stream_name":"stderr","time":1972.140554909,"data":"07:22:38 | [W3] OK medieval-mill-and-house mill-complex.zip (3,149,312B)\n"}
,{"stream_name":"stdout","time":1972.168979338,"data":"[W3] OK:476 SK:0 FL:17 | 493/1119 (44.1%) | 898/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1974.421867146,"data":"07:22:40 | [W0] OK minecraftideas-medieval-lighting minecraftideas-lamps.zip (6,260,971B)\n"}
,{"stream_name":"stdout","time":1974.432604626,"data":"[W0] OK:477 SK:0 FL:17 | 494/1119 (44.1%) | 899/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1975.700851749,"data":"07:22:41 | [W2] OK ss-sunshine-ruby ruby110519295.schematic (22,553B)\n"}
,{"stream_name":"stdout","time":1975.717542109,"data":"[W2] OK:478 SK:0 FL:17 | 495/1119 (44.2%) | 900/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1978.204879346,"data":"07:22:44 | [W1] OK pastry-palace-cakewars-map-for-mcc-spamyyt cakewars-map-v3-mcc.zip (462,227B)\n"}
,{"stream_name":"stdout","time":1978.214010636,"data":"[W1] OK:479 SK:0 FL:17 | 496/1119 (44.3%) | 901/hr | 11h08m | Q:151\n"}
,{"stream_name":"stderr","time":1983.795348725,"data":"07:22:50 | [W4] OK nether-entrance-1797431 netherentrance.schematic (1,427B)\n"}
,{"stream_name":"stdout","time":1983.806706364,"data":"[W4] OK:480 SK:0 FL:17 | 497/1119 (44.4%) | 900/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":1986.745999308,"data":"07:22:53 | [W3] OK tnt-cannon-firing-range-for-18-includes-17-cannons-for-upgrade-testing---see-video firingrange1_88200311.schematic (10,022B)\n"}
,{"stream_name":"stdout","time":1986.766049289,"data":"[W3] OK:481 SK:0 FL:17 | 498/1119 (44.5%) | 900/hr | 11h07m | Q:151\n"}
,{"stream_name":"stdout","time":1986.769876819,"data":"\n"}
,{"stream_name":"stdout","time":1986.769915308,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1986.769924328,"data":"SUMMARY: 872 done | 17 failed | 0 skipped | 3 pending\n"}
,{"stream_name":"stdout","time":1986.769929938,"data":"Progress CSV: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":1986.769935388,"data":"==================================================\n"}
,{"stream_name":"stdout","time":1986.769940478,"data":"\n"}
,{"stream_name":"stderr","time":1986.770191909,"data":"07:22:53 | [W3] Think pause 21s\n"}
,{"stream_name":"stderr","time":1991.432668093,"data":"07:22:57 | [W0] OK festive-mashup-pack-world-bedrock festive-mash-up-2016.mcworld (6,762,837B)\n"}
,{"stream_name":"stdout","time":1991.446502703,"data":"[W0] OK:482 SK:0 FL:17 | 499/1119 (44.6%) | 900/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":1992.818448085,"data":"07:22:59 | [W2] OK murder-mystery-the-prison murder-mystery-the-prison-2-1.zip (794,343B)\n"}
,{"stream_name":"stdout","time":1992.840060125,"data":"[W2] OK:483 SK:0 FL:17 | 500/1119 (44.7%) | 901/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":1994.263280987,"data":"07:23:00 | [W1] OK 42-black-white-modern-office-tower-1-16 42-black-white-office-tower-1-16-by-megaminerdl.zip (9,822,564B)\n"}
,{"stream_name":"stdout","time":1994.288053377,"data":"[W1] OK:484 SK:0 FL:17 | 501/1119 (44.8%) | 902/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":1997.646640719,"data":"07:23:03 | [W4] OK halo-mulzac-class-transport mulzacvanilla.schem (22,333B)\n"}
,{"stream_name":"stdout","time":1997.661805479,"data":"[W4] OK:485 SK:0 FL:17 | 502/1119 (44.9%) | 903/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":2001.820067026,"data":"07:23:08 | [W0] OK 85-5234367 85.zip (1,443,472B)\n"}
,{"stream_name":"stdout","time":2001.828701746,"data":"[W0] OK:486 SK:0 FL:17 | 503/1119 (45.0%) | 903/hr | 11h07m | Q:150\n"}
,{"stream_name":"stderr","time":2005.262586167,"data":"07:23:11 | [W2] OK thermae-caesareae-galliae therme-von-caesarea.zip (73,980B)\n"}
,{"stream_name":"stdout","time":2005.275766997,"data":"[W2] OK:487 SK:0 FL:17 | 504/1119 (45.0%) | 903/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":2010.148737671,"data":"07:23:16 | [W1] OK warden-in-the-backrooms-by-ezlerplayz warden-in-the-backrooms.mcworld (221,221B)\n"}
,{"stream_name":"stdout","time":2010.172711471,"data":"[W1] OK:488 SK:0 FL:17 | 505/1119 (45.1%) | 902/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":2014.636313646,"data":"07:23:20 | [W3] OK psy-gangnam-style-minecraft-note-block PSY---Gangnam-Style.zip (1,305B)\n"}
,{"stream_name":"stdout","time":2014.654210166,"data":"[W3] OK:489 SK:0 FL:17 | 506/1119 (45.2%) | 902/hr | 11h07m | Q:150\n"}
,{"stream_name":"stderr","time":2015.092515114,"data":"07:23:21 | [W4] OK racing-plane---gee-bee-sportster-r-1 geebeesportser7806480.schematic (742B)\n"}
,{"stream_name":"stdout","time":2015.104575714,"data":"[W4] OK:490 SK:0 FL:17 | 507/1119 (45.3%) | 904/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":2019.106683762,"data":"07:23:25 | [W2] OK minecraft-pvp-arena-295275 Arena Schematic.schematic (3,955B)\n"}
,{"stream_name":"stdout","time":2019.122343462,"data":"[W2] OK:491 SK:0 FL:17 | 508/1119 (45.4%) | 904/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":2019.55280963,"data":"07:23:25 | [W0] OK -rainbow-spawn- rainbowspawn8238438.zip (256,621B)\n"}
,{"stream_name":"stdout","time":2019.563743059,"data":"[W0] OK:492 SK:0 FL:17 | 509/1119 (45.5%) | 905/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":2022.772965262,"data":"07:23:29 | [W1] OK mega-piston-dam gate.schematic (199B)\n"}
,{"stream_name":"stdout","time":2022.787864222,"data":"[W1] OK:493 SK:0 FL:17 | 510/1119 (45.6%) | 906/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":2027.713042555,"data":"07:23:34 | [W4] OK build-of-majoras-mdrn-apartments-2 mdrn-apt-210452855.schematic (10,002B)\n"}
,{"stream_name":"stdout","time":2027.741419985,"data":"[W4] OK:494 SK:0 FL:17 | 511/1119 (45.7%) | 905/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":2030.184257792,"data":"07:23:36 | [W3] OK tangela-tentacruel-graveler-downloadable schematics.zip (14,123B)\n"}
,{"stream_name":"stdout","time":2030.195534651,"data":"[W3] OK:495 SK:0 FL:17 | 512/1119 (45.8%) | 906/hr | 11h07m | Q:150\n"}
,{"stream_name":"stderr","time":2035.138610074,"data":"07:23:41 | [W2] OK dreadnought-class-airship airship by filipsps.schematic (14,065B)\n"}
,{"stream_name":"stdout","time":2035.157656824,"data":"[W2] OK:496 SK:0 FL:17 | 513/1119 (45.8%) | 906/hr | 11h07m | Q:151\n"}
,{"stream_name":"stdout","time":2035.158665444,"data":"\n"}
,{"stream_name":"stdout","time":2035.158736564,"data":"==================================================\n"}
,{"stream_name":"stdout","time":2035.158744094,"data":"SUMMARY: 887 done | 17 failed | 0 skipped | 2 pending\n"}
,{"stream_name":"stdout","time":2035.158749034,"data":"Progress CSV: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":2035.158754384,"data":"==================================================\n"}
,{"stream_name":"stdout","time":2035.158760144,"data":"\n"}
,{"stream_name":"stderr","time":2035.158999144,"data":"07:23:41 | [W2] Think pause 26s\n"}
,{"stream_name":"stderr","time":2036.827882415,"data":"07:23:43 | [W1] OK brick-and-gold-factory brick-factory-fixed.mcworld (239,775B)\n"}
,{"stream_name":"stdout","time":2036.855215905,"data":"[W1] OK:497 SK:0 FL:17 | 514/1119 (45.9%) | 907/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":2037.335676812,"data":"07:23:43 | [W0] OK dragon-amp-fairy-organics fairy.schematic (211,470B)\n"}
,{"stream_name":"stdout","time":2037.351362502,"data":"[W0] OK:498 SK:0 FL:17 | 515/1119 (46.0%) | 908/hr | 11h07m | Q:151\n"}
,{"stream_name":"stderr","time":2044.060022856,"data":"07:23:50 | [W3] OK liverpool-expanded-version-resource-pack anfield.zip (8,220,736B)\n"}
,{"stream_name":"stdout","time":2044.067193536,"data":"[W3] OK:499 SK:0 FL:17 | 516/1119 (46.1%) | 907/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2045.197404779,"data":"07:23:51 | [W4] OK zombie-donut zombiedonuts9049614.schematic (2,252B)\n"}
,{"stream_name":"stdout","time":2045.209425699,"data":"[W4] OK:500 SK:0 FL:17 | 517/1119 (46.2%) | 908/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2054.36349154,"data":"07:24:00 | [W1] OK the-woolworth-building Woolworth-Building-Full.schematic (28,415B)\n"}
,{"stream_name":"stdout","time":2054.38126036,"data":"[W1] OK:501 SK:0 FL:17 | 518/1119 (46.3%) | 906/hr | 11h06m | Q:151\n"}
,{"stream_name":"stdout","time":2054.38213074,"data":"\n"}
,{"stream_name":"stdout","time":2054.3821499,"data":"==================================================\n"}
,{"stream_name":"stdout","time":2054.38215634,"data":"SUMMARY: 892 done | 17 failed | 0 skipped | 2 pending\n"}
,{"stream_name":"stdout","time":2054.38216178,"data":"Progress CSV: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":2054.38218104,"data":"==================================================\n"}
,{"stream_name":"stdout","time":2054.38218614,"data":"\n"}
,{"stream_name":"stderr","time":2054.38227084,"data":"07:24:00 | [W1] Think pause 38s\n"}
,{"stream_name":"stderr","time":2054.684619828,"data":"07:24:00 | [W0] OK paint-ball-arena-2280503 paintball.schematic (15,438B)\n"}
,{"stream_name":"stdout","time":2054.694833968,"data":"[W0] OK:502 SK:0 FL:17 | 519/1119 (46.4%) | 908/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2057.832999101,"data":"07:24:04 | [W3] OK town-hall-6040818 town-hall.schem (3,805B)\n"}
,{"stream_name":"stdout","time":2057.852140001,"data":"[W3] OK:503 SK:0 FL:17 | 520/1119 (46.5%) | 908/hr | 11h06m | Q:150\n"}
,{"stream_name":"stderr","time":2062.362956226,"data":"07:24:08 | [W4] OK 1-5-1-tem2u tem2u.zip (2,497,977B)\n"}
,{"stream_name":"stdout","time":2062.373384366,"data":"[W4] OK:504 SK:0 FL:17 | 521/1119 (46.6%) | 908/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2064.949795522,"data":"07:24:11 | [W0] OK fnaf-rp-map fnafrp9626881.zip (303,293B)\n"}
,{"stream_name":"stdout","time":2064.959245252,"data":"[W0] OK:505 SK:0 FL:17 | 522/1119 (46.6%) | 908/hr | 11h06m | Q:150\n"}
,{"stream_name":"stderr","time":2066.857196471,"data":"07:24:13 | [W2] OK mob-farm-2---for-items-and-experiance mob_farm_items_and_experience.schematic (6,728B)\n"}
,{"stream_name":"stdout","time":2066.876339561,"data":"[W2] OK:506 SK:0 FL:17 | 523/1119 (46.7%) | 909/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2069.523712046,"data":"07:24:15 | [W3] OK medieval-factory-java-amp-bedrock medieval-factory.zip (1,860,748B)\n"}
,{"stream_name":"stdout","time":2069.531771436,"data":"[W3] OK:507 SK:0 FL:17 | 524/1119 (46.8%) | 910/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2077.638493593,"data":"07:24:23 | [W4] OK aestetic-enderman-farm aestetic-enderman-farm-1-21-10.zip (19,006B)\n"}
,{"stream_name":"stdout","time":2077.658231143,"data":"[W4] OK:508 SK:0 FL:17 | 525/1119 (46.9%) | 908/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2078.21217997,"data":"07:24:24 | [W0] OK summer-house11 summerhouse11.schem (114,969B)\n"}
,{"stream_name":"stdout","time":2078.22729631,"data":"[W0] OK:509 SK:0 FL:17 | 526/1119 (47.0%) | 909/hr | 11h06m | Q:150\n"}
,{"stream_name":"stderr","time":2079.826262621,"data":"07:24:26 | [W3] OK self-reloading-automated-tnt-cannon-mk2-dispensers-only automated-cannon-MK2-Testing-Range_5396981.schematic (104,813B)\n"}
,{"stream_name":"stdout","time":2079.847415321,"data":"[W3] OK:510 SK:0 FL:17 | 527/1119 (47.1%) | 911/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2081.75182902,"data":"07:24:28 | [W2] OK watermill-5930188 watermill.schem (5,688B)\n"}
,{"stream_name":"stdout","time":2081.76009349,"data":"[W2] OK:511 SK:0 FL:17 | 528/1119 (47.2%) | 911/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2090.150829025,"data":"07:24:36 | [W4] OK yourfriend0918-s-vehicle-pack vehicles.zip (2,069,954B)\n"}
,{"stream_name":"stdout","time":2090.168663805,"data":"[W4] OK:512 SK:0 FL:17 | 529/1119 (47.3%) | 909/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2091.735862206,"data":"07:24:38 | [W0] OK nordic-house-3096018 nordic8347555.schematic (959B)\n"}
,{"stream_name":"stdout","time":2091.746636966,"data":"[W0] OK:513 SK:0 FL:17 | 530/1119 (47.4%) | 911/hr | 11h06m | Q:150\n"}
,{"stream_name":"stderr","time":2093.564169496,"data":"07:24:39 | [W3] OK bedrock-mrswatpl-villa-completed mrswatpl-villa.mcworld (5,825,220B)\n"}
,{"stream_name":"stdout","time":2093.574272496,"data":"[W3] OK:514 SK:0 FL:17 | 531/1119 (47.5%) | 911/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2098.283923,"data":"07:24:44 | [W2] OK the-rems-skygrid-10 skygrid.zip (336,465B)\n"}
,{"stream_name":"stdout","time":2098.29674609,"data":"[W2] OK:515 SK:0 FL:17 | 532/1119 (47.5%) | 911/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2099.142463946,"data":"07:24:45 | [W1] OK custom-canal-barges hki-canal-barges.schem (4,059B)\n"}
,{"stream_name":"stdout","time":2099.151763875,"data":"[W1] OK:516 SK:0 FL:17 | 533/1119 (47.6%) | 913/hr | 11h06m | Q:151\n"}
,{"stream_name":"stderr","time":2103.81696623,"data":"07:24:50 | [W0] OK minecraft-az minecraft-az.zip (8,785,992B)\n"}
,{"stream_name":"stdout","time":2103.834434839,"data":"[W0] OK:517 SK:0 FL:17 | 534/1119 (47.7%) | 912/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2104.760440595,"data":"07:24:51 | [W4] OK no-game-no-life-opening-this-game-minecraft-noteblock-cover this-game-no-game-no-life.zip (837,914B)\n"}
,{"stream_name":"stdout","time":2104.768679685,"data":"[W4] OK:518 SK:0 FL:17 | 535/1119 (47.8%) | 914/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2106.771310961,"data":"07:24:53 | [W3] OK bag-s-end bags-end.zip (953,142B)\n"}
,{"stream_name":"stdout","time":2106.777692511,"data":"[W3] OK:519 SK:0 FL:17 | 536/1119 (47.9%) | 914/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2110.957631703,"data":"07:24:57 | [W1] OK liberty-diversity-like liberty.mcworld (3,282,184B)\n"}
,{"stream_name":"stdout","time":2110.964667603,"data":"[W1] OK:520 SK:0 FL:17 | 537/1119 (48.0%) | 914/hr | 11h05m | Q:149\n"}
,{"stream_name":"stderr","time":2121.191356186,"data":"07:25:07 | [W0] OK dutch-s-bunker-farcry5 bunker.zip (8,129,501B)\n"}
,{"stream_name":"stdout","time":2121.211713915,"data":"[W0] OK:521 SK:0 FL:17 | 538/1119 (48.1%) | 911/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2121.429580522,"data":"07:25:07 | [W3] OK mediterranean-modern-waterfront-home mediter_1.schematic (4,205B)\n"}
,{"stream_name":"stdout","time":2121.449550591,"data":"[W3] OK:522 SK:0 FL:17 | 539/1119 (48.2%) | 913/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2122.590750183,"data":"07:25:08 | [W2] OK tjiri-s-town-project tjiri-s-guelder-v6.zip (14,665,713B)\n"}
,{"stream_name":"stdout","time":2122.608666952,"data":"[W2] OK:523 SK:0 FL:17 | 540/1119 (48.3%) | 914/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2123.489372918,"data":"07:25:09 | [W4] OK spaceship-fl4v14 fl4v14.zip (1,718,569B)\n"}
,{"stream_name":"stdout","time":2123.505557338,"data":"[W4] OK:524 SK:0 FL:17 | 541/1119 (48.3%) | 916/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2124.741739368,"data":"07:25:11 | [W1] OK lamp-pack lamp-pack.zip (2,409B)\n"}
,{"stream_name":"stdout","time":2124.748623287,"data":"[W1] OK:525 SK:0 FL:17 | 542/1119 (48.4%) | 917/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2134.334172252,"data":"07:25:20 | [W0] OK modern-house-sandstone-on-stilts ModernSandstoneStilts.schematic (1,836B)\n"}
,{"stream_name":"stdout","time":2134.353977001,"data":"[W0] OK:526 SK:0 FL:17 | 543/1119 (48.5%) | 914/hr | 11h05m | Q:150\n"}
,{"stream_name":"stderr","time":2134.822167574,"data":"07:25:21 | [W3] OK map-parkour-indonesia map-parkour-indonesia.zip (6,250,957B)\n"}
,{"stream_name":"stdout","time":2134.835497043,"data":"[W3] OK:527 SK:0 FL:17 | 544/1119 (48.6%) | 916/hr | 11h05m | Q:150\n"}
,{"stream_name":"stderr","time":2138.440338034,"data":"07:25:24 | [W4] OK minecraft-naruto-skin-statue-free-120-height 03-120.schematic (27,326B)\n"}
,{"stream_name":"stdout","time":2138.456529154,"data":"[W4] OK:528 SK:0 FL:17 | 545/1119 (48.7%) | 916/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2141.377759436,"data":"07:25:27 | [W1] OK server-mini-hub-schematic-download minihub9739806.schematic (3,242B)\n"}
,{"stream_name":"stdout","time":2141.389387466,"data":"[W1] OK:529 SK:0 FL:17 | 546/1119 (48.8%) | 917/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2142.345733881,"data":"07:25:28 | [W2] OK beach-side-restaurant diner10867677.zip (6,786,854B)\n"}
,{"stream_name":"stdout","time":2142.351940101,"data":"[W2] OK:530 SK:0 FL:17 | 547/1119 (48.9%) | 918/hr | 11h05m | Q:149\n"}
,{"stream_name":"stderr","time":2148.581448959,"data":"07:25:34 | [W0] OK the-spire--steampunk-airship- thespireairship.schematic (5,899B)\n"}
,{"stream_name":"stdout","time":2148.602278238,"data":"[W0] OK:531 SK:0 FL:17 | 548/1119 (49.0%) | 917/hr | 11h05m | Q:150\n"}
,{"stream_name":"stderr","time":2149.452863274,"data":"07:25:35 | [W3] OK free-4-arcane-inspired-maps-pvp-1-21-1 arcaneareny-1.schem (81,528B)\n"}
,{"stream_name":"stdout","time":2149.468276904,"data":"[W3] OK:532 SK:0 FL:17 | 549/1119 (49.1%) | 918/hr | 11h05m | Q:150\n"}
,{"stream_name":"stderr","time":2152.916172148,"data":"07:25:39 | [W4] OK fully-working-two-player-connect-4-game-automatic-switch Connect4_V1.schematic (2,435B)\n"}
,{"stream_name":"stdout","time":2152.934240237,"data":"[W4] OK:533 SK:0 FL:17 | 550/1119 (49.2%) | 918/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2157.790329508,"data":"07:25:44 | [W1] OK spaceship-no1 spaceship.schematic (2,850B)\n"}
,{"stream_name":"stdout","time":2157.815301357,"data":"[W1] OK:534 SK:0 FL:17 | 551/1119 (49.2%) | 918/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2158.390847698,"data":"07:25:44 | [W2] OK the-wiki-globe wiki-globe.zip (13,111,348B)\n"}
,{"stream_name":"stdout","time":2158.406275298,"data":"[W2] OK:535 SK:0 FL:17 | 552/1119 (49.3%) | 919/hr | 11h05m | Q:151\n"}
,{"stream_name":"stderr","time":2164.003616206,"data":"07:25:50 | [W3] OK star-wars-death-star-3902298 the-star-wars.zip (12,291,451B)\n"}
,{"stream_name":"stdout","time":2164.027552756,"data":"[W3] OK:536 SK:0 FL:17 | 553/1119 (49.4%) | 919/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2164.211026183,"data":"07:25:50 | [W4] OK age-of-empires-i-far-east-docks aoe-i-fo-hafen.nbt (109,500B)\n"}
,{"stream_name":"stdout","time":2164.227475452,"data":"[W4] OK:537 SK:0 FL:17 | 554/1119 (49.5%) | 920/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2166.1870582,"data":"07:25:52 | [W0] OK medieval-house-5886074 tiny-house.zip (3,374B)\n"}
,{"stream_name":"stdout","time":2166.1979989,"data":"[W0] OK:538 SK:0 FL:17 | 555/1119 (49.6%) | 921/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2170.680796018,"data":"07:25:56 | [W1] OK row-house rowhouse-1.nbt (35,832B)\n"}
,{"stream_name":"stdout","time":2170.697678317,"data":"[W1] OK:539 SK:0 FL:17 | 556/1119 (49.7%) | 921/hr | 11h04m | Q:149\n"}
,{"stream_name":"stderr","time":2176.172148268,"data":"07:26:02 | [W2] OK floating-island-survival-for-12a25w Floating Island Survival.schematic (38,642B)\n"}
,{"stream_name":"stdout","time":2176.200121177,"data":"[W2] OK:540 SK:0 FL:17 | 557/1119 (49.8%) | 920/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2179.213088378,"data":"07:26:05 | [W4] OK battlesphere-2888880 battlesphere.schematic (253,700B)\n"}
,{"stream_name":"stdout","time":2179.226960498,"data":"[W4] OK:541 SK:0 FL:17 | 558/1119 (49.9%) | 921/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2180.464300288,"data":"07:26:06 | [W3] OK freddy-fazbear-pizzeria-simulator fnaf6.zip (1,133,128B)\n"}
,{"stream_name":"stdout","time":2180.479405447,"data":"[W3] OK:542 SK:0 FL:17 | 559/1119 (50.0%) | 922/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2181.783972156,"data":"07:26:08 | [W0] OK ss-nordervallen-1928-the-art-deco-liner-full-interior-download ss-nordervallen-1928.zip (7,229,448B)\n"}
,{"stream_name":"stdout","time":2181.810712075,"data":"[W0] OK:543 SK:0 FL:17 | 560/1119 (50.0%) | 923/hr | 11h04m | Q:150\n"}
,{"stream_name":"stderr","time":2186.239632613,"data":"07:26:12 | [W1] OK animated-3d-graphs 3d-grapher.zip (3,747,944B)\n"}
,{"stream_name":"stdout","time":2186.246384833,"data":"[W1] OK:544 SK:0 FL:17 | 561/1119 (50.1%) | 923/hr | 11h04m | Q:150\n"}
,{"stream_name":"stderr","time":2195.033189869,"data":"07:26:21 | [W2] OK bny-mellon-center bnymelloncenter8826292.schematic (37,749B)\n"}
,{"stream_name":"stdout","time":2195.057639149,"data":"[W2] OK:545 SK:0 FL:17 | 562/1119 (50.2%) | 920/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2198.221473177,"data":"07:26:24 | [W4] OK youtubers-parcour-map youtubersparcourmapv29237900.zip (827,779B)\n"}
,{"stream_name":"stderr","time":2198.230426877,"data":"07:26:24 | [W0] OK kale-sava-mega-castle-wars-mega-map world.zip (775,757B)\n"}
,{"stream_name":"stdout","time":2198.230496447,"data":"[W4] OK:546 SK:0 FL:17 | 563/1119 (50.3%) | 921/hr | 11h04m | Q:151\n"}
,{"stream_name":"stdout","time":2198.241610497,"data":"[W0] OK:547 SK:0 FL:17 | 564/1119 (50.4%) | 922/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2198.244074677,"data":"07:26:24 | [W3] OK the-test-chamber-4670104 the-test-chamber.zip (3,377,314B)\n"}
,{"stream_name":"stdout","time":2198.253410216,"data":"[W3] OK:548 SK:0 FL:17 | 565/1119 (50.5%) | 924/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2201.231459038,"data":"07:26:27 | [W1] OK small-airship-2359598 ship18500656.schematic (4,873B)\n"}
,{"stream_name":"stdout","time":2201.239960198,"data":"[W1] OK:549 SK:0 FL:17 | 566/1119 (50.6%) | 925/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2212.502776414,"data":"07:26:38 | [W2] OK friendly-factions-spawn prisom-ffs.schematic (20,527B)\n"}
,{"stream_name":"stdout","time":2212.516199044,"data":"[W2] OK:550 SK:0 FL:17 | 567/1119 (50.7%) | 921/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2214.63618992,"data":"07:26:40 | [W3] OK all-in-one-ultimate-minecraft-map-aioumm all-in-one-ultimate-minecraft-map.mcworld (1,998,200B)\n"}
,{"stream_name":"stdout","time":2214.651096839,"data":"[W3] OK:551 SK:0 FL:17 | 568/1119 (50.8%) | 922/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2216.263792033,"data":"07:26:42 | [W0] OK the-cats-hat The Cat in the Hats Hat.schematic (923B)\n"}
,{"stream_name":"stdout","time":2216.278121463,"data":"[W0] OK:552 SK:0 FL:17 | 569/1119 (50.8%) | 923/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2218.197100531,"data":"07:26:44 | [W4] OK mansion-4105344 mansion2.zip (631,834B)\n"}
,{"stream_name":"stdout","time":2218.216361771,"data":"[W4] OK:553 SK:0 FL:17 | 570/1119 (50.9%) | 924/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2218.409763458,"data":"07:26:44 | [W1] OK floating-postmodern-house floating-house-me-gusta.zip (2,878B)\n"}
,{"stream_name":"stdout","time":2218.439926657,"data":"[W1] OK:554 SK:0 FL:17 | 571/1119 (51.0%) | 925/hr | 11h04m | Q:151\n"}
,{"stream_name":"stderr","time":2229.045465446,"data":"07:26:55 | [W2] OK reshiram-568654 Reshiram_1432425.schematic (1,927B)\n"}
,{"stream_name":"stdout","time":2229.073375536,"data":"[W2] OK:555 SK:0 FL:17 | 572/1119 (51.1%) | 923/hr | 11h03m | Q:149\n"}
,{"stream_name":"stderr","time":2231.85958635,"data":"07:26:58 | [W0] OK pvp-jungle-mine world_2015-12-19--21-00-169695008.schematic (1,197,783B)\n"}
,{"stream_name":"stdout","time":2231.88206517,"data":"[W0] OK:556 SK:0 FL:17 | 573/1119 (51.2%) | 923/hr | 11h03m | Q:151\n"}
,{"stream_name":"stderr","time":2234.831093221,"data":"07:27:01 | [W3] OK john-deere-4940-self-propelled-sprayer jd4940.schem (7,158B)\n"}
,{"stream_name":"stdout","time":2234.849183361,"data":"[W3] OK:557 SK:0 FL:17 | 574/1119 (51.3%) | 923/hr | 11h03m | Q:151\n"}
,{"stream_name":"stderr","time":2236.054279271,"data":"07:27:02 | [W4] OK modern-blue-tower blue-modern-tower-xylia.zip (1,726,631B)\n"}
,{"stream_name":"stdout","time":2236.060494561,"data":"[W4] OK:558 SK:0 FL:17 | 575/1119 (51.4%) | 925/hr | 11h03m | Q:151\n"}
,{"stream_name":"stderr","time":2236.404027206,"data":"07:27:02 | [W1] OK tnt-world-mcbe tnt.mcworld (1,675,567B)\n"}
,{"stream_name":"stdout","time":2236.410839325,"data":"[W1] OK:559 SK:0 FL:17 | 576/1119 (51.5%) | 926/hr | 11h03m | Q:151\n"}
,{"stream_name":"stdout","time":2237.400579029,"data":"Feeder done 728 builds queued\n"}
,{"stream_name":"stderr","time":2240.867470932,"data":"07:27:07 | [W0] OK regelneef---medieval-garden-of-tranquillity regelneef-gardenoftranquillity.schematic (1,519B)\n"}
,{"stream_name":"stdout","time":2240.879809532,"data":"[W0] OK:560 SK:0 FL:17 | 577/1119 (51.6%) | 926/hr | 11h03m | Q:154\n"}
,{"stream_name":"stderr","time":2247.10800713,"data":"07:27:13 | [W2] OK house-1---gregonsburg-hills House 1 - Gregonsburg Hills.schematic (3,498B)\n"}
,{"stream_name":"stdout","time":2247.13505246,"data":"[W2] OK:561 SK:0 FL:17 | 578/1119 (51.7%) | 925/hr | 11h03m | Q:152\n"}
,{"stream_name":"stderr","time":2249.595819329,"data":"07:27:15 | [W3] OK sandman-signature-london-gatwick-hotel-crawley-west-sussex sandman-signature-london-gatwick.zip (2,398,130B)\n"}
,{"stream_name":"stdout","time":2249.619471509,"data":"[W3] OK:562 SK:0 FL:17 | 579/1119 (51.7%) | 925/hr | 11h03m | Q:152\n"}
,{"stream_name":"stderr","time":2252.091679899,"data":"07:27:18 | [W1] OK lomby-s-mini-snow-biome-schem mini-snow-biome.schem (650B)\n"}
,{"stream_name":"stdout","time":2252.110006359,"data":"[W1] OK:563 SK:0 FL:17 | 580/1119 (51.8%) | 926/hr | 11h03m | Q:151\n"}
,{"stream_name":"stderr","time":2256.072324624,"data":"07:27:22 | [W0] OK skandi-aukra skandiaukra8326563.schematic (4,747B)\n"}
,{"stream_name":"stdout","time":2256.081386494,"data":"[W0] OK:564 SK:0 FL:17 | 581/1119 (51.9%) | 926/hr | 11h03m | Q:150\n"}
,{"stream_name":"stderr","time":2256.859938661,"data":"07:27:23 | [W2] OK zeus-class-stealth-frigate-fictional zeus.schem (18,681B)\n"}
,{"stream_name":"stdout","time":2256.875173861,"data":"[W2] OK:565 SK:0 FL:17 | 582/1119 (52.0%) | 927/hr | 11h03m | Q:149\n"}
,{"stream_name":"stderr","time":2260.872517475,"data":"07:27:27 | [W3] OK cool-mod-showcase-map modsshowcasingmap8553163.zip (3,217,252B)\n"}
,{"stream_name":"stdout","time":2260.880253865,"data":"[W3] OK:566 SK:0 FL:17 | 583/1119 (52.1%) | 927/hr | 11h03m | Q:149\n"}
,{"stream_name":"stderr","time":2268.63205336,"data":"07:27:34 | [W4] Click fail the-call-stack-from-let-s-make-a-redstone-computer: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":2269.213862391,"data":"07:27:35 | [W1] OK mack-granite-dump-truck granite.schem (3,390B)\n"}
,{"stream_name":"stdout","time":2269.234808791,"data":"[W1] OK:567 SK:0 FL:17 | 584/1119 (52.2%) | 925/hr | 11h03m | Q:146\n"}
,{"stream_name":"stderr","time":2269.88875657,"data":"07:27:36 | [W0] OK medieval-house-4-3986227 medieval-house-4.schematic (6,341B)\n"}
,{"stream_name":"stdout","time":2269.9014591,"data":"[W0] OK:568 SK:0 FL:17 | 585/1119 (52.3%) | 927/hr | 11h03m | Q:146\n"}
,{"stream_name":"stderr","time":2271.027094821,"data":"07:27:37 | [W2] OK medieval-barracks-fort-castle castle18499040.schematic (1,838B)\n"}
,{"stream_name":"stdout","time":2271.046132941,"data":"[W2] OK:569 SK:0 FL:17 | 586/1119 (52.4%) | 928/hr | 11h03m | Q:145\n"}
,{"stream_name":"stderr","time":2276.917731015,"data":"07:27:43 | [W3] OK minecraft-survival-map---island Minecraft-Map-Survival---Island.zip (2,023,293B)\n"}
,{"stream_name":"stdout","time":2276.927036405,"data":"[W3] OK:570 SK:0 FL:17 | 587/1119 (52.5%) | 927/hr | 11h03m | Q:144\n"}
,{"stream_name":"stderr","time":2279.200003679,"data":"07:27:45 | [W0] OK well-tf2 well-tf2.zip (5,563,100B)\n"}
,{"stream_name":"stdout","time":2279.217539788,"data":"[W0] OK:571 SK:0 FL:17 | 588/1119 (52.5%) | 928/hr | 11h03m | Q:143\n"}
,{"stream_name":"stderr","time":2284.769066728,"data":"07:27:51 | [W1] OK sodor-village sodor.zip (10,590,377B)\n"}
,{"stream_name":"stdout","time":2284.802306498,"data":"[W1] OK:572 SK:0 FL:17 | 589/1119 (52.6%) | 927/hr | 11h02m | Q:141\n"}
,{"stream_name":"stderr","time":2286.50400086,"data":"07:27:52 | [W2] OK survival-apartment apartment.schem (7,201B)\n"}
,{"stream_name":"stdout","time":2286.531084919,"data":"[W2] OK:573 SK:0 FL:17 | 590/1119 (52.7%) | 928/hr | 11h02m | Q:141\n"}
,{"stream_name":"stderr","time":2288.793051143,"data":"07:27:55 | [W3] OK the-backrooms-3804 2022-06-09-16-12-17-the-backrooms.zip (1,112,156B)\n"}
,{"stream_name":"stdout","time":2288.804017193,"data":"[W3] OK:574 SK:0 FL:17 | 591/1119 (52.8%) | 929/hr | 11h02m | Q:140\n"}
,{"stream_name":"stderr","time":2292.563809863,"data":"07:27:58 | [W0] OK speed-bridge-practice-map speed-bridge-practice-map.zip (827,485B)\n"}
,{"stream_name":"stdout","time":2292.576140793,"data":"[W0] OK:575 SK:0 FL:17 | 592/1119 (52.9%) | 929/hr | 11h02m | Q:140\n"}
,{"stream_name":"stderr","time":2298.031219278,"data":"07:28:04 | [W2] OK stampy-s-house-from-mcsm stampyhouse.schematic (5,765B)\n"}
,{"stream_name":"stdout","time":2298.054494898,"data":"[W2] OK:576 SK:0 FL:17 | 593/1119 (53.0%) | 928/hr | 11h02m | Q:137\n"}
,{"stream_name":"stderr","time":2301.570400421,"data":"07:28:07 | [W1] OK futuristic-helicopter future-helicopter.schematic (1,278B)\n"}
,{"stream_name":"stdout","time":2301.576562181,"data":"[W1] OK:577 SK:0 FL:17 | 594/1119 (53.1%) | 928/hr | 11h02m | Q:137\n"}
,{"stream_name":"stderr","time":2302.742074143,"data":"07:28:09 | [W3] OK mordern-house-1-2611597 Modern-House_6756339.schematic (1,177B)\n"}
,{"stream_name":"stdout","time":2302.752046713,"data":"[W3] OK:578 SK:0 FL:17 | 595/1119 (53.2%) | 929/hr | 11h02m | Q:136\n"}
,{"stream_name":"stderr","time":2306.021671231,"data":"07:28:12 | [W4] Click fail the-call-stack-from-let-s-make-a-redstone-computer: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":2307.952842043,"data":"07:28:14 | [W0] OK modern-home-1389186 modern-home_3497699.zip (2,526,737B)\n"}
,{"stream_name":"stdout","time":2307.969719892,"data":"[W0] OK:579 SK:0 FL:17 | 596/1119 (53.3%) | 929/hr | 11h02m | Q:135\n"}
,{"stream_name":"stderr","time":2312.300248117,"data":"07:28:18 | [W2] OK wooden-house-new-personal-style Wooden House new style.schematic (49,890B)\n"}
,{"stream_name":"stdout","time":2312.330641507,"data":"[W2] OK:580 SK:0 FL:17 | 597/1119 (53.4%) | 928/hr | 11h02m | Q:133\n"}
,{"stream_name":"stderr","time":2316.783794294,"data":"07:28:23 | [W3] OK rock-pack-cartoon-style rockpackdemo.schem (10,226B)\n"}
,{"stream_name":"stdout","time":2316.796272494,"data":"[W3] OK:581 SK:0 FL:17 | 598/1119 (53.4%) | 928/hr | 11h02m | Q:132\n"}
,{"stream_name":"stderr","time":2321.001316895,"data":"07:28:27 | [W1] OK halo-covenant-truth-and-reconciliation-ket-pattern-battlecruiser-complete-destructible-interior-halo-combat-evolved ketpatterns.zip (11,651,479B)\n"}
,{"stream_name":"stdout","time":2321.018645455,"data":"[W1] OK:582 SK:0 FL:17 | 599/1119 (53.5%) | 928/hr | 11h02m | Q:131\n"}
,{"stream_name":"stderr","time":2322.350634493,"data":"07:28:28 | [W0] OK hide-and-seek-beta-edition hide-and-seek-beta.mcworld (2,356,960B)\n"}
,{"stream_name":"stdout","time":2322.367392933,"data":"[W0] OK:583 SK:0 FL:17 | 600/1119 (53.6%) | 929/hr | 11h02m | Q:131\n"}
,{"stream_name":"stderr","time":2323.801533619,"data":"07:28:30 | [W2] OK the-gala-6578139 the-gala.zip (1,424,270B)\n"}
,{"stream_name":"stdout","time":2323.818020219,"data":"[W2] OK:584 SK:0 FL:17 | 601/1119 (53.7%) | 930/hr | 11h02m | Q:131\n"}
,{"stream_name":"stderr","time":2333.4686821,"data":"07:28:39 | [W1] OK runescape-in-minecraft-135937 LumbridgeCastle_347536.schematic (5,591B)\n"}
,{"stream_name":"stdout","time":2333.479973781,"data":"[W1] OK:585 SK:0 FL:17 | 602/1119 (53.8%) | 928/hr | 11h02m | Q:128\n"}
,{"stream_name":"stderr","time":2335.089673924,"data":"07:28:41 | [W3] OK survival-map-1937755 trke_5393203.zip (2,907,119B)\n"}
,{"stream_name":"stdout","time":2335.099668784,"data":"[W3] OK:586 SK:0 FL:17 | 603/1119 (53.9%) | 929/hr | 11h02m | Q:127\n"}
,{"stream_name":"stderr","time":2336.58798039,"data":"07:28:42 | [W2] OK small-warehouse-6746417 6small-warehouse-with-office-space-7.zip (1,378,795B)\n"}
,{"stream_name":"stdout","time":2336.603014029,"data":"[W2] OK:587 SK:0 FL:17 | 604/1119 (54.0%) | 930/hr | 11h02m | Q:127\n"}
,{"stream_name":"stderr","time":2338.308598921,"data":"07:28:44 | [W0] OK parkour-stairs-6202524 parkour-stairs.mcworld (820,448B)\n"}
,{"stream_name":"stdout","time":2338.318751011,"data":"[W0] OK:588 SK:0 FL:17 | 605/1119 (54.1%) | 931/hr | 11h02m | Q:127\n"}
,{"stream_name":"stderr","time":2344.476219871,"data":"07:28:50 | [W4] Click fail the-call-stack-from-let-s-make-a-redstone-computer: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":2349.495592928,"data":"07:28:55 | [W1] OK pvp-arena-4689756 pvp-map.zip (1,925,994B)\n"}
,{"stream_name":"stdout","time":2349.524698408,"data":"[W1] OK:589 SK:0 FL:17 | 606/1119 (54.2%) | 928/hr | 11h01m | Q:124\n"}
,{"stream_name":"stderr","time":2352.225931764,"data":"07:28:58 | [W2] OK metro-station-one-java-amp-bedrock-edition metrostationone.schematic (6,308B)\n"}
,{"stream_name":"stdout","time":2352.249649433,"data":"[W2] OK:590 SK:0 FL:17 | 607/1119 (54.2%) | 928/hr | 11h01m | Q:123\n"}
,{"stream_name":"stderr","time":2353.756609949,"data":"07:29:00 | [W3] OK ye-olde-ravine yeolderavine.zip (12,876,133B)\n"}
,{"stream_name":"stdout","time":2353.777166508,"data":"[W3] OK:591 SK:0 FL:17 | 608/1119 (54.3%) | 929/hr | 11h01m | Q:123\n"}
,{"stream_name":"stderr","time":2355.621970568,"data":"07:29:01 | [W0] OK giant-angel-gate angel_gate10914102.schematic (9,356B)\n"}
,{"stream_name":"stdout","time":2355.631494688,"data":"[W0] OK:592 SK:0 FL:17 | 609/1119 (54.4%) | 930/hr | 11h01m | Q:123\n"}
,{"stream_name":"stdout","time":2361.591887049,"data":"[W4] OK:592 SK:0 FL:18 | 610/1119 (54.5%) | 927/hr | 11h01m | Q:122\n"}
,{"stream_name":"stderr","time":2367.907337786,"data":"07:29:14 | [W1] OK ahts-baylq-tugboat-schematic bayliq9110431.schematic (1,495B)\n"}
,{"stream_name":"stdout","time":2367.917381385,"data":"[W1] OK:593 SK:0 FL:18 | 611/1119 (54.6%) | 926/hr | 11h01m | Q:119\n"}
,{"stream_name":"stderr","time":2369.177336745,"data":"07:29:15 | [W2] OK medieval-gatehouse-5763212 medgatehouse.schem (3,472B)\n"}
,{"stream_name":"stdout","time":2369.191232745,"data":"[W2] OK:594 SK:0 FL:18 | 612/1119 (54.7%) | 927/hr | 11h01m | Q:119\n"}
,{"stream_name":"stderr","time":2372.970448553,"data":"07:29:19 | [W3] OK modern-house-download-4879761 modernhouse.schem (12,176B)\n"}
,{"stream_name":"stdout","time":2372.981543403,"data":"[W3] OK:595 SK:0 FL:18 | 613/1119 (54.8%) | 927/hr | 11h01m | Q:119\n"}
,{"stream_name":"stderr","time":2374.175026423,"data":"07:29:20 | [W0] OK fnaf-1-map-w-working-cameras fnaf-1-verison-1.mcworld (399,110B)\n"}
,{"stream_name":"stdout","time":2374.199378293,"data":"[W0] OK:596 SK:0 FL:18 | 614/1119 (54.9%) | 929/hr | 11h01m | Q:118\n"}
,{"stream_name":"stderr","time":2379.209861751,"data":"07:29:25 | [W4] OK mansion-2092266 palacenapoleonic.schematic (2,999B)\n"}
,{"stream_name":"stdout","time":2379.22902888,"data":"[W4] OK:597 SK:0 FL:18 | 615/1119 (55.0%) | 928/hr | 11h01m | Q:115\n"}
,{"stream_name":"stderr","time":2379.646223454,"data":"07:29:25 | [W2] OK mv-team-spirit team-spirit.schematic (10,043B)\n"}
,{"stream_name":"stdout","time":2379.661968323,"data":"[W2] OK:598 SK:0 FL:18 | 616/1119 (55.0%) | 929/hr | 11h01m | Q:115\n"}
,{"stream_name":"stderr","time":2381.604628361,"data":"07:29:27 | [W1] OK dunder-mifflin-scranton-branch-the-office dunder-mifflin.zip (1,517,619B)\n"}
,{"stream_name":"stdout","time":2381.625419451,"data":"[W1] OK:599 SK:0 FL:18 | 617/1119 (55.1%) | 930/hr | 11h01m | Q:115\n"}
,{"stream_name":"stderr","time":2383.925936594,"data":"07:29:30 | [W3] OK the-last-journey the-last-journey.zip (3,150,640B)\n"}
,{"stream_name":"stdout","time":2383.935193003,"data":"[W3] OK:600 SK:0 FL:18 | 618/1119 (55.2%) | 931/hr | 11h01m | Q:114\n"}
,{"stream_name":"stderr","time":2388.045128176,"data":"07:29:34 | [W0] OK lobby-de-castillo castle-e1690.zip (2,868,279B)\n"}
,{"stream_name":"stdout","time":2388.054850056,"data":"[W0] OK:601 SK:0 FL:18 | 619/1119 (55.3%) | 931/hr | 11h01m | Q:114\n"}
,{"stream_name":"stderr","time":2395.169139809,"data":"07:29:41 | [W4] OK yakhch-l-an-old-persian-cooling-tower yachtschal.zip (28,011B)\n"}
,{"stream_name":"stdout","time":2395.181570059,"data":"[W4] OK:602 SK:0 FL:18 | 620/1119 (55.4%) | 929/hr | 11h01m | Q:110\n"}
,{"stream_name":"stderr","time":2398.304238208,"data":"07:29:44 | [W2] OK mosque-of-suleyman-hortaji-effendi-salonika-rotunda-of-galerius mosque-of-suleyman-hortaji-effendi-rotunda.schematic (16,905B)\n"}
,{"stream_name":"stdout","time":2398.315706818,"data":"[W2] OK:603 SK:0 FL:18 | 621/1119 (55.5%) | 930/hr | 11h01m | Q:109\n"}
,{"stream_name":"stderr","time":2398.502770445,"data":"07:29:44 | [W1] OK giant-orca-pixel Orca_6271245.schematic (10,640B)\n"}
,{"stream_name":"stdout","time":2398.522819384,"data":"[W1] OK:604 SK:0 FL:18 | 622/1119 (55.6%) | 931/hr | 11h01m | Q:109\n"}
,{"stream_name":"stderr","time":2401.335451398,"data":"07:29:47 | [W3] OK small-nether-cottage kumara22-nether-cottage.schem (440B)\n"}
,{"stream_name":"stdout","time":2401.349566118,"data":"[W3] OK:605 SK:0 FL:18 | 623/1119 (55.7%) | 932/hr | 11h01m | Q:109\n"}
,{"stream_name":"stderr","time":2402.550558309,"data":"07:29:48 | [W0] OK wood-farm wood-farm.zip (19,230B)\n"}
,{"stream_name":"stdout","time":2402.561152578,"data":"[W0] OK:606 SK:0 FL:18 | 624/1119 (55.8%) | 933/hr | 11h01m | Q:109\n"}
,{"stream_name":"stderr","time":2408.080262486,"data":"07:29:54 | [W4] OK ah-64a-apache-attack-helicopter AH-64a-Apache.schematic (1,519B)\n"}
,{"stream_name":"stdout","time":2408.100857526,"data":"[W4] OK:607 SK:0 FL:18 | 625/1119 (55.9%) | 932/hr | 11h00m | Q:107\n"}
,{"stream_name":"stderr","time":2417.139070708,"data":"07:30:03 | [W3] OK floating-spiral-temple-for-ang333-s-event temple.zip (3,092,419B)\n"}
,{"stream_name":"stdout","time":2417.150601978,"data":"[W3] OK:608 SK:0 FL:18 | 626/1119 (55.9%) | 930/hr | 11h00m | Q:103\n"}
,{"stream_name":"stderr","time":2417.841052197,"data":"07:30:04 | [W2] OK pixel-assassians-creed assassians creed.schematic (2,348B)\n"}
,{"stream_name":"stdout","time":2417.853537177,"data":"[W2] OK:609 SK:0 FL:18 | 627/1119 (56.0%) | 931/hr | 11h00m | Q:103\n"}
,{"stream_name":"stderr","time":2418.305141659,"data":"07:30:04 | [W1] OK arbres-uniques map-arbre.zip (2,890,757B)\n"}
,{"stream_name":"stdout","time":2418.315123499,"data":"[W1] OK:610 SK:0 FL:18 | 628/1119 (56.1%) | 933/hr | 11h00m | Q:103\n"}
,{"stream_name":"stderr","time":2423.903065798,"data":"07:30:10 | [W0] OK airplane airplane_158776.schematic (3,707B)\n"}
,{"stream_name":"stdout","time":2423.910573598,"data":"[W0] OK:611 SK:0 FL:18 | 629/1119 (56.2%) | 932/hr | 11h00m | Q:103\n"}
,{"stream_name":"stderr","time":2425.02304403,"data":"07:30:11 | [W4] OK modern-villa-house-4 villa-4.schematic (7,429B)\n"}
,{"stream_name":"stdout","time":2425.03048659,"data":"[W4] OK:612 SK:0 FL:18 | 630/1119 (56.3%) | 933/hr | 11h00m | Q:103\n"}
,{"stream_name":"stderr","time":2433.246985003,"data":"07:30:19 | [W1] OK medieval-keep-3463761 medikeep9407531.schematic (4,020B)\n"}
,{"stream_name":"stdout","time":2433.263924473,"data":"[W1] OK:613 SK:0 FL:18 | 631/1119 (56.4%) | 931/hr | 11h00m | Q:100\n"}
,{"stream_name":"stderr","time":2436.852248684,"data":"07:30:23 | [W3] OK z-313-aewampc---airborne-early-warning-and-control-aircraft z-313aewc9904979.schematic (11,656B)\n"}
,{"stream_name":"stdout","time":2436.865556714,"data":"[W3] OK:614 SK:0 FL:18 | 632/1119 (56.5%) | 931/hr | 11h00m | Q:98\n"}
,{"stream_name":"stderr","time":2439.083599518,"data":"07:30:25 | [W2] OK spruce-house-4102043 spruce.zip (10,688,372B)\n"}
,{"stream_name":"stdout","time":2439.103976867,"data":"[W2] OK:615 SK:0 FL:18 | 633/1119 (56.6%) | 932/hr | 11h00m | Q:98\n"}
,{"stream_name":"stderr","time":2441.715041655,"data":"07:30:28 | [W4] OK redstone-1-minute-timer 1-min-timer-with-repeating-addon.schematic (1,504B)\n"}
,{"stream_name":"stdout","time":2441.726306714,"data":"[W4] OK:616 SK:0 FL:18 | 634/1119 (56.7%) | 932/hr | 11h00m | Q:97\n"}
,{"stream_name":"stderr","time":2442.447778353,"data":"07:30:28 | [W0] OK motierres-chorrol-house-from-scrolls fmhouse.schematic (2,889B)\n"}
,{"stream_name":"stdout","time":2442.493217272,"data":"[W0] OK:617 SK:0 FL:18 | 635/1119 (56.7%) | 934/hr | 11h00m | Q:97\n"}
,{"stream_name":"stderr","time":2445.963302424,"data":"07:30:32 | [W1] OK libraryshopwatertank-building-in-medieval-style Library-building-in-medieval-style-by-MaKuTa1991.schematic (7,309B)\n"}
,{"stream_name":"stdout","time":2445.973861494,"data":"[W1] OK:618 SK:0 FL:18 | 636/1119 (56.8%) | 934/hr | 11h00m | Q:96\n"}
,{"stream_name":"stderr","time":2451.289196207,"data":"07:30:37 | [W3] OK skywars-map-solar-system planets7917505.schematic (90,855B)\n"}
,{"stream_name":"stdout","time":2451.298951696,"data":"[W3] OK:619 SK:0 FL:18 | 637/1119 (56.9%) | 933/hr | 11h00m | Q:94\n"}
,{"stream_name":"stderr","time":2452.104624183,"data":"07:30:38 | [W2] OK scandinavian-lighthouse clipboard-1.schematic (37,118B)\n"}
,{"stream_name":"stdout","time":2452.115398243,"data":"[W2] OK:620 SK:0 FL:18 | 638/1119 (57.0%) | 934/hr | 11h00m | Q:93\n"}
,{"stream_name":"stderr","time":2457.928640838,"data":"07:30:44 | [W4] OK golden-statue-1865425 GoldenStatue.schematic (3,164B)\n"}
,{"stream_name":"stdout","time":2457.940655848,"data":"[W4] OK:621 SK:0 FL:18 | 639/1119 (57.1%) | 934/hr | 11h00m | Q:92\n"}
,{"stream_name":"stderr","time":2459.66702589,"data":"07:30:45 | [W0] OK battleship-zephra battleshipzephra7844720.schematic (5,426B)\n"}
,{"stream_name":"stdout","time":2459.677190669,"data":"[W0] OK:622 SK:0 FL:18 | 640/1119 (57.2%) | 934/hr | 11h00m | Q:91\n"}
,{"stream_name":"stderr","time":2462.868044777,"data":"07:30:49 | [W1] OK sunset-valley-pvp-with-download mcpwegoablecom---warzone.zip (4,024,915B)\n"}
,{"stream_name":"stdout","time":2462.883626857,"data":"[W1] OK:623 SK:0 FL:18 | 641/1119 (57.3%) | 935/hr | 11h00m | Q:90\n"}
,{"stream_name":"stderr","time":2465.988302766,"data":"07:30:52 | [W2] OK town-on-a-rock new-world-new-me-build-world.zip (11,198,467B)\n"}
,{"stream_name":"stdout","time":2466.001534196,"data":"[W2] OK:624 SK:0 FL:18 | 642/1119 (57.4%) | 935/hr | 10h59m | Q:90\n"}
,{"stream_name":"stderr","time":2467.112702118,"data":"07:30:53 | [W3] OK mack-pinnacle-day-cab-truck-with-download pinnacle.schem (2,924B)\n"}
,{"stream_name":"stdout","time":2467.121379618,"data":"[W3] OK:625 SK:0 FL:18 | 643/1119 (57.5%) | 936/hr | 10h59m | Q:89\n"}
,{"stream_name":"stderr","time":2471.818672071,"data":"07:30:58 | [W0] OK map-saleem-by-msr map-spleef-by-msr.zip (177,591B)\n"}
,{"stream_name":"stdout","time":2471.85100398,"data":"[W0] OK:626 SK:0 FL:18 | 644/1119 (57.6%) | 936/hr | 10h59m | Q:87\n"}
,{"stream_name":"stderr","time":2475.279107434,"data":"07:31:01 | [W4] OK side-raid-cannon-3-sec-80-c-range-5-c-float working-pensusideraidcannon.schematic (5,308B)\n"}
,{"stream_name":"stdout","time":2475.295220044,"data":"[W4] OK:627 SK:0 FL:18 | 645/1119 (57.6%) | 936/hr | 10h59m | Q:86\n"}
,{"stream_name":"stderr","time":2476.937704987,"data":"07:31:03 | [W1] OK cloud-waterfall-made-by-daqe waterfall-lobby-build.zip (836,685B)\n"}
,{"stream_name":"stdout","time":2476.951380627,"data":"[W1] OK:628 SK:0 FL:18 | 646/1119 (57.7%) | 937/hr | 10h59m | Q:85\n"}
,{"stream_name":"stderr","time":2481.577571031,"data":"07:31:07 | [W2] OK computer-setup computador.zip (455,142B)\n"}
,{"stream_name":"stdout","time":2481.589248161,"data":"[W2] OK:629 SK:0 FL:18 | 647/1119 (57.8%) | 936/hr | 10h59m | Q:85\n"}
,{"stream_name":"stderr","time":2482.744426092,"data":"07:31:09 | [W3] OK hunted-full-release-w10-mcpe hunted-1-3.mcworld (99,647B)\n"}
,{"stream_name":"stdout","time":2482.751033621,"data":"[W3] OK:630 SK:0 FL:18 | 648/1119 (57.9%) | 937/hr | 10h59m | Q:85\n"}
,{"stream_name":"stderr","time":2489.223110046,"data":"07:31:15 | [W0] OK 2000-hr-efficient-sugar-cane-farm sugar-cane-farm-wdl.zip (1,691,747B)\n"}
,{"stream_name":"stdout","time":2489.268806045,"data":"[W0] OK:631 SK:0 FL:18 | 649/1119 (58.0%) | 936/hr | 10h59m | Q:81\n"}
,{"stream_name":"stderr","time":2504.745204881,"data":"07:31:31 | [W4] OK tawi-island-i-tried-out-a-new-island-making-method clifftests.zip (2,681,993B)\n"}
,{"stream_name":"stdout","time":2504.772215811,"data":"[W4] OK:632 SK:0 FL:18 | 650/1119 (58.1%) | 932/hr | 10h59m | Q:79\n"}
,{"stream_name":"stderr","time":2504.944545258,"data":"07:31:31 | [W3] OK uffo-invasion uffo-invasion.schematic (10,407B)\n"}
,{"stream_name":"stdout","time":2504.966923248,"data":"[W3] OK:633 SK:0 FL:18 | 651/1119 (58.2%) | 933/hr | 10h59m | Q:79\n"}
,{"stream_name":"stderr","time":2506.968234415,"data":"07:31:33 | [W1] OK climb-mount-everest-ft-custom-mobs mount-everest-mini-game.zip (11,679,337B)\n"}
,{"stream_name":"stdout","time":2506.997492734,"data":"[W1] OK:634 SK:0 FL:18 | 652/1119 (58.3%) | 934/hr | 10h59m | Q:79\n"}
,{"stream_name":"stderr","time":2508.549951168,"data":"07:31:34 | [W2] OK a-nintendo-console-timeline-1985-2019 nintendo-console-timeline.zip (4,928,674B)\n"}
,{"stream_name":"stdout","time":2508.560724428,"data":"[W2] OK:635 SK:0 FL:18 | 653/1119 (58.4%) | 935/hr | 10h59m | Q:79\n"}
,{"stream_name":"stderr","time":2508.750494325,"data":"07:31:35 | [W0] OK chester-convention-center-c3 chester-convention-center-c3.zip (291,486B)\n"}
,{"stream_name":"stdout","time":2508.761083365,"data":"[W0] OK:636 SK:0 FL:18 | 654/1119 (58.4%) | 936/hr | 10h59m | Q:79\n"}
,{"stream_name":"stderr","time":2521.637660252,"data":"07:31:47 | [W4] OK witherstorm-legy-z-map witherstorm-legy-z-map.zip (9,767,613B)\n"}
,{"stream_name":"stdout","time":2521.656260891,"data":"[W4] OK:637 SK:0 FL:18 | 655/1119 (58.5%) | 933/hr | 10h59m | Q:74\n"}
,{"stream_name":"stderr","time":2522.191868413,"data":"07:31:48 | [W3] OK space-portal-gateway-station space-gateway-portal.zip (1,407,946B)\n"}
,{"stream_name":"stdout","time":2522.211993542,"data":"[W3] OK:638 SK:0 FL:18 | 656/1119 (58.6%) | 934/hr | 10h59m | Q:74\n"}
,{"stream_name":"stderr","time":2525.470555829,"data":"07:31:51 | [W1] OK commie-block-pack-schematic-download panelhousepack.schem (29,509B)\n"}
,{"stream_name":"stdout","time":2525.490997969,"data":"[W1] OK:639 SK:0 FL:18 | 657/1119 (58.7%) | 934/hr | 10h58m | Q:74\n"}
,{"stream_name":"stderr","time":2526.366025045,"data":"07:31:52 | [W2] OK survival-games-map-for-the-event survival-games-map.zip (4,258,207B)\n"}
,{"stream_name":"stdout","time":2526.389375804,"data":"[W2] OK:640 SK:0 FL:18 | 658/1119 (58.8%) | 935/hr | 10h58m | Q:74\n"}
,{"stream_name":"stderr","time":2528.277948343,"data":"07:31:54 | [W0] OK afk-frog-light-farm-java-1-20-1 afk-frog-west.schem (1,117B)\n"}
,{"stream_name":"stdout","time":2528.287746213,"data":"[W0] OK:641 SK:0 FL:18 | 659/1119 (58.9%) | 936/hr | 10h58m | Q:74\n"}
,{"stream_name":"stderr","time":2533.626145185,"data":"07:31:59 | [W4] OK hms-agamemnon HMSAgamemnon.schematic (8,058B)\n"}
,{"stream_name":"stdout","time":2533.643356435,"data":"[W4] OK:642 SK:0 FL:18 | 660/1119 (59.0%) | 936/hr | 10h58m | Q:70\n"}
,{"stream_name":"stderr","time":2537.782691257,"data":"07:32:04 | [W1] OK every-block-5052370 every-block.zip (1,027,921B)\n"}
,{"stream_name":"stdout","time":2537.808570397,"data":"[W1] OK:643 SK:0 FL:18 | 661/1119 (59.1%) | 936/hr | 10h58m | Q:70\n"}
,{"stream_name":"stderr","time":2540.452790943,"data":"07:32:06 | [W2] OK hand-held-castle handheld-castle.schem (77,663B)\n"}
,{"stream_name":"stdout","time":2540.473969593,"data":"[W2] OK:644 SK:0 FL:18 | 662/1119 (59.2%) | 936/hr | 10h58m | Q:69\n"}
,{"stream_name":"stderr","time":2542.718835746,"data":"07:32:09 | [W3] OK angelic-church angelic-church.zip (1,747,192B)\n"}
,{"stream_name":"stdout","time":2542.730457376,"data":"[W3] OK:645 SK:0 FL:18 | 663/1119 (59.2%) | 937/hr | 10h58m | Q:69\n"}
,{"stream_name":"stderr","time":2544.646793095,"data":"07:32:10 | [W0] OK house-with-garden-5833618 house-with-garden.zip (3,547,238B)\n"}
,{"stream_name":"stdout","time":2544.656734395,"data":"[W0] OK:646 SK:0 FL:18 | 664/1119 (59.3%) | 937/hr | 10h58m | Q:69\n"}
,{"stream_name":"stderr","time":2554.460339454,"data":"07:32:20 | [W4] OK server-spawn-download-1-8x server-spawn.schematic (8,211B)\n"}
,{"stream_name":"stdout","time":2554.482511483,"data":"[W4] OK:647 SK:0 FL:18 | 665/1119 (59.4%) | 935/hr | 10h58m | Q:64\n"}
,{"stream_name":"stderr","time":2556.877494524,"data":"07:32:23 | [W2] OK poseidon-3750485 poseidon10348282.schematic (51,636B)\n"}
,{"stream_name":"stdout","time":2556.892756564,"data":"[W2] OK:648 SK:0 FL:18 | 666/1119 (59.5%) | 936/hr | 10h58m | Q:64\n"}
,{"stream_name":"stderr","time":2558.505832168,"data":"07:32:24 | [W1] OK behemoth-refit nikombehemothrefit28412963.schematic (20,266B)\n"}
,{"stream_name":"stdout","time":2558.524383617,"data":"[W1] OK:649 SK:0 FL:18 | 667/1119 (59.6%) | 936/hr | 10h58m | Q:64\n"}
,{"stream_name":"stderr","time":2560.323991108,"data":"07:32:26 | [W3] OK steam-locomotive-2988911 steamlocomotive7849528.schematic (2,189B)\n"}
,{"stream_name":"stdout","time":2560.340792388,"data":"[W3] OK:650 SK:0 FL:18 | 668/1119 (59.7%) | 937/hr | 10h58m | Q:64\n"}
,{"stream_name":"stderr","time":2561.549798867,"data":"07:32:27 | [W0] OK free-cave-spawn spawn8126777.schematic (85,266B)\n"}
,{"stream_name":"stdout","time":2561.560635337,"data":"[W0] OK:651 SK:0 FL:18 | 669/1119 (59.8%) | 938/hr | 10h58m | Q:64\n"}
,{"stream_name":"stderr","time":2569.534355996,"data":"07:32:35 | [W4] OK smallville-1-7-10 smallville-map-1-7-10.zip (2,054,784B)\n"}
,{"stream_name":"stdout","time":2569.545688206,"data":"[W4] OK:652 SK:0 FL:18 | 670/1119 (59.9%) | 937/hr | 10h58m | Q:60\n"}
,{"stream_name":"stderr","time":2577.391648538,"data":"07:32:43 | [W1] OK storage-build storage-build.zip (10,597B)\n"}
,{"stream_name":"stdout","time":2577.409957377,"data":"[W1] OK:653 SK:0 FL:18 | 671/1119 (60.0%) | 935/hr | 10h58m | Q:59\n"}
,{"stream_name":"stderr","time":2578.321007712,"data":"07:32:44 | [W3] OK iluminated-luxury-yacht illuminatedbeta9163044.schematic (5,121B)\n"}
,{"stream_name":"stdout","time":2578.336045942,"data":"[W3] OK:654 SK:0 FL:18 | 672/1119 (60.1%) | 936/hr | 10h58m | Q:59\n"}
,{"stream_name":"stderr","time":2578.754018005,"data":"07:32:45 | [W0] OK medieval-house-6902622 medieval-house.schem (5,525B)\n"}
,{"stream_name":"stdout","time":2578.768747635,"data":"[W0] OK:655 SK:0 FL:18 | 673/1119 (60.1%) | 937/hr | 10h58m | Q:59\n"}
,{"stream_name":"stderr","time":2579.11146932,"data":"07:32:45 | [W2] OK pizza-pixel-art-4648569 pizza.zip (3,503,961B)\n"}
,{"stream_name":"stdout","time":2579.120094689,"data":"[W2] OK:656 SK:0 FL:18 | 674/1119 (60.2%) | 939/hr | 10h58m | Q:59\n"}
,{"stream_name":"stderr","time":2587.784138617,"data":"07:32:54 | [W4] OK 6680-vehicles-650-unique-in-3-4-wide-demo carpackdemo.schem (5,649B)\n"}
,{"stream_name":"stdout","time":2587.796710257,"data":"[W4] OK:657 SK:0 FL:18 | 675/1119 (60.3%) | 937/hr | 10h57m | Q:56\n"}
,{"stream_name":"stderr","time":2590.688175029,"data":"07:32:56 | [W1] OK cyberpunk-city-6775779 cyberpunk-city-schematic.schem (65,336B)\n"}
,{"stream_name":"stdout","time":2590.705456009,"data":"[W1] OK:658 SK:0 FL:18 | 676/1119 (60.4%) | 937/hr | 10h57m | Q:54\n"}
,{"stream_name":"stderr","time":2591.002846904,"data":"07:32:57 | [W3] OK suburban-house-3-4382903 house-15.schematic (2,738B)\n"}
,{"stream_name":"stdout","time":2591.020125114,"data":"[W3] OK:659 SK:0 FL:18 | 677/1119 (60.5%) | 939/hr | 10h57m | Q:54\n"}
,{"stream_name":"stderr","time":2597.328805491,"data":"07:33:03 | [W0] OK db-white-tower dbwhitetower.zip (8,363B)\n"}
,{"stream_name":"stdout","time":2597.35445553,"data":"[W0] OK:660 SK:0 FL:18 | 678/1119 (60.6%) | 938/hr | 10h57m | Q:53\n"}
,{"stream_name":"stderr","time":2598.480943272,"data":"07:33:04 | [W2] OK toaga-skyship toaga-skyship.zip (474,262B)\n"}
,{"stream_name":"stdout","time":2598.497214642,"data":"[W2] OK:661 SK:0 FL:18 | 679/1119 (60.7%) | 939/hr | 10h57m | Q:53\n"}
,{"stream_name":"stderr","time":2601.883558766,"data":"07:33:08 | [W4] OK simple-helicopter-4378079 plot-3.schematic (4,608B)\n"}
,{"stream_name":"stdout","time":2601.903063056,"data":"[W4] OK:662 SK:0 FL:18 | 680/1119 (60.8%) | 939/hr | 10h57m | Q:51\n"}
,{"stream_name":"stderr","time":2606.995263152,"data":"07:33:13 | [W1] OK dark-necromancer-6403357 dark-necromancer300.zip (476,368B)\n"}
,{"stream_name":"stdout","time":2607.005980772,"data":"[W1] OK:663 SK:0 FL:18 | 681/1119 (60.9%) | 938/hr | 10h57m | Q:50\n"}
,{"stream_name":"stderr","time":2611.294800082,"data":"07:33:17 | [W0] OK parf-of-angels-template-legacy angelpark.schem (16,335B)\n"}
,{"stream_name":"stdout","time":2611.323482271,"data":"[W0] OK:664 SK:0 FL:18 | 682/1119 (60.9%) | 938/hr | 10h57m | Q:48\n"}
,{"stream_name":"stderr","time":2617.060610458,"data":"07:33:23 | [W2] OK first-organicflower-3262719 skygropefleur8725465.schematic (3,729B)\n"}
,{"stream_name":"stdout","time":2617.080259447,"data":"[W2] OK:665 SK:0 FL:18 | 683/1119 (61.0%) | 938/hr | 10h57m | Q:47\n"}
,{"stream_name":"stderr","time":2617.458163791,"data":"07:33:23 | [W4] OK soviet-walls RA2SovietWalls.schematic (331B)\n"}
,{"stream_name":"stdout","time":2617.50215897,"data":"[W4] OK:666 SK:0 FL:18 | 684/1119 (61.1%) | 939/hr | 10h57m | Q:47\n"}
,{"stream_name":"stderr","time":2620.944024844,"data":"07:33:27 | [W1] OK hello-neighbor-2-alpha-2-in-minecraft hello-neighbor-2-pre-alpha-1.zip (3,111,866B)\n"}
,{"stream_name":"stdout","time":2620.963988514,"data":"[W1] OK:667 SK:0 FL:18 | 685/1119 (61.2%) | 939/hr | 10h57m | Q:47\n"}
,{"stream_name":"stderr","time":2621.786992141,"data":"07:33:28 | [W3] Click fail tnt-tunnel-bore-update-for-minecraft-1-13-and-1-14-uses-function-files: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":2632.434735713,"data":"07:33:38 | [W0] OK valheim-troll-schematics trolls.zip (959,394B)\n"}
,{"stream_name":"stdout","time":2632.452986272,"data":"[W0] OK:668 SK:0 FL:18 | 686/1119 (61.3%) | 936/hr | 10h57m | Q:43\n"}
,{"stream_name":"stderr","time":2632.810699985,"data":"07:33:39 | [W2] OK castle-spawn-2270909 zamekspawn.schematic (53,590B)\n"}
,{"stream_name":"stdout","time":2632.836340885,"data":"[W2] OK:669 SK:0 FL:18 | 687/1119 (61.4%) | 937/hr | 10h57m | Q:43\n"}
,{"stream_name":"stderr","time":2632.846507405,"data":"07:33:39 | [W4] OK fireworks-lab---easily-create-fireworks BreakForth Fireworks Lab.schematic (5,358B)\n"}
,{"stream_name":"stdout","time":2632.864274335,"data":"[W4] OK:670 SK:0 FL:18 | 688/1119 (61.5%) | 939/hr | 10h57m | Q:43\n"}
,{"stream_name":"stderr","time":2634.467110266,"data":"07:33:40 | [W1] OK left4dead2 Left4Dead2.zip (260,968B)\n"}
,{"stream_name":"stdout","time":2634.475037886,"data":"[W1] OK:671 SK:0 FL:18 | 689/1119 (61.6%) | 940/hr | 10h57m | Q:43\n"}
,{"stream_name":"stderr","time":2643.186551693,"data":"07:33:49 | [W3] OK tnt-tunnel-bore-update-for-minecraft-1-13-and-1-14-uses-function-files tunnel-bore-update-1-14-x.zip (6,335,151B)\n"}
,{"stream_name":"stdout","time":2643.205238423,"data":"[W3] OK:672 SK:0 FL:18 | 690/1119 (61.7%) | 938/hr | 10h57m | Q:40\n"}
,{"stream_name":"stderr","time":2646.126777823,"data":"07:33:52 | [W4] OK old-west-town-in-painted-desert-along-river rtfezrywcaa.zip (2,968,777B)\n"}
,{"stream_name":"stdout","time":2646.150535423,"data":"[W4] OK:673 SK:0 FL:18 | 691/1119 (61.8%) | 938/hr | 10h56m | Q:39\n"}
,{"stream_name":"stderr","time":2649.453732994,"data":"07:33:55 | [W2] OK hello-neighbor-frame-cutom-map hello-neighbor-frame.mcworld (356,502B)\n"}
,{"stream_name":"stdout","time":2649.462402415,"data":"[W2] OK:674 SK:0 FL:18 | 692/1119 (61.8%) | 938/hr | 10h56m | Q:39\n"}
,{"stream_name":"stderr","time":2650.899053824,"data":"07:33:57 | [W1] OK fire-emblem-pvpmap Fire-Emblem-PVP-Arena_Map.zip (269,872B)\n"}
,{"stream_name":"stdout","time":2650.910629884,"data":"[W1] OK:675 SK:0 FL:18 | 693/1119 (61.9%) | 939/hr | 10h56m | Q:39\n"}
,{"stream_name":"stderr","time":2654.243228446,"data":"07:34:00 | [W0] OK carrie-out-burgers-and-breakfast-restaurant-remake-java-schematic-and-bedrock carrie-out-remake-1-2.zip (13,897,637B)\n"}
,{"stream_name":"stdout","time":2654.254979627,"data":"[W0] OK:676 SK:0 FL:18 | 694/1119 (62.0%) | 939/hr | 10h56m | Q:37\n"}
,{"stream_name":"stderr","time":2657.167095806,"data":"07:34:03 | [W3] OK phosphophyllite-pixel-art-map-from-houseki-no-kuni phos-map-1-0.zip (918,920B)\n"}
,{"stream_name":"stdout","time":2657.182867016,"data":"[W3] OK:677 SK:0 FL:18 | 695/1119 (62.1%) | 940/hr | 10h56m | Q:37\n"}
,{"stream_name":"stderr","time":2657.573737808,"data":"07:34:03 | [W4] OK hello-neighbor-custom-house-in-minecraft-full-release hello-neighbor-mc-map-update.zip (1,203,532B)\n"}
,{"stream_name":"stdout","time":2657.601440739,"data":"[W4] OK:678 SK:0 FL:18 | 696/1119 (62.2%) | 941/hr | 10h56m | Q:37\n"}
,{"stream_name":"stderr","time":2666.768661359,"data":"07:34:13 | [W1] OK mobius-art-gallery mobiusartgallery8752977.schematic (10,282B)\n"}
,{"stream_name":"stdout","time":2666.777306649,"data":"[W1] OK:679 SK:0 FL:18 | 697/1119 (62.3%) | 939/hr | 10h56m | Q:33\n"}
,{"stream_name":"stderr","time":2667.204213252,"data":"07:34:13 | [W2] OK small-medieval-cottage Smallcottage.schematic (4,402B)\n"}
,{"stream_name":"stdout","time":2667.224486222,"data":"[W2] OK:680 SK:0 FL:18 | 698/1119 (62.4%) | 940/hr | 10h56m | Q:33\n"}
,{"stream_name":"stderr","time":2673.971381927,"data":"07:34:20 | [W4] OK server-hub-4-portals-3402925 4phub9220224.schematic (240,071B)\n"}
,{"stream_name":"stdout","time":2673.988402357,"data":"[W4] OK:681 SK:0 FL:18 | 699/1119 (62.5%) | 939/hr | 10h56m | Q:31\n"}
,{"stream_name":"stderr","time":2675.90560421,"data":"07:34:22 | [W0] OK towny-exalted-museum-amp-archives towny-exalted-museum.zip (14,700,151B)\n"}
,{"stream_name":"stdout","time":2675.92549555,"data":"[W0] OK:682 SK:0 FL:18 | 700/1119 (62.6%) | 940/hr | 10h56m | Q:31\n"}
,{"stream_name":"stderr","time":2676.982851126,"data":"07:34:23 | [W3] OK outlast-d3-demo-remastered-1-19-1 outlast-e3-demo.zip (6,787,570B)\n"}
,{"stream_name":"stdout","time":2676.996293546,"data":"[W3] OK:683 SK:0 FL:18 | 701/1119 (62.6%) | 941/hr | 10h56m | Q:31\n"}
,{"stream_name":"stderr","time":2678.674680918,"data":"07:34:24 | [W2] OK sushi-1428752 Sushi_.schematic (30,026B)\n"}
,{"stream_name":"stdout","time":2678.694574418,"data":"[W2] OK:684 SK:0 FL:18 | 702/1119 (62.7%) | 942/hr | 10h56m | Q:30\n"}
,{"stream_name":"stderr","time":2682.913745906,"data":"07:34:29 | [W1] OK labyrinth-ii labyrinth2.schematic (16,099B)\n"}
,{"stream_name":"stdout","time":2682.925075456,"data":"[W1] OK:685 SK:0 FL:18 | 703/1119 (62.8%) | 941/hr | 10h56m | Q:30\n"}
,{"stream_name":"stderr","time":2692.971758872,"data":"07:34:39 | [W4] OK utility-helicopter-ima-htu-9 imahtu-9v28854931.schematic (3,330B)\n"}
,{"stream_name":"stdout","time":2692.993749992,"data":"[W4] OK:686 SK:0 FL:18 | 704/1119 (62.9%) | 939/hr | 10h56m | Q:25\n"}
,{"stream_name":"stderr","time":2696.380483805,"data":"07:34:42 | [W0] OK 18th-century-woodland-ship-madeup 18th-Century-Woodland-Ship-Made-by-Jose831.schematic (7,419B)\n"}
,{"stream_name":"stdout","time":2696.403451565,"data":"[W0] OK:687 SK:0 FL:18 | 705/1119 (63.0%) | 939/hr | 10h56m | Q:25\n"}
,{"stream_name":"stderr","time":2696.905363528,"data":"07:34:43 | [W2] OK survival-diamond-house Survival-diamond-house.zip (3,189,621B)\n"}
,{"stream_name":"stdout","time":2696.926221288,"data":"[W2] OK:688 SK:0 FL:18 | 706/1119 (63.1%) | 941/hr | 10h56m | Q:25\n"}
,{"stream_name":"stderr","time":2697.29138469,"data":"07:34:43 | [W3] OK legend-of-ace first-map-i-made.zip (5,383,568B)\n"}
,{"stream_name":"stdout","time":2697.301609511,"data":"[W3] OK:689 SK:0 FL:18 | 707/1119 (63.2%) | 942/hr | 10h56m | Q:25\n"}
,{"stream_name":"stderr","time":2698.082108766,"data":"07:34:44 | [W1] OK kulosaari-secondary-school kulosaari-secondary-school.zip (4,266,092B)\n"}
,{"stream_name":"stdout","time":2698.091187656,"data":"[W1] OK:690 SK:0 FL:18 | 708/1119 (63.3%) | 943/hr | 10h56m | Q:25\n"}
,{"stream_name":"stderr","time":2705.749910056,"data":"07:34:52 | [W4] OK legit-flippin-bike bike.schematic (15,805B)\n"}
,{"stream_name":"stdout","time":2705.772667766,"data":"[W4] OK:691 SK:0 FL:18 | 709/1119 (63.4%) | 941/hr | 10h55m | Q:20\n"}
,{"stream_name":"stderr","time":2713.255985085,"data":"07:34:59 | [W3] OK dodge-ram-5500-brush-fire-truck-with-download brush.schem (3,219B)\n"}
,{"stream_name":"stdout","time":2713.267149606,"data":"[W3] OK:692 SK:0 FL:18 | 710/1119 (63.4%) | 940/hr | 10h55m | Q:19\n"}
,{"stream_name":"stderr","time":2713.273528125,"data":"07:34:59 | [W2] OK minecraft-birthday-special-jeroameasf thewookietree-jeromesbdayspecial9948729.schematic (110,290B)\n"}
,{"stream_name":"stdout","time":2713.285837106,"data":"[W2] OK:693 SK:0 FL:18 | 711/1119 (63.5%) | 942/hr | 10h55m | Q:19\n"}
,{"stream_name":"stderr","time":2715.3937441,"data":"07:35:01 | [W1] OK ah-88-hellhound-from-patlabor ah88-hellhound.schem (3,144B)\n"}
,{"stream_name":"stdout","time":2715.41778455,"data":"[W1] OK:694 SK:0 FL:18 | 712/1119 (63.6%) | 942/hr | 10h55m | Q:19\n"}
,{"stream_name":"stderr","time":2716.242383835,"data":"07:35:02 | [W0] OK boeing-b-17-flying-fortress-2155921 B-17.schematic (1,091B)\n"}
,{"stream_name":"stdout","time":2716.255399435,"data":"[W0] OK:695 SK:0 FL:18 | 713/1119 (63.7%) | 943/hr | 10h55m | Q:19\n"}
,{"stream_name":"stderr","time":2717.997201496,"data":"07:35:04 | [W4] OK ss-city-of-detroit-iii-4-1-download diii.schematic (143,882B)\n"}
,{"stream_name":"stdout","time":2718.024103637,"data":"[W4] OK:696 SK:0 FL:18 | 714/1119 (63.8%) | 944/hr | 10h55m | Q:19\n"}
,{"stream_name":"stderr","time":2729.257267231,"data":"07:35:15 | [W1] OK hotel-638314 hotel_1794700.schematic (1,315B)\n"}
,{"stream_name":"stdout","time":2729.275013552,"data":"[W1] OK:697 SK:0 FL:18 | 715/1119 (63.9%) | 941/hr | 10h55m | Q:14\n"}
,{"stream_name":"stderr","time":2731.526313567,"data":"07:35:17 | [W3] OK 1-5-1-scale-ge-c44-9w-diesel-electric-locomotives-cnw-sp-amp-up ge-c44-9w.zip (42,709B)\n"}
,{"stream_name":"stdout","time":2731.545925727,"data":"[W3] OK:698 SK:0 FL:18 | 716/1119 (64.0%) | 942/hr | 10h55m | Q:14\n"}
,{"stream_name":"stderr","time":2733.710055631,"data":"07:35:19 | [W2] OK antonia-graza-ghost-ship antonia-graza.zip (2,017,099B)\n"}
,{"stream_name":"stdout","time":2733.719985411,"data":"[W2] OK:699 SK:0 FL:18 | 717/1119 (64.1%) | 942/hr | 10h55m | Q:14\n"}
,{"stream_name":"stderr","time":2734.641024427,"data":"07:35:20 | [W0] OK haus-house head-1-0-in-spanish-and-inglish.zip (4,958B)\n"}
,{"stream_name":"stdout","time":2734.654730147,"data":"[W0] OK:700 SK:0 FL:18 | 718/1119 (64.2%) | 943/hr | 10h55m | Q:14\n"}
,{"stream_name":"stdout","time":2734.656013117,"data":"\n"}
,{"stream_name":"stdout","time":2734.656031417,"data":"==================================================\n"}
,{"stream_name":"stdout","time":2734.656037687,"data":"SUMMARY: 1091 done | 18 failed | 0 skipped | 1 pending\n"}
,{"stream_name":"stdout","time":2734.656043407,"data":"Progress CSV: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":2734.656048757,"data":"==================================================\n"}
,{"stream_name":"stdout","time":2734.656077197,"data":"\n"}
,{"stream_name":"stderr","time":2734.656216717,"data":"07:35:20 | [W0] Think pause 29s\n"}
,{"stream_name":"stderr","time":2739.715378511,"data":"07:35:26 | [W1] OK whiteout-statue-pmc-member-statue-08 whiteout.zip (1,711,747B)\n"}
,{"stream_name":"stdout","time":2739.731002791,"data":"[W1] OK:701 SK:0 FL:18 | 719/1119 (64.3%) | 943/hr | 10h55m | Q:12\n"}
,{"stream_name":"stderr","time":2742.926497222,"data":"07:35:29 | [W3] OK chandlery Chandler---TheAvatar.schematic (1,083B)\n"}
,{"stream_name":"stdout","time":2742.951101382,"data":"[W3] OK:702 SK:0 FL:18 | 720/1119 (64.3%) | 943/hr | 10h55m | Q:11\n"}
,{"stream_name":"stderr","time":2747.1902236,"data":"07:35:33 | [W2] OK lonely-farmhouse-video-download kleines_farmhaus_xd8146204.zip (4,745,933B)\n"}
,{"stream_name":"stdout","time":2747.211545201,"data":"[W2] OK:703 SK:0 FL:18 | 721/1119 (64.4%) | 943/hr | 10h55m | Q:11\n"}
,{"stream_name":"stderr","time":2750.679191224,"data":"07:35:36 | [W4] Click fail escape-the-laboratory-1: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":2756.13260747,"data":"07:35:42 | [W1] OK 181hotel-the-bedrock-lounge BedrockLounge.schematic (4,278B)\n"}
,{"stream_name":"stdout","time":2756.14689298,"data":"[W1] OK:704 SK:0 FL:18 | 722/1119 (64.5%) | 941/hr | 10h55m | Q:8\n"}
,{"stream_name":"stderr","time":2760.026132755,"data":"07:35:46 | [W3] OK ruined-survival-home-horror-themed-build ruined-home.zip (10,079,641B)\n"}
,{"stream_name":"stdout","time":2760.068977706,"data":"[W3] OK:705 SK:0 FL:18 | 723/1119 (64.6%) | 941/hr | 10h55m | Q:8\n"}
,{"stream_name":"stderr","time":2760.316578657,"data":"07:35:46 | [W2] OK mob-and-pvp-arena stadium.schematic (6,640B)\n"}
,{"stream_name":"stdout","time":2760.334062307,"data":"[W2] OK:706 SK:0 FL:18 | 724/1119 (64.7%) | 942/hr | 10h55m | Q:8\n"}
,{"stream_name":"stderr","time":2772.966793011,"data":"07:35:59 | [W3] Done. Success=706\n"}
,{"stream_name":"stderr","time":2773.900374457,"data":"07:36:00 | [W0] OK cruiser-avrora 1917-2022.zip (7,767,098B)\n"}
,{"stream_name":"stdout","time":2773.917463477,"data":"[W0] OK:707 SK:0 FL:18 | 725/1119 (64.8%) | 939/hr | 10h54m | Q:4\n"}
,{"stream_name":"stderr","time":2775.081874275,"data":"07:36:01 | [W1] OK nordic-big-detailed-medieval-house--download medievaldetailhouse.schematic (3,843B)\n"}
,{"stream_name":"stdout","time":2775.099981075,"data":"[W1] OK:708 SK:0 FL:18 | 726/1119 (64.9%) | 940/hr | 10h54m | Q:4\n"}
,{"stream_name":"stderr","time":2775.75325494,"data":"07:36:02 | [W2] OK kms-z-46 z-46.schem (7,537B)\n"}
,{"stream_name":"stdout","time":2775.77699227,"data":"[W2] OK:709 SK:0 FL:18 | 727/1119 (65.0%) | 941/hr | 10h54m | Q:4\n"}
,{"stream_name":"stderr","time":2782.410498113,"data":"07:36:08 | [W1] Done. Success=709\n"}
,{"stream_name":"stderr","time":2783.660494442,"data":"07:36:09 | [W0] Done. Success=709\n"}
,{"stream_name":"stderr","time":2784.866392422,"data":"07:36:11 | [W2] Done. Success=709\n"}
,{"stream_name":"stderr","time":2786.734609475,"data":"07:36:13 | [W4] Click fail escape-the-laboratory-1: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stderr","time":2821.496589756,"data":"07:36:47 | [W4] Click fail escape-the-laboratory-1: Timeout 18000ms exceeded while waiting for event \"\n"}
,{"stream_name":"stdout","time":2838.606941488,"data":"[W4] OK:709 SK:0 FL:19 | 728/1119 (65.1%) | 920/hr | 10h53m | Q:1\n"}
,{"stream_name":"stderr","time":2850.151079345,"data":"07:37:16 | [W4] Done. Success=709\n"}
,{"stream_name":"stdout","time":2851.496112183,"data":"\n"}
,{"stream_name":"stdout","time":2851.496158843,"data":"=======================================================\n"}
,{"stream_name":"stdout","time":2851.496165323,"data":" DONE | 46.5 min | RUNNING\n"}
,{"stream_name":"stdout","time":2851.496186093,"data":" SUCCESS : 1,100\n"}
,{"stream_name":"stdout","time":2851.496188333,"data":" FAILED : 19\n"}
,{"stream_name":"stdout","time":2851.496190223,"data":" SKIPPED : 0\n"}
,{"stream_name":"stdout","time":2851.496192103,"data":" Progress CSV saved to: /kaggle/working/pmc_out/progress.csv\n"}
,{"stream_name":"stdout","time":2851.496194163,"data":"=======================================================\n"}
,{"stream_name":"stdout","time":2851.496196093,"data":"\n"}
,{"stream_name":"stderr","time":2853.755245029,"data":"/usr/local/lib/python3.12/dist-packages/mistune.py:435: SyntaxWarning: invalid escape sequence '\\|'\n"}
,{"stream_name":"stderr","time":2853.755292259,"data":" cells[i][c] = re.sub('\\\\\\\\\\|', '|', cell)\n"}
,{"stream_name":"stderr","time":2854.193392142,"data":"/usr/local/lib/python3.12/dist-packages/nbconvert/filters/filter_links.py:36: SyntaxWarning: invalid escape sequence '\\_'\n"}
,{"stream_name":"stderr","time":2854.193439142,"data":" text = re.sub(r'_', '\\_', text) # Escape underscores in display text\n"}
,{"stream_name":"stderr","time":2855.285595859,"data":"[NbConvertApp] Converting notebook __script__.ipynb to html\n"}
,{"stream_name":"stderr","time":2857.04373238,"data":"[NbConvertApp] Writing 759594 bytes to __results__.html\n"}
] |