Spaces:
Configuration error
Configuration error
File size: 213,048 Bytes
03e7fda | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 | id,activity_id,project_id,date,reported_progress,daily_increment,image_uploaded,weather_event,crew_size,notes,has_issue_logged
upd_000001,act_001_01,proj_001,2022-01-10,16.0,15.98,True,True,11,Good progress β crew at full strength.,False
upd_000002,act_001_01,proj_001,2022-01-11,25.6,9.59,False,False,6,Safety toolbox talk held; no incidents.,False
upd_000003,act_001_01,proj_001,2022-01-12,35.4,9.83,True,True,20,Safety toolbox talk held; no incidents.,False
upd_000004,act_001_01,proj_001,2022-01-13,43.7,8.27,True,False,21,Overtime shift completed to recover schedule.,True
upd_000005,act_001_01,proj_001,2022-01-14,57.5,13.81,False,False,4,Night shift deployed to catch up.,False
upd_000006,act_001_01,proj_001,2022-01-15,62.3,4.76,True,False,8,Weather caused brief stoppage.,False
upd_000007,act_001_01,proj_001,2022-01-16,78.6,16.33,True,False,7,Waiting for subcontractor sign-off.,False
upd_000008,act_001_01,proj_001,2022-01-17,87.8,9.17,False,False,18,Client walkthrough conducted.,False
upd_000009,act_001_01,proj_001,2022-01-18,100.0,12.25,True,False,13,All tasks on track per daily plan.,True
upd_000010,act_001_02,proj_001,2022-01-19,11.0,11.03,True,False,10,Productivity affected by heat; hydration breaks added.,False
upd_000011,act_001_02,proj_001,2022-01-20,20.4,9.36,False,False,6,All tasks on track per daily plan.,True
upd_000012,act_001_02,proj_001,2022-01-21,23.6,3.25,True,False,15,Good progress β crew at full strength.,False
upd_000013,act_001_02,proj_001,2022-01-22,31.0,7.41,True,False,6,Safety toolbox talk held; no incidents.,False
upd_000014,act_001_02,proj_001,2022-01-23,40.1,9.11,True,False,18,Overtime shift completed to recover schedule.,False
upd_000015,act_001_02,proj_001,2022-01-24,45.6,5.48,True,False,11,Rework required on small section.,False
upd_000016,act_001_02,proj_001,2022-01-25,53.7,8.15,True,False,5,Night shift deployed to catch up.,False
upd_000017,act_001_02,proj_001,2022-01-26,61.4,7.72,True,False,22,Equipment breakdown caused 2-hour downtime.,False
upd_000018,act_001_02,proj_001,2022-01-27,68.8,7.44,True,False,18,Good progress β crew at full strength.,False
upd_000019,act_001_02,proj_001,2022-01-28,75.8,6.96,True,False,12,Productivity affected by heat; hydration breaks added.,False
upd_000020,act_001_02,proj_001,2022-01-29,84.4,8.6,True,False,11,Good progress β crew at full strength.,False
upd_000021,act_001_02,proj_001,2022-01-30,95.1,10.68,True,False,7,Good progress β crew at full strength.,False
upd_000022,act_001_02,proj_001,2022-01-31,99.9,4.82,True,False,6,Overtime shift completed to recover schedule.,False
upd_000023,act_001_03,proj_001,2022-02-01,7.6,7.59,True,False,21,All tasks on track per daily plan.,False
upd_000024,act_001_03,proj_001,2022-02-02,13.3,5.68,True,False,21,Night shift deployed to catch up.,False
upd_000025,act_001_03,proj_001,2022-02-03,16.6,3.28,True,False,17,Good progress β crew at full strength.,False
upd_000026,act_001_03,proj_001,2022-02-04,25.0,8.43,False,False,12,Client walkthrough conducted.,False
upd_000027,act_001_03,proj_001,2022-02-05,32.7,7.69,True,False,13,All tasks on track per daily plan.,False
upd_000028,act_001_03,proj_001,2022-02-06,35.2,2.47,True,False,9,Client walkthrough conducted.,False
upd_000029,act_001_03,proj_001,2022-02-07,39.7,4.51,False,False,14,Material quality check done; passed.,False
upd_000030,act_001_03,proj_001,2022-02-08,41.9,2.21,False,False,13,Weather caused brief stoppage.,True
upd_000031,act_001_03,proj_001,2022-02-09,43.6,1.66,False,False,6,Productivity affected by heat; hydration breaks added.,True
upd_000032,act_001_03,proj_001,2022-02-10,54.5,10.88,False,False,8,Good progress β crew at full strength.,False
upd_000033,act_001_03,proj_001,2022-02-11,59.1,4.57,True,False,20,All tasks on track per daily plan.,False
upd_000034,act_001_03,proj_001,2022-02-12,66.7,7.6,False,False,10,Productivity affected by heat; hydration breaks added.,False
upd_000035,act_001_03,proj_001,2022-02-13,73.3,6.56,True,False,18,Equipment breakdown caused 2-hour downtime.,False
upd_000036,act_001_03,proj_001,2022-02-14,79.1,5.78,True,False,14,Work progressing as planned.,False
upd_000037,act_001_03,proj_001,2022-02-15,81.6,2.49,True,False,6,Productivity affected by heat; hydration breaks added.,False
upd_000038,act_001_03,proj_001,2022-02-16,84.2,2.59,False,False,14,Minor delays due to material delivery.,False
upd_000039,act_001_03,proj_001,2022-02-17,91.1,6.92,True,False,21,Good progress β crew at full strength.,False
upd_000040,act_001_03,proj_001,2022-02-18,100.0,8.97,True,False,11,Night shift deployed to catch up.,False
upd_000041,act_001_03,proj_001,2022-02-19,100.0,0.12,True,False,17,Waiting for subcontractor sign-off.,False
upd_000042,act_001_04,proj_001,2022-02-20,11.3,11.26,False,False,7,Work progressing as planned.,False
upd_000043,act_001_04,proj_001,2022-02-21,21.0,9.66,False,False,11,Weather caused brief stoppage.,False
upd_000044,act_001_04,proj_001,2022-02-22,32.6,11.64,True,False,12,Material quality check done; passed.,False
upd_000045,act_001_04,proj_001,2022-02-23,46.4,13.85,True,False,21,Minor delays due to material delivery.,False
upd_000046,act_001_04,proj_001,2022-02-24,55.8,9.42,False,False,6,Equipment breakdown caused 2-hour downtime.,True
upd_000047,act_001_04,proj_001,2022-02-25,65.2,9.42,True,False,19,Weather caused brief stoppage.,False
upd_000048,act_001_04,proj_001,2022-02-26,79.2,13.99,True,False,4,Overtime shift completed to recover schedule.,False
upd_000049,act_001_04,proj_001,2022-02-27,91.1,11.94,True,False,17,Productivity affected by heat; hydration breaks added.,False
upd_000050,act_001_04,proj_001,2022-02-28,99.9,8.82,True,False,19,Good progress β crew at full strength.,False
upd_000051,act_001_05,proj_001,2022-02-20,5.7,5.71,True,False,21,Work progressing as planned.,False
upd_000052,act_001_05,proj_001,2022-02-21,12.6,6.9,True,True,20,Equipment breakdown caused 2-hour downtime.,False
upd_000053,act_001_05,proj_001,2022-02-22,22.8,10.25,False,False,6,All tasks on track per daily plan.,False
upd_000054,act_001_05,proj_001,2022-02-23,25.4,2.56,True,False,11,Overtime shift completed to recover schedule.,False
upd_000055,act_001_05,proj_001,2022-02-24,32.3,6.86,True,False,5,Safety toolbox talk held; no incidents.,True
upd_000056,act_001_05,proj_001,2022-02-25,38.7,6.43,True,False,14,Equipment breakdown caused 2-hour downtime.,True
upd_000057,act_001_05,proj_001,2022-02-26,44.2,5.52,True,False,12,Overtime shift completed to recover schedule.,False
upd_000058,act_001_05,proj_001,2022-02-27,47.6,3.36,True,False,6,Work progressing as planned.,False
upd_000059,act_001_05,proj_001,2022-02-28,53.1,5.54,False,False,6,Client walkthrough conducted.,False
upd_000060,act_001_05,proj_001,2022-03-01,67.3,14.18,False,False,6,Equipment breakdown caused 2-hour downtime.,False
upd_000061,act_001_05,proj_001,2022-03-02,72.4,5.08,True,False,21,Productivity affected by heat; hydration breaks added.,False
upd_000062,act_001_05,proj_001,2022-03-03,77.2,4.85,False,False,20,Work progressing as planned.,False
upd_000063,act_001_05,proj_001,2022-03-04,80.0,2.82,False,False,7,Equipment breakdown caused 2-hour downtime.,False
upd_000064,act_001_05,proj_001,2022-03-05,88.8,8.77,True,False,21,Good progress β crew at full strength.,False
upd_000065,act_001_05,proj_001,2022-03-06,93.7,4.93,True,False,10,Rework required on small section.,False
upd_000066,act_001_05,proj_001,2022-03-07,99.9,6.24,True,False,5,Minor delays due to material delivery.,False
upd_000067,act_001_06,proj_001,2022-02-20,11.2,11.18,True,False,14,Night shift deployed to catch up.,False
upd_000068,act_001_06,proj_001,2022-02-21,19.0,7.77,True,False,18,Client walkthrough conducted.,False
upd_000069,act_001_06,proj_001,2022-02-22,22.4,3.41,True,False,8,Client walkthrough conducted.,False
upd_000070,act_001_06,proj_001,2022-02-23,33.9,11.54,True,False,17,Good progress β crew at full strength.,True
upd_000071,act_001_06,proj_001,2022-02-24,40.6,6.74,False,False,5,Equipment breakdown caused 2-hour downtime.,True
upd_000072,act_001_06,proj_001,2022-02-25,45.8,5.2,True,False,15,Night shift deployed to catch up.,False
upd_000073,act_001_06,proj_001,2022-02-26,54.3,8.48,False,False,8,Equipment breakdown caused 2-hour downtime.,False
upd_000074,act_001_06,proj_001,2022-02-27,65.8,11.5,False,False,9,Equipment breakdown caused 2-hour downtime.,False
upd_000075,act_001_06,proj_001,2022-02-28,70.2,4.41,False,False,17,Night shift deployed to catch up.,False
upd_000076,act_001_06,proj_001,2022-03-01,73.6,3.43,True,False,9,Night shift deployed to catch up.,False
upd_000077,act_001_06,proj_001,2022-03-02,79.1,5.46,True,False,19,Weather caused brief stoppage.,False
upd_000078,act_001_06,proj_001,2022-03-03,82.6,3.49,True,False,11,Weather caused brief stoppage.,False
upd_000079,act_001_06,proj_001,2022-03-04,84.2,1.61,True,False,6,Night shift deployed to catch up.,True
upd_000080,act_001_06,proj_001,2022-03-05,85.6,1.44,True,False,21,Waiting for subcontractor sign-off.,False
upd_000081,act_001_06,proj_001,2022-03-06,95.3,9.67,False,False,9,Safety toolbox talk held; no incidents.,False
upd_000082,act_001_06,proj_001,2022-03-07,95.3,0.0,True,False,17,Waiting for subcontractor sign-off.,False
upd_000083,act_001_06,proj_001,2022-03-08,100.0,4.66,True,False,20,Minor delays due to material delivery.,False
upd_000084,act_001_07,proj_001,2022-02-20,8.3,8.32,True,False,17,Work progressing as planned.,False
upd_000085,act_001_07,proj_001,2022-02-21,15.6,7.27,True,False,10,Waiting for subcontractor sign-off.,False
upd_000086,act_001_07,proj_001,2022-02-22,26.4,10.85,False,False,14,Rework required on small section.,False
upd_000087,act_001_07,proj_001,2022-02-23,30.9,4.51,True,False,13,Rework required on small section.,False
upd_000088,act_001_07,proj_001,2022-02-24,37.9,7.01,True,False,8,Weather caused brief stoppage.,False
upd_000089,act_001_07,proj_001,2022-02-25,44.3,6.41,True,False,9,Safety toolbox talk held; no incidents.,False
upd_000090,act_001_07,proj_001,2022-02-26,49.8,5.45,False,False,13,Inspection checkpoint cleared.,False
upd_000091,act_001_07,proj_001,2022-02-27,57.8,8.01,True,False,14,Material quality check done; passed.,False
upd_000092,act_001_07,proj_001,2022-02-28,66.4,8.61,True,False,9,Rework required on small section.,False
upd_000093,act_001_07,proj_001,2022-03-01,69.2,2.81,True,False,14,Minor delays due to material delivery.,True
upd_000094,act_001_07,proj_001,2022-03-02,79.5,10.31,True,False,11,Night shift deployed to catch up.,False
upd_000095,act_001_07,proj_001,2022-03-03,94.9,15.42,True,True,19,Safety toolbox talk held; no incidents.,False
upd_000096,act_001_07,proj_001,2022-03-04,99.9,5.02,True,False,22,Weather caused brief stoppage.,False
upd_000097,act_001_08,proj_001,2022-03-08,4.1,4.06,True,False,8,Rework required on small section.,False
upd_000098,act_001_08,proj_001,2022-03-09,12.5,8.43,False,False,7,Night shift deployed to catch up.,False
upd_000099,act_001_08,proj_001,2022-03-10,19.9,7.38,False,False,20,Material quality check done; passed.,False
upd_000100,act_001_08,proj_001,2022-03-11,33.1,13.19,False,False,18,Good progress β crew at full strength.,True
upd_000101,act_001_08,proj_001,2022-03-12,41.0,7.9,False,False,14,Night shift deployed to catch up.,False
upd_000102,act_001_08,proj_001,2022-03-13,47.1,6.12,True,False,20,Overtime shift completed to recover schedule.,False
upd_000103,act_001_08,proj_001,2022-03-14,54.7,7.6,False,False,19,Material quality check done; passed.,False
upd_000104,act_001_08,proj_001,2022-03-15,61.3,6.63,True,False,20,Material quality check done; passed.,False
upd_000105,act_001_08,proj_001,2022-03-16,73.4,12.09,True,False,13,Weather caused brief stoppage.,False
upd_000106,act_001_08,proj_001,2022-03-17,82.4,9.0,True,False,8,Good progress β crew at full strength.,False
upd_000107,act_001_08,proj_001,2022-03-18,91.3,8.9,True,False,6,Overtime shift completed to recover schedule.,False
upd_000108,act_001_08,proj_001,2022-03-19,100.0,8.71,True,False,10,All tasks on track per daily plan.,False
upd_000109,act_001_09,proj_001,2022-03-20,3.9,3.86,True,False,4,All tasks on track per daily plan.,False
upd_000110,act_001_09,proj_001,2022-03-21,14.5,10.58,True,False,15,Inspection checkpoint cleared.,False
upd_000111,act_001_09,proj_001,2022-03-22,16.4,1.94,False,False,17,Client walkthrough conducted.,False
upd_000112,act_001_09,proj_001,2022-03-23,22.3,5.91,True,False,11,Material quality check done; passed.,False
upd_000113,act_001_09,proj_001,2022-03-24,28.5,6.22,True,False,14,Rework required on small section.,False
upd_000114,act_001_09,proj_001,2022-03-25,35.3,6.83,True,False,18,Equipment breakdown caused 2-hour downtime.,False
upd_000115,act_001_09,proj_001,2022-03-26,40.3,5.01,True,False,16,Safety toolbox talk held; no incidents.,True
upd_000116,act_001_09,proj_001,2022-03-27,44.5,4.15,True,True,8,All tasks on track per daily plan.,False
upd_000117,act_001_09,proj_001,2022-03-28,48.4,3.89,True,True,10,Material quality check done; passed.,False
upd_000118,act_001_09,proj_001,2022-03-29,50.6,2.2,True,False,17,Inspection checkpoint cleared.,False
upd_000119,act_001_09,proj_001,2022-03-30,54.5,3.94,False,False,5,Waiting for subcontractor sign-off.,False
upd_000120,act_001_09,proj_001,2022-03-31,58.0,3.47,False,False,5,Night shift deployed to catch up.,False
upd_000121,act_001_09,proj_001,2022-04-01,64.4,6.43,False,False,8,Weather caused brief stoppage.,True
upd_000122,act_001_09,proj_001,2022-04-02,68.5,4.11,True,False,10,Material quality check done; passed.,True
upd_000123,act_001_09,proj_001,2022-04-03,74.1,5.64,True,False,7,Night shift deployed to catch up.,False
upd_000124,act_001_09,proj_001,2022-04-04,74.1,0.0,True,False,4,Equipment breakdown caused 2-hour downtime.,False
upd_000125,act_001_09,proj_001,2022-04-05,77.5,3.41,False,False,16,Productivity affected by heat; hydration breaks added.,False
upd_000126,act_001_09,proj_001,2022-04-06,81.8,4.26,False,False,11,Minor delays due to material delivery.,False
upd_000127,act_001_09,proj_001,2022-04-07,85.8,4.02,True,False,7,Night shift deployed to catch up.,False
upd_000128,act_001_09,proj_001,2022-04-08,90.9,5.11,True,False,17,Rework required on small section.,False
upd_000129,act_001_09,proj_001,2022-04-09,99.9,9.0,True,False,17,All tasks on track per daily plan.,False
upd_000130,act_001_10,proj_001,2022-03-09,6.1,6.05,True,False,18,Productivity affected by heat; hydration breaks added.,False
upd_000131,act_001_10,proj_001,2022-03-10,11.0,4.86,True,False,12,Safety toolbox talk held; no incidents.,False
upd_000132,act_001_10,proj_001,2022-03-11,15.1,4.14,True,False,17,All tasks on track per daily plan.,False
upd_000133,act_001_10,proj_001,2022-03-12,22.9,7.85,False,False,6,Inspection checkpoint cleared.,False
upd_000134,act_001_10,proj_001,2022-03-13,32.8,9.94,True,False,16,Waiting for subcontractor sign-off.,False
upd_000135,act_001_10,proj_001,2022-03-14,40.1,7.34,True,False,10,Waiting for subcontractor sign-off.,True
upd_000136,act_001_10,proj_001,2022-03-15,44.6,4.47,False,False,12,Client walkthrough conducted.,False
upd_000137,act_001_10,proj_001,2022-03-16,51.0,6.44,True,False,17,Material quality check done; passed.,True
upd_000138,act_001_10,proj_001,2022-03-17,52.6,1.58,True,False,19,Material quality check done; passed.,False
upd_000139,act_001_10,proj_001,2022-03-18,62.5,9.94,True,False,11,Inspection checkpoint cleared.,False
upd_000140,act_001_10,proj_001,2022-03-19,72.0,9.52,True,False,15,Overtime shift completed to recover schedule.,False
upd_000141,act_001_10,proj_001,2022-03-20,77.1,5.08,True,False,18,Inspection checkpoint cleared.,False
upd_000142,act_001_10,proj_001,2022-03-21,84.8,7.68,False,False,14,Minor delays due to material delivery.,False
upd_000143,act_001_10,proj_001,2022-03-22,92.8,8.05,True,False,10,Weather caused brief stoppage.,False
upd_000144,act_001_10,proj_001,2022-03-23,99.9,7.05,True,False,20,Safety toolbox talk held; no incidents.,False
upd_000145,act_001_11,proj_001,2022-03-26,4.7,4.67,True,False,11,Waiting for subcontractor sign-off.,False
upd_000146,act_001_11,proj_001,2022-03-27,11.5,6.83,True,True,12,Work progressing as planned.,False
upd_000147,act_001_11,proj_001,2022-03-28,21.1,9.61,True,False,8,Rework required on small section.,False
upd_000148,act_001_11,proj_001,2022-03-29,29.4,8.33,False,False,22,Inspection checkpoint cleared.,False
upd_000149,act_001_11,proj_001,2022-03-30,32.0,2.62,True,False,5,Inspection checkpoint cleared.,False
upd_000150,act_001_11,proj_001,2022-03-31,41.0,8.98,False,False,16,Material quality check done; passed.,False
upd_000151,act_001_11,proj_001,2022-04-01,47.6,6.57,True,False,8,Night shift deployed to catch up.,True
upd_000152,act_001_11,proj_001,2022-04-02,59.0,11.37,False,False,7,Client walkthrough conducted.,False
upd_000153,act_001_11,proj_001,2022-04-03,65.9,6.92,False,False,11,Night shift deployed to catch up.,False
upd_000154,act_001_11,proj_001,2022-04-04,74.1,8.17,True,False,22,Overtime shift completed to recover schedule.,False
upd_000155,act_001_11,proj_001,2022-04-05,78.4,4.28,True,False,7,Night shift deployed to catch up.,False
upd_000156,act_001_11,proj_001,2022-04-06,89.4,10.97,True,False,9,Weather caused brief stoppage.,False
upd_000157,act_001_11,proj_001,2022-04-07,100.0,10.68,True,False,18,Productivity affected by heat; hydration breaks added.,False
upd_000158,act_001_12,proj_001,2022-04-08,8.1,8.08,True,False,13,Productivity affected by heat; hydration breaks added.,False
upd_000159,act_001_12,proj_001,2022-04-09,18.0,9.87,True,False,12,Night shift deployed to catch up.,False
upd_000160,act_001_12,proj_001,2022-04-10,24.6,6.56,False,False,10,Overtime shift completed to recover schedule.,False
upd_000161,act_001_12,proj_001,2022-04-11,30.8,6.15,True,False,12,All tasks on track per daily plan.,True
upd_000162,act_001_12,proj_001,2022-04-12,38.5,7.71,False,True,22,Equipment breakdown caused 2-hour downtime.,False
upd_000163,act_001_12,proj_001,2022-04-13,45.6,7.05,True,False,16,Inspection checkpoint cleared.,False
upd_000164,act_001_12,proj_001,2022-04-14,49.2,3.63,True,False,5,Equipment breakdown caused 2-hour downtime.,False
upd_000165,act_001_12,proj_001,2022-04-15,55.6,6.36,True,False,6,Weather caused brief stoppage.,False
upd_000166,act_001_12,proj_001,2022-04-16,61.3,5.69,True,False,4,Night shift deployed to catch up.,False
upd_000167,act_001_12,proj_001,2022-04-17,65.7,4.4,True,False,9,Material quality check done; passed.,False
upd_000168,act_001_12,proj_001,2022-04-18,72.6,6.87,True,False,22,Overtime shift completed to recover schedule.,False
upd_000169,act_001_12,proj_001,2022-04-19,76.1,3.55,True,False,15,Overtime shift completed to recover schedule.,False
upd_000170,act_001_12,proj_001,2022-04-20,80.1,3.96,False,False,14,Overtime shift completed to recover schedule.,False
upd_000171,act_001_12,proj_001,2022-04-21,86.2,6.1,False,False,21,Work progressing as planned.,False
upd_000172,act_001_12,proj_001,2022-04-22,91.6,5.35,True,False,16,All tasks on track per daily plan.,False
upd_000173,act_001_12,proj_001,2022-04-23,96.2,4.65,True,False,21,Material quality check done; passed.,False
upd_000174,act_001_12,proj_001,2022-04-24,100.0,4.03,True,False,19,Rework required on small section.,False
upd_000175,act_001_13,proj_001,2022-04-28,2.9,2.93,True,True,8,Equipment breakdown caused 2-hour downtime.,False
upd_000176,act_001_13,proj_001,2022-04-29,9.5,6.64,True,False,4,Rework required on small section.,False
upd_000177,act_001_13,proj_001,2022-04-30,19.4,9.87,True,False,21,Work progressing as planned.,False
upd_000178,act_001_13,proj_001,2022-05-01,26.2,6.78,False,False,7,Material quality check done; passed.,False
upd_000179,act_001_13,proj_001,2022-05-02,26.2,0.0,True,False,13,Client walkthrough conducted.,False
upd_000180,act_001_13,proj_001,2022-05-03,30.4,4.18,True,False,19,Weather caused brief stoppage.,False
upd_000181,act_001_13,proj_001,2022-05-04,31.7,1.29,True,False,20,Productivity affected by heat; hydration breaks added.,False
upd_000182,act_001_13,proj_001,2022-05-05,35.7,4.02,True,False,17,Waiting for subcontractor sign-off.,False
upd_000183,act_001_13,proj_001,2022-05-06,37.5,1.82,False,False,13,Productivity affected by heat; hydration breaks added.,False
upd_000184,act_001_13,proj_001,2022-05-07,44.9,7.45,False,False,19,All tasks on track per daily plan.,False
upd_000185,act_001_13,proj_001,2022-05-08,49.7,4.78,True,False,21,Night shift deployed to catch up.,False
upd_000186,act_001_13,proj_001,2022-05-09,54.2,4.49,True,False,10,Productivity affected by heat; hydration breaks added.,False
upd_000187,act_001_13,proj_001,2022-05-10,60.3,6.09,False,False,17,Work progressing as planned.,False
upd_000188,act_001_13,proj_001,2022-05-11,69.0,8.7,False,False,16,Overtime shift completed to recover schedule.,False
upd_000189,act_001_13,proj_001,2022-05-12,77.5,8.48,True,False,8,Material quality check done; passed.,False
upd_000190,act_001_13,proj_001,2022-05-13,82.3,4.81,False,False,14,All tasks on track per daily plan.,False
upd_000191,act_001_13,proj_001,2022-05-14,86.8,4.49,True,False,18,Work progressing as planned.,True
upd_000192,act_001_13,proj_001,2022-05-15,90.8,3.95,True,False,8,Minor delays due to material delivery.,False
upd_000193,act_001_13,proj_001,2022-05-16,94.5,3.72,True,False,16,Rework required on small section.,False
upd_000194,act_001_13,proj_001,2022-05-17,100.0,5.49,True,False,21,Overtime shift completed to recover schedule.,True
upd_000195,act_001_14,proj_001,2022-05-18,12.2,12.25,False,False,19,All tasks on track per daily plan.,False
upd_000196,act_001_14,proj_001,2022-05-19,16.2,4.03,True,False,13,Weather caused brief stoppage.,False
upd_000197,act_001_14,proj_001,2022-05-20,21.7,5.47,True,False,7,Material quality check done; passed.,False
upd_000198,act_001_14,proj_001,2022-05-21,32.9,11.18,True,False,14,Night shift deployed to catch up.,False
upd_000199,act_001_14,proj_001,2022-05-22,43.3,10.4,True,False,11,Client walkthrough conducted.,True
upd_000200,act_001_14,proj_001,2022-05-23,52.5,9.2,True,False,9,Minor delays due to material delivery.,False
upd_000201,act_001_14,proj_001,2022-05-24,64.4,11.93,True,False,19,Equipment breakdown caused 2-hour downtime.,False
upd_000202,act_001_14,proj_001,2022-05-25,70.2,5.79,True,False,18,Inspection checkpoint cleared.,False
upd_000203,act_001_14,proj_001,2022-05-26,84.0,13.77,True,False,13,Rework required on small section.,False
upd_000204,act_001_14,proj_001,2022-05-27,91.5,7.52,False,False,22,Inspection checkpoint cleared.,False
upd_000205,act_001_14,proj_001,2022-05-28,100.0,8.46,True,False,13,Weather caused brief stoppage.,False
upd_000206,act_001_15,proj_001,2022-05-29,11.9,11.94,True,False,16,Safety toolbox talk held; no incidents.,False
upd_000207,act_001_15,proj_001,2022-05-30,17.3,5.39,True,False,4,All tasks on track per daily plan.,False
upd_000208,act_001_15,proj_001,2022-05-31,31.3,13.97,True,False,5,Equipment breakdown caused 2-hour downtime.,False
upd_000209,act_001_15,proj_001,2022-06-01,43.3,11.96,False,False,13,Night shift deployed to catch up.,False
upd_000210,act_001_15,proj_001,2022-06-02,57.8,14.53,True,False,10,Safety toolbox talk held; no incidents.,False
upd_000211,act_001_15,proj_001,2022-06-03,74.1,16.35,False,False,8,Rework required on small section.,False
upd_000212,act_001_15,proj_001,2022-06-04,89.3,15.21,True,False,18,Work progressing as planned.,True
upd_000213,act_001_15,proj_001,2022-06-05,100.0,10.66,True,False,13,Waiting for subcontractor sign-off.,False
upd_000214,act_002_01,proj_002,2022-03-01,12.5,12.47,True,False,21,Equipment breakdown caused 2-hour downtime.,False
upd_000215,act_002_01,proj_002,2022-03-02,24.1,11.61,False,False,9,Inspection checkpoint cleared.,False
upd_000216,act_002_01,proj_002,2022-03-03,36.4,12.33,False,False,13,Productivity affected by heat; hydration breaks added.,False
upd_000217,act_002_01,proj_002,2022-03-04,51.6,15.21,True,False,6,Good progress β crew at full strength.,False
upd_000218,act_002_01,proj_002,2022-03-05,63.1,11.5,True,False,16,All tasks on track per daily plan.,False
upd_000219,act_002_01,proj_002,2022-03-06,75.1,12.05,False,False,4,Inspection checkpoint cleared.,False
upd_000220,act_002_01,proj_002,2022-03-07,87.2,12.11,True,False,12,Safety toolbox talk held; no incidents.,False
upd_000221,act_002_01,proj_002,2022-03-08,99.9,12.72,True,False,11,Material quality check done; passed.,False
upd_000222,act_002_02,proj_002,2022-03-10,11.7,11.74,True,False,11,Rework required on small section.,True
upd_000223,act_002_02,proj_002,2022-03-11,19.2,7.53,False,False,13,Rework required on small section.,True
upd_000224,act_002_02,proj_002,2022-03-12,27.2,7.99,False,False,13,Material quality check done; passed.,False
upd_000225,act_002_02,proj_002,2022-03-13,36.5,9.34,True,False,16,Material quality check done; passed.,True
upd_000226,act_002_02,proj_002,2022-03-14,41.4,4.94,True,False,21,Overtime shift completed to recover schedule.,False
upd_000227,act_002_02,proj_002,2022-03-15,50.0,8.65,False,False,7,All tasks on track per daily plan.,False
upd_000228,act_002_02,proj_002,2022-03-16,54.6,4.59,False,False,5,Productivity affected by heat; hydration breaks added.,False
upd_000229,act_002_02,proj_002,2022-03-17,63.9,9.34,False,False,15,Minor delays due to material delivery.,False
upd_000230,act_002_02,proj_002,2022-03-18,69.4,5.55,False,False,15,Work progressing as planned.,False
upd_000231,act_002_02,proj_002,2022-03-19,77.0,7.62,True,False,18,Minor delays due to material delivery.,False
upd_000232,act_002_02,proj_002,2022-03-20,84.1,7.13,True,False,4,Work progressing as planned.,False
upd_000233,act_002_02,proj_002,2022-03-21,90.5,6.44,True,False,22,Weather caused brief stoppage.,False
upd_000234,act_002_02,proj_002,2022-03-22,99.6,9.13,True,False,10,All tasks on track per daily plan.,True
upd_000235,act_002_03,proj_002,2022-03-23,6.9,6.85,True,False,4,Inspection checkpoint cleared.,False
upd_000236,act_002_03,proj_002,2022-03-24,16.3,9.45,True,False,12,Night shift deployed to catch up.,False
upd_000237,act_002_03,proj_002,2022-03-25,28.1,11.83,True,False,4,Waiting for subcontractor sign-off.,False
upd_000238,act_002_03,proj_002,2022-03-26,29.7,1.56,True,False,9,Inspection checkpoint cleared.,False
upd_000239,act_002_03,proj_002,2022-03-27,35.8,6.12,True,False,6,Material quality check done; passed.,True
upd_000240,act_002_03,proj_002,2022-03-28,41.1,5.25,True,False,18,Client walkthrough conducted.,False
upd_000241,act_002_03,proj_002,2022-03-29,41.1,0.0,False,False,20,Inspection checkpoint cleared.,False
upd_000242,act_002_03,proj_002,2022-03-30,47.7,6.57,True,False,19,All tasks on track per daily plan.,False
upd_000243,act_002_03,proj_002,2022-03-31,55.0,7.34,True,False,18,Minor delays due to material delivery.,False
upd_000244,act_002_03,proj_002,2022-04-01,63.0,8.03,True,False,8,Inspection checkpoint cleared.,False
upd_000245,act_002_03,proj_002,2022-04-02,70.7,7.67,True,False,16,Safety toolbox talk held; no incidents.,False
upd_000246,act_002_03,proj_002,2022-04-03,74.8,4.05,True,False,7,Night shift deployed to catch up.,False
upd_000247,act_002_03,proj_002,2022-04-04,77.8,2.96,True,False,21,Productivity affected by heat; hydration breaks added.,False
upd_000248,act_002_03,proj_002,2022-04-05,78.7,0.89,False,False,17,Waiting for subcontractor sign-off.,False
upd_000249,act_002_03,proj_002,2022-04-06,80.9,2.15,False,False,14,Overtime shift completed to recover schedule.,False
upd_000250,act_002_03,proj_002,2022-04-07,85.9,5.01,False,False,19,Minor delays due to material delivery.,False
upd_000251,act_002_03,proj_002,2022-04-08,87.8,1.89,True,False,15,Night shift deployed to catch up.,True
upd_000252,act_002_03,proj_002,2022-04-09,98.5,10.73,False,True,21,Waiting for subcontractor sign-off.,False
upd_000253,act_002_03,proj_002,2022-04-10,100.0,1.63,False,False,17,All tasks on track per daily plan.,False
upd_000254,act_002_04,proj_002,2022-04-11,16.2,16.19,True,True,13,Waiting for subcontractor sign-off.,False
upd_000255,act_002_04,proj_002,2022-04-12,27.0,10.85,True,False,19,Weather caused brief stoppage.,True
upd_000256,act_002_04,proj_002,2022-04-13,37.1,10.14,True,False,7,Night shift deployed to catch up.,False
upd_000257,act_002_04,proj_002,2022-04-14,44.2,7.12,True,False,21,Night shift deployed to catch up.,False
upd_000258,act_002_04,proj_002,2022-04-15,59.1,14.91,True,False,4,Safety toolbox talk held; no incidents.,False
upd_000259,act_002_04,proj_002,2022-04-16,67.3,8.25,True,False,9,Inspection checkpoint cleared.,False
upd_000260,act_002_04,proj_002,2022-04-17,75.7,8.37,True,False,4,Good progress β crew at full strength.,False
upd_000261,act_002_04,proj_002,2022-04-18,87.8,12.06,True,False,8,Productivity affected by heat; hydration breaks added.,False
upd_000262,act_002_04,proj_002,2022-04-19,99.9,12.11,False,True,10,Overtime shift completed to recover schedule.,False
upd_000263,act_002_05,proj_002,2022-04-11,8.3,8.3,True,False,14,Night shift deployed to catch up.,False
upd_000264,act_002_05,proj_002,2022-04-12,14.3,5.99,False,False,8,Good progress β crew at full strength.,False
upd_000265,act_002_05,proj_002,2022-04-13,21.2,6.89,True,True,18,Rework required on small section.,False
upd_000266,act_002_05,proj_002,2022-04-14,31.9,10.74,True,False,10,Night shift deployed to catch up.,False
upd_000267,act_002_05,proj_002,2022-04-15,39.3,7.38,True,False,22,Material quality check done; passed.,False
upd_000268,act_002_05,proj_002,2022-04-16,44.6,5.34,True,False,5,Work progressing as planned.,False
upd_000269,act_002_05,proj_002,2022-04-17,50.3,5.73,False,False,12,Inspection checkpoint cleared.,False
upd_000270,act_002_05,proj_002,2022-04-18,56.1,5.81,False,True,9,Good progress β crew at full strength.,False
upd_000271,act_002_05,proj_002,2022-04-19,63.8,7.68,True,False,15,Minor delays due to material delivery.,False
upd_000272,act_002_05,proj_002,2022-04-20,71.1,7.33,True,False,18,Equipment breakdown caused 2-hour downtime.,False
upd_000273,act_002_05,proj_002,2022-04-21,76.8,5.75,True,False,16,Productivity affected by heat; hydration breaks added.,True
upd_000274,act_002_05,proj_002,2022-04-22,81.9,5.09,True,False,14,Good progress β crew at full strength.,False
upd_000275,act_002_05,proj_002,2022-04-23,87.0,5.07,False,False,15,Minor delays due to material delivery.,False
upd_000276,act_002_05,proj_002,2022-04-24,93.6,6.64,True,False,16,Client walkthrough conducted.,False
upd_000277,act_002_05,proj_002,2022-04-25,99.8,6.24,False,False,11,Waiting for subcontractor sign-off.,True
upd_000278,act_002_06,proj_002,2022-04-12,10.5,10.53,True,False,20,Client walkthrough conducted.,False
upd_000279,act_002_06,proj_002,2022-04-13,16.8,6.33,True,False,8,Weather caused brief stoppage.,False
upd_000280,act_002_06,proj_002,2022-04-14,18.9,2.06,True,False,8,Night shift deployed to catch up.,True
upd_000281,act_002_06,proj_002,2022-04-15,26.6,7.7,False,False,19,Material quality check done; passed.,False
upd_000282,act_002_06,proj_002,2022-04-16,33.1,6.54,True,False,22,Rework required on small section.,False
upd_000283,act_002_06,proj_002,2022-04-17,42.5,9.39,False,False,14,Good progress β crew at full strength.,False
upd_000284,act_002_06,proj_002,2022-04-18,46.2,3.69,True,False,12,Safety toolbox talk held; no incidents.,False
upd_000285,act_002_06,proj_002,2022-04-19,48.9,2.68,True,False,18,Work progressing as planned.,True
upd_000286,act_002_06,proj_002,2022-04-20,52.1,3.17,True,False,6,Safety toolbox talk held; no incidents.,True
upd_000287,act_002_06,proj_002,2022-04-21,60.0,7.88,True,False,5,Material quality check done; passed.,False
upd_000288,act_002_06,proj_002,2022-04-22,65.1,5.08,True,False,19,Client walkthrough conducted.,False
upd_000289,act_002_06,proj_002,2022-04-23,74.8,9.69,True,False,14,Productivity affected by heat; hydration breaks added.,False
upd_000290,act_002_06,proj_002,2022-04-24,78.6,3.77,True,False,18,Material quality check done; passed.,True
upd_000291,act_002_06,proj_002,2022-04-25,87.1,8.51,True,False,13,Overtime shift completed to recover schedule.,False
upd_000292,act_002_06,proj_002,2022-04-26,93.7,6.56,True,False,14,Minor delays due to material delivery.,False
upd_000293,act_002_06,proj_002,2022-04-27,100.0,6.41,True,False,12,Productivity affected by heat; hydration breaks added.,False
upd_000294,act_002_07,proj_002,2022-04-11,6.6,6.57,True,False,8,Waiting for subcontractor sign-off.,False
upd_000295,act_002_07,proj_002,2022-04-12,16.6,10.0,False,False,13,Rework required on small section.,True
upd_000296,act_002_07,proj_002,2022-04-13,23.8,7.17,True,False,6,Inspection checkpoint cleared.,False
upd_000297,act_002_07,proj_002,2022-04-14,33.2,9.39,True,False,8,Rework required on small section.,False
upd_000298,act_002_07,proj_002,2022-04-15,40.0,6.83,False,False,20,Minor delays due to material delivery.,False
upd_000299,act_002_07,proj_002,2022-04-16,53.8,13.78,True,False,15,Inspection checkpoint cleared.,False
upd_000300,act_002_07,proj_002,2022-04-17,65.4,11.62,False,False,19,Weather caused brief stoppage.,False
upd_000301,act_002_07,proj_002,2022-04-18,73.1,7.72,True,False,7,Client walkthrough conducted.,False
upd_000302,act_002_07,proj_002,2022-04-19,81.2,8.1,False,False,5,Rework required on small section.,False
upd_000303,act_002_07,proj_002,2022-04-20,89.3,8.05,True,False,16,Good progress β crew at full strength.,False
upd_000304,act_002_07,proj_002,2022-04-21,100.0,10.76,False,False,9,Productivity affected by heat; hydration breaks added.,False
upd_000305,act_002_08,proj_002,2022-04-26,7.9,7.94,True,False,11,Material quality check done; passed.,False
upd_000306,act_002_08,proj_002,2022-04-27,14.9,6.98,False,False,11,Client walkthrough conducted.,False
upd_000307,act_002_08,proj_002,2022-04-28,15.8,0.9,False,False,10,Waiting for subcontractor sign-off.,False
upd_000308,act_002_08,proj_002,2022-04-29,24.9,9.08,True,False,13,Night shift deployed to catch up.,False
upd_000309,act_002_08,proj_002,2022-04-30,38.5,13.59,False,False,10,Night shift deployed to catch up.,False
upd_000310,act_002_08,proj_002,2022-05-01,44.8,6.34,True,False,19,All tasks on track per daily plan.,False
upd_000311,act_002_08,proj_002,2022-05-02,52.2,7.35,True,False,20,All tasks on track per daily plan.,False
upd_000312,act_002_08,proj_002,2022-05-03,60.5,8.35,True,False,18,Equipment breakdown caused 2-hour downtime.,True
upd_000313,act_002_08,proj_002,2022-05-04,66.9,6.44,True,False,11,All tasks on track per daily plan.,False
upd_000314,act_002_08,proj_002,2022-05-05,77.0,10.06,True,False,5,Overtime shift completed to recover schedule.,False
upd_000315,act_002_08,proj_002,2022-05-06,88.2,11.24,False,False,15,Weather caused brief stoppage.,False
upd_000316,act_002_08,proj_002,2022-05-07,99.9,11.72,False,False,14,Night shift deployed to catch up.,True
upd_000317,act_002_09,proj_002,2022-05-11,7.8,7.82,False,True,19,Productivity affected by heat; hydration breaks added.,False
upd_000318,act_002_09,proj_002,2022-05-12,10.1,2.31,True,False,4,Equipment breakdown caused 2-hour downtime.,False
upd_000319,act_002_09,proj_002,2022-05-13,15.2,5.09,False,False,21,Productivity affected by heat; hydration breaks added.,True
upd_000320,act_002_09,proj_002,2022-05-14,21.4,6.21,False,False,11,Inspection checkpoint cleared.,False
upd_000321,act_002_09,proj_002,2022-05-15,27.9,6.49,True,False,18,Minor delays due to material delivery.,True
upd_000322,act_002_09,proj_002,2022-05-16,30.3,2.44,True,False,4,Rework required on small section.,True
upd_000323,act_002_09,proj_002,2022-05-17,40.3,9.98,True,False,17,Work progressing as planned.,False
upd_000324,act_002_09,proj_002,2022-05-18,46.9,6.58,True,False,6,Client walkthrough conducted.,False
upd_000325,act_002_09,proj_002,2022-05-19,50.0,3.05,True,False,20,Night shift deployed to catch up.,False
upd_000326,act_002_09,proj_002,2022-05-20,52.2,2.23,True,False,19,Work progressing as planned.,False
upd_000327,act_002_09,proj_002,2022-05-21,58.9,6.74,True,False,4,Waiting for subcontractor sign-off.,False
upd_000328,act_002_09,proj_002,2022-05-22,63.8,4.85,False,False,7,Night shift deployed to catch up.,False
upd_000329,act_002_09,proj_002,2022-05-23,70.0,6.22,True,False,15,Client walkthrough conducted.,False
upd_000330,act_002_09,proj_002,2022-05-24,74.1,4.11,False,False,18,Productivity affected by heat; hydration breaks added.,False
upd_000331,act_002_09,proj_002,2022-05-25,74.1,0.02,True,False,18,Work progressing as planned.,False
upd_000332,act_002_09,proj_002,2022-05-26,78.5,4.43,True,True,5,Waiting for subcontractor sign-off.,False
upd_000333,act_002_09,proj_002,2022-05-27,85.3,6.84,False,False,21,Material quality check done; passed.,False
upd_000334,act_002_09,proj_002,2022-05-28,89.2,3.87,True,False,15,All tasks on track per daily plan.,False
upd_000335,act_002_09,proj_002,2022-05-29,95.0,5.8,True,False,7,Night shift deployed to catch up.,False
upd_000336,act_002_09,proj_002,2022-05-30,99.9,4.91,False,False,16,Waiting for subcontractor sign-off.,False
upd_000337,act_002_10,proj_002,2022-04-30,6.3,6.31,True,False,20,Inspection checkpoint cleared.,False
upd_000338,act_002_10,proj_002,2022-05-01,15.3,9.03,True,False,9,Client walkthrough conducted.,False
upd_000339,act_002_10,proj_002,2022-05-02,21.1,5.79,True,False,13,Inspection checkpoint cleared.,False
upd_000340,act_002_10,proj_002,2022-05-03,29.2,8.06,True,False,18,Waiting for subcontractor sign-off.,False
upd_000341,act_002_10,proj_002,2022-05-04,32.0,2.77,False,False,17,Inspection checkpoint cleared.,False
upd_000342,act_002_10,proj_002,2022-05-05,40.6,8.6,True,False,16,Waiting for subcontractor sign-off.,False
upd_000343,act_002_10,proj_002,2022-05-06,44.8,4.15,True,False,4,Good progress β crew at full strength.,False
upd_000344,act_002_10,proj_002,2022-05-07,47.4,2.57,True,False,8,Minor delays due to material delivery.,False
upd_000345,act_002_10,proj_002,2022-05-08,56.8,9.42,True,False,22,Work progressing as planned.,False
upd_000346,act_002_10,proj_002,2022-05-09,62.3,5.48,False,False,15,Material quality check done; passed.,False
upd_000347,act_002_10,proj_002,2022-05-10,68.9,6.65,True,False,16,Waiting for subcontractor sign-off.,False
upd_000348,act_002_10,proj_002,2022-05-11,78.4,9.48,True,False,9,Material quality check done; passed.,False
upd_000349,act_002_10,proj_002,2022-05-12,84.9,6.48,True,False,12,Productivity affected by heat; hydration breaks added.,False
upd_000350,act_002_10,proj_002,2022-05-13,89.2,4.34,True,False,19,Weather caused brief stoppage.,False
upd_000351,act_002_10,proj_002,2022-05-14,100.0,10.87,True,False,18,Minor delays due to material delivery.,True
upd_000352,act_002_11,proj_002,2022-05-16,9.6,9.62,False,False,15,Productivity affected by heat; hydration breaks added.,False
upd_000353,act_002_11,proj_002,2022-05-17,21.7,12.07,False,False,9,Productivity affected by heat; hydration breaks added.,True
upd_000354,act_002_11,proj_002,2022-05-18,29.9,8.21,True,False,15,Client walkthrough conducted.,False
upd_000355,act_002_11,proj_002,2022-05-19,38.4,8.51,False,False,11,Night shift deployed to catch up.,False
upd_000356,act_002_11,proj_002,2022-05-20,46.9,8.51,True,False,18,Night shift deployed to catch up.,False
upd_000357,act_002_11,proj_002,2022-05-21,56.8,9.94,False,False,6,Inspection checkpoint cleared.,False
upd_000358,act_002_11,proj_002,2022-05-22,66.8,10.03,True,False,17,Night shift deployed to catch up.,False
upd_000359,act_002_11,proj_002,2022-05-23,73.5,6.74,True,False,14,Rework required on small section.,False
upd_000360,act_002_11,proj_002,2022-05-24,82.3,8.83,True,False,8,Equipment breakdown caused 2-hour downtime.,True
upd_000361,act_002_11,proj_002,2022-05-25,90.0,7.7,True,False,8,Overtime shift completed to recover schedule.,False
upd_000362,act_002_11,proj_002,2022-05-26,99.8,9.85,False,False,20,Good progress β crew at full strength.,False
upd_000363,act_002_12,proj_002,2022-05-27,6.9,6.92,False,False,11,Waiting for subcontractor sign-off.,False
upd_000364,act_002_12,proj_002,2022-05-28,11.5,4.6,True,False,6,Inspection checkpoint cleared.,False
upd_000365,act_002_12,proj_002,2022-05-29,21.6,10.1,True,False,13,Safety toolbox talk held; no incidents.,False
upd_000366,act_002_12,proj_002,2022-05-30,28.7,7.1,True,False,22,Good progress β crew at full strength.,False
upd_000367,act_002_12,proj_002,2022-05-31,38.6,9.93,False,False,14,All tasks on track per daily plan.,False
upd_000368,act_002_12,proj_002,2022-06-01,44.0,5.35,False,True,6,Work progressing as planned.,False
upd_000369,act_002_12,proj_002,2022-06-02,57.3,13.3,True,False,10,Night shift deployed to catch up.,False
upd_000370,act_002_12,proj_002,2022-06-03,61.0,3.73,True,False,21,Inspection checkpoint cleared.,False
upd_000371,act_002_12,proj_002,2022-06-04,65.7,4.66,True,False,16,Inspection checkpoint cleared.,False
upd_000372,act_002_12,proj_002,2022-06-05,75.8,10.05,True,False,17,Material quality check done; passed.,False
upd_000373,act_002_12,proj_002,2022-06-06,81.6,5.85,True,False,14,Productivity affected by heat; hydration breaks added.,False
upd_000374,act_002_12,proj_002,2022-06-07,87.5,5.87,True,False,15,Client walkthrough conducted.,False
upd_000375,act_002_12,proj_002,2022-06-08,94.2,6.7,True,False,12,Material quality check done; passed.,False
upd_000376,act_002_12,proj_002,2022-06-09,97.4,3.24,True,False,16,All tasks on track per daily plan.,False
upd_000377,act_002_12,proj_002,2022-06-10,100.0,2.62,False,False,9,All tasks on track per daily plan.,False
upd_000378,act_002_13,proj_002,2022-06-11,3.7,3.71,True,False,9,Material quality check done; passed.,False
upd_000379,act_002_13,proj_002,2022-06-12,9.2,5.54,False,False,19,Work progressing as planned.,False
upd_000380,act_002_13,proj_002,2022-06-13,13.2,3.95,True,False,11,Weather caused brief stoppage.,True
upd_000381,act_002_13,proj_002,2022-06-14,18.2,4.95,True,True,19,Inspection checkpoint cleared.,False
upd_000382,act_002_13,proj_002,2022-06-15,25.5,7.26,True,False,12,Productivity affected by heat; hydration breaks added.,False
upd_000383,act_002_13,proj_002,2022-06-16,32.8,7.28,True,False,5,Safety toolbox talk held; no incidents.,False
upd_000384,act_002_13,proj_002,2022-06-17,39.4,6.63,True,False,16,Client walkthrough conducted.,False
upd_000385,act_002_13,proj_002,2022-06-18,44.0,4.62,False,False,7,Good progress β crew at full strength.,False
upd_000386,act_002_13,proj_002,2022-06-19,50.9,6.88,False,False,14,Client walkthrough conducted.,False
upd_000387,act_002_13,proj_002,2022-06-20,59.1,8.24,True,False,20,Overtime shift completed to recover schedule.,False
upd_000388,act_002_13,proj_002,2022-06-21,62.7,3.6,True,True,14,Night shift deployed to catch up.,False
upd_000389,act_002_13,proj_002,2022-06-22,70.5,7.81,True,False,20,Good progress β crew at full strength.,False
upd_000390,act_002_13,proj_002,2022-06-23,75.3,4.76,True,False,13,Safety toolbox talk held; no incidents.,False
upd_000391,act_002_13,proj_002,2022-06-24,87.0,11.68,True,False,22,Inspection checkpoint cleared.,False
upd_000392,act_002_13,proj_002,2022-06-25,89.5,2.48,True,True,7,Overtime shift completed to recover schedule.,False
upd_000393,act_002_13,proj_002,2022-06-26,94.1,4.56,False,False,4,Safety toolbox talk held; no incidents.,False
upd_000394,act_002_13,proj_002,2022-06-27,97.2,3.15,False,False,22,Safety toolbox talk held; no incidents.,False
upd_000395,act_002_13,proj_002,2022-06-28,100.0,2.9,True,True,20,Rework required on small section.,False
upd_000396,act_002_14,proj_002,2022-06-29,7.1,7.09,True,False,11,Work progressing as planned.,False
upd_000397,act_002_14,proj_002,2022-06-30,12.3,5.24,True,False,18,Waiting for subcontractor sign-off.,False
upd_000398,act_002_14,proj_002,2022-07-01,20.5,8.21,True,False,20,Night shift deployed to catch up.,False
upd_000399,act_002_14,proj_002,2022-07-02,33.0,12.55,False,False,5,Productivity affected by heat; hydration breaks added.,False
upd_000400,act_002_14,proj_002,2022-07-03,43.0,10.03,True,False,19,Client walkthrough conducted.,False
upd_000401,act_002_14,proj_002,2022-07-04,52.0,9.03,True,False,21,Waiting for subcontractor sign-off.,False
upd_000402,act_002_14,proj_002,2022-07-05,64.6,12.63,False,False,12,Safety toolbox talk held; no incidents.,False
upd_000403,act_002_14,proj_002,2022-07-06,77.8,13.18,True,False,13,Weather caused brief stoppage.,False
upd_000404,act_002_14,proj_002,2022-07-07,87.8,9.98,False,False,10,Productivity affected by heat; hydration breaks added.,False
upd_000405,act_002_14,proj_002,2022-07-08,93.6,5.85,True,False,12,Inspection checkpoint cleared.,False
upd_000406,act_002_14,proj_002,2022-07-09,99.8,6.2,True,False,16,All tasks on track per daily plan.,True
upd_000407,act_002_15,proj_002,2022-07-10,14.4,14.41,True,False,5,Inspection checkpoint cleared.,False
upd_000408,act_002_15,proj_002,2022-07-11,32.1,17.71,False,False,12,Productivity affected by heat; hydration breaks added.,False
upd_000409,act_002_15,proj_002,2022-07-12,47.3,15.24,True,False,21,Productivity affected by heat; hydration breaks added.,False
upd_000410,act_002_15,proj_002,2022-07-13,57.5,10.22,False,False,11,Weather caused brief stoppage.,False
upd_000411,act_002_15,proj_002,2022-07-14,71.1,13.63,True,False,11,Work progressing as planned.,True
upd_000412,act_002_15,proj_002,2022-07-15,86.2,15.15,True,False,8,Work progressing as planned.,True
upd_000413,act_002_15,proj_002,2022-07-16,99.8,13.64,True,False,19,Material quality check done; passed.,False
upd_000414,act_003_01,proj_003,2022-06-16,11.4,11.37,True,False,13,Rework required on small section.,False
upd_000415,act_003_01,proj_003,2022-06-17,21.4,10.04,True,False,11,Client walkthrough conducted.,True
upd_000416,act_003_01,proj_003,2022-06-18,33.3,11.86,True,False,9,Overtime shift completed to recover schedule.,False
upd_000417,act_003_01,proj_003,2022-06-19,45.7,12.42,False,False,16,Night shift deployed to catch up.,False
upd_000418,act_003_01,proj_003,2022-06-20,57.1,11.42,False,False,13,Equipment breakdown caused 2-hour downtime.,False
upd_000419,act_003_01,proj_003,2022-06-21,70.4,13.3,True,False,14,Inspection checkpoint cleared.,True
upd_000420,act_003_01,proj_003,2022-06-22,79.6,9.23,True,False,8,All tasks on track per daily plan.,False
upd_000421,act_003_01,proj_003,2022-06-23,89.1,9.49,False,False,14,Good progress β crew at full strength.,False
upd_000422,act_003_01,proj_003,2022-06-24,100.0,10.88,True,False,4,Productivity affected by heat; hydration breaks added.,False
upd_000423,act_003_02,proj_003,2022-06-25,7.6,7.56,True,False,10,Good progress β crew at full strength.,False
upd_000424,act_003_02,proj_003,2022-06-26,8.8,1.23,True,False,17,Client walkthrough conducted.,False
upd_000425,act_003_02,proj_003,2022-06-27,15.7,6.94,True,False,8,Material quality check done; passed.,False
upd_000426,act_003_02,proj_003,2022-06-28,24.6,8.88,True,False,11,Material quality check done; passed.,False
upd_000427,act_003_02,proj_003,2022-06-29,28.3,3.7,True,False,22,Work progressing as planned.,False
upd_000428,act_003_02,proj_003,2022-06-30,40.0,11.69,True,False,7,Material quality check done; passed.,False
upd_000429,act_003_02,proj_003,2022-07-01,48.1,8.14,True,False,13,Productivity affected by heat; hydration breaks added.,False
upd_000430,act_003_02,proj_003,2022-07-02,51.0,2.94,True,False,11,Weather caused brief stoppage.,True
upd_000431,act_003_02,proj_003,2022-07-03,60.6,9.58,True,False,15,Overtime shift completed to recover schedule.,False
upd_000432,act_003_02,proj_003,2022-07-04,66.0,5.37,False,False,10,Night shift deployed to catch up.,False
upd_000433,act_003_02,proj_003,2022-07-05,71.8,5.83,False,False,6,Client walkthrough conducted.,False
upd_000434,act_003_02,proj_003,2022-07-06,85.7,13.87,True,False,22,Minor delays due to material delivery.,False
upd_000435,act_003_02,proj_003,2022-07-07,92.4,6.68,True,False,22,Client walkthrough conducted.,True
upd_000436,act_003_02,proj_003,2022-07-08,100.0,7.59,True,False,7,Rework required on small section.,False
upd_000437,act_003_03,proj_003,2022-07-12,0.0,0.0,True,False,20,Material quality check done; passed.,False
upd_000438,act_003_03,proj_003,2022-07-13,6.8,6.78,True,False,18,Safety toolbox talk held; no incidents.,False
upd_000439,act_003_03,proj_003,2022-07-14,12.5,5.72,False,False,4,Overtime shift completed to recover schedule.,True
upd_000440,act_003_03,proj_003,2022-07-15,19.4,6.87,True,True,6,Work progressing as planned.,False
upd_000441,act_003_03,proj_003,2022-07-16,26.5,7.08,True,False,5,Equipment breakdown caused 2-hour downtime.,False
upd_000442,act_003_03,proj_003,2022-07-17,28.0,1.49,True,False,13,Overtime shift completed to recover schedule.,False
upd_000443,act_003_03,proj_003,2022-07-18,28.0,0.0,True,False,17,Waiting for subcontractor sign-off.,False
upd_000444,act_003_03,proj_003,2022-07-19,35.9,7.87,False,False,16,Overtime shift completed to recover schedule.,False
upd_000445,act_003_03,proj_003,2022-07-20,35.9,0.0,False,False,8,Rework required on small section.,True
upd_000446,act_003_03,proj_003,2022-07-21,41.0,5.1,False,False,16,Client walkthrough conducted.,False
upd_000447,act_003_03,proj_003,2022-07-22,42.5,1.51,False,False,4,Inspection checkpoint cleared.,True
upd_000448,act_003_03,proj_003,2022-07-23,51.8,9.34,True,False,16,All tasks on track per daily plan.,False
upd_000449,act_003_03,proj_003,2022-07-24,54.7,2.93,True,False,10,Equipment breakdown caused 2-hour downtime.,False
upd_000450,act_003_03,proj_003,2022-07-25,55.8,1.08,True,False,17,Safety toolbox talk held; no incidents.,False
upd_000451,act_003_03,proj_003,2022-07-26,62.4,6.62,True,False,10,Minor delays due to material delivery.,False
upd_000452,act_003_03,proj_003,2022-07-27,64.6,2.21,True,True,5,Weather caused brief stoppage.,True
upd_000453,act_003_03,proj_003,2022-07-28,69.3,4.69,True,False,10,Night shift deployed to catch up.,False
upd_000454,act_003_03,proj_003,2022-07-29,70.8,1.52,True,True,13,Weather caused brief stoppage.,False
upd_000455,act_003_03,proj_003,2022-07-30,77.7,6.87,True,False,14,Weather caused brief stoppage.,False
upd_000456,act_003_03,proj_003,2022-07-31,87.3,9.64,True,False,11,Overtime shift completed to recover schedule.,False
upd_000457,act_003_03,proj_003,2022-08-01,91.6,4.31,False,False,9,Rework required on small section.,False
upd_000458,act_003_03,proj_003,2022-08-02,91.6,0.0,True,False,15,Rework required on small section.,False
upd_000459,act_003_03,proj_003,2022-08-03,94.8,3.22,True,False,17,Overtime shift completed to recover schedule.,False
upd_000460,act_003_03,proj_003,2022-08-04,99.9,5.14,False,False,19,Weather caused brief stoppage.,False
upd_000461,act_003_04,proj_003,2022-08-05,13.9,13.92,True,False,18,Equipment breakdown caused 2-hour downtime.,False
upd_000462,act_003_04,proj_003,2022-08-06,26.2,12.28,True,False,20,Good progress β crew at full strength.,True
upd_000463,act_003_04,proj_003,2022-08-07,39.0,12.8,True,False,6,Equipment breakdown caused 2-hour downtime.,False
upd_000464,act_003_04,proj_003,2022-08-08,45.9,6.85,True,False,10,Work progressing as planned.,False
upd_000465,act_003_04,proj_003,2022-08-09,56.6,10.66,True,False,6,Weather caused brief stoppage.,False
upd_000466,act_003_04,proj_003,2022-08-10,67.5,10.92,True,False,10,Material quality check done; passed.,False
upd_000467,act_003_04,proj_003,2022-08-11,79.5,11.96,True,False,4,Weather caused brief stoppage.,False
upd_000468,act_003_04,proj_003,2022-08-12,90.7,11.23,True,False,19,Equipment breakdown caused 2-hour downtime.,False
upd_000469,act_003_04,proj_003,2022-08-13,100.0,9.36,True,False,11,Client walkthrough conducted.,False
upd_000470,act_003_05,proj_003,2022-08-05,5.9,5.92,True,False,15,Inspection checkpoint cleared.,False
upd_000471,act_003_05,proj_003,2022-08-06,11.2,5.26,True,False,7,Night shift deployed to catch up.,False
upd_000472,act_003_05,proj_003,2022-08-07,22.2,10.99,False,False,10,Waiting for subcontractor sign-off.,False
upd_000473,act_003_05,proj_003,2022-08-08,27.3,5.07,False,True,8,Work progressing as planned.,False
upd_000474,act_003_05,proj_003,2022-08-09,32.1,4.84,True,False,17,Inspection checkpoint cleared.,False
upd_000475,act_003_05,proj_003,2022-08-10,46.2,14.08,True,False,11,Material quality check done; passed.,False
upd_000476,act_003_05,proj_003,2022-08-11,49.2,3.01,True,False,19,Productivity affected by heat; hydration breaks added.,False
upd_000477,act_003_05,proj_003,2022-08-12,57.3,8.08,True,False,15,Good progress β crew at full strength.,False
upd_000478,act_003_05,proj_003,2022-08-13,61.6,4.29,True,False,21,Rework required on small section.,False
upd_000479,act_003_05,proj_003,2022-08-14,66.1,4.47,False,False,6,All tasks on track per daily plan.,False
upd_000480,act_003_05,proj_003,2022-08-15,71.4,5.29,True,False,11,Minor delays due to material delivery.,False
upd_000481,act_003_05,proj_003,2022-08-16,81.5,10.14,True,True,15,Work progressing as planned.,False
upd_000482,act_003_05,proj_003,2022-08-17,86.0,4.48,True,False,19,Rework required on small section.,False
upd_000483,act_003_05,proj_003,2022-08-18,95.7,9.68,True,True,4,Work progressing as planned.,False
upd_000484,act_003_05,proj_003,2022-08-19,98.1,2.36,False,False,4,Client walkthrough conducted.,False
upd_000485,act_003_05,proj_003,2022-08-20,100.0,2.03,False,False,9,Minor delays due to material delivery.,False
upd_000486,act_003_06,proj_003,2022-08-05,5.0,4.99,True,False,20,Inspection checkpoint cleared.,False
upd_000487,act_003_06,proj_003,2022-08-06,10.4,5.45,True,False,15,Overtime shift completed to recover schedule.,False
upd_000488,act_003_06,proj_003,2022-08-07,21.7,11.32,True,False,13,Rework required on small section.,False
upd_000489,act_003_06,proj_003,2022-08-08,26.7,5.02,False,False,5,Minor delays due to material delivery.,False
upd_000490,act_003_06,proj_003,2022-08-09,36.2,9.47,True,False,4,Productivity affected by heat; hydration breaks added.,False
upd_000491,act_003_06,proj_003,2022-08-10,40.1,3.9,True,False,14,Safety toolbox talk held; no incidents.,False
upd_000492,act_003_06,proj_003,2022-08-11,46.0,5.88,False,False,5,Weather caused brief stoppage.,False
upd_000493,act_003_06,proj_003,2022-08-12,47.6,1.56,False,False,19,Inspection checkpoint cleared.,False
upd_000494,act_003_06,proj_003,2022-08-13,58.2,10.55,False,False,21,Safety toolbox talk held; no incidents.,True
upd_000495,act_003_06,proj_003,2022-08-14,61.6,3.39,False,False,4,Weather caused brief stoppage.,False
upd_000496,act_003_06,proj_003,2022-08-15,70.3,8.73,True,False,16,Equipment breakdown caused 2-hour downtime.,False
upd_000497,act_003_06,proj_003,2022-08-16,71.3,0.96,True,False,16,Rework required on small section.,True
upd_000498,act_003_06,proj_003,2022-08-17,78.1,6.77,False,False,8,Night shift deployed to catch up.,False
upd_000499,act_003_06,proj_003,2022-08-18,80.6,2.47,True,False,15,Work progressing as planned.,False
upd_000500,act_003_06,proj_003,2022-08-19,88.1,7.55,True,False,16,Night shift deployed to catch up.,True
upd_000501,act_003_06,proj_003,2022-08-20,97.7,9.65,False,False,18,Material quality check done; passed.,False
upd_000502,act_003_06,proj_003,2022-08-21,100.0,2.34,True,False,9,Rework required on small section.,False
upd_000503,act_003_07,proj_003,2022-08-06,7.5,7.53,False,False,13,Night shift deployed to catch up.,False
upd_000504,act_003_07,proj_003,2022-08-07,14.2,6.67,True,False,16,Productivity affected by heat; hydration breaks added.,False
upd_000505,act_003_07,proj_003,2022-08-08,24.9,10.69,True,False,15,Minor delays due to material delivery.,False
upd_000506,act_003_07,proj_003,2022-08-09,33.6,8.71,True,False,12,Minor delays due to material delivery.,True
upd_000507,act_003_07,proj_003,2022-08-10,44.2,10.58,True,False,21,Client walkthrough conducted.,False
upd_000508,act_003_07,proj_003,2022-08-11,53.9,9.74,True,True,6,Safety toolbox talk held; no incidents.,False
upd_000509,act_003_07,proj_003,2022-08-12,65.5,11.6,True,False,13,Overtime shift completed to recover schedule.,False
upd_000510,act_003_07,proj_003,2022-08-13,74.0,8.46,False,False,11,Safety toolbox talk held; no incidents.,False
upd_000511,act_003_07,proj_003,2022-08-14,80.3,6.29,True,False,12,Inspection checkpoint cleared.,False
upd_000512,act_003_07,proj_003,2022-08-15,91.3,11.02,True,False,12,Overtime shift completed to recover schedule.,False
upd_000513,act_003_07,proj_003,2022-08-16,100.0,8.71,True,False,11,Productivity affected by heat; hydration breaks added.,False
upd_000514,act_003_08,proj_003,2022-08-22,9.3,9.26,True,False,7,Good progress β crew at full strength.,False
upd_000515,act_003_08,proj_003,2022-08-23,17.0,7.71,True,False,16,Night shift deployed to catch up.,False
upd_000516,act_003_08,proj_003,2022-08-24,24.6,7.63,True,False,8,Inspection checkpoint cleared.,False
upd_000517,act_003_08,proj_003,2022-08-25,35.9,11.3,True,False,14,Good progress β crew at full strength.,False
upd_000518,act_003_08,proj_003,2022-08-26,43.6,7.68,True,False,19,Safety toolbox talk held; no incidents.,False
upd_000519,act_003_08,proj_003,2022-08-27,48.1,4.49,True,False,16,Waiting for subcontractor sign-off.,False
upd_000520,act_003_08,proj_003,2022-08-28,55.2,7.06,True,False,21,Good progress β crew at full strength.,True
upd_000521,act_003_08,proj_003,2022-08-29,61.7,6.52,False,False,18,Productivity affected by heat; hydration breaks added.,False
upd_000522,act_003_08,proj_003,2022-08-30,66.6,4.91,False,False,6,All tasks on track per daily plan.,False
upd_000523,act_003_08,proj_003,2022-08-31,76.1,9.51,True,False,8,Rework required on small section.,False
upd_000524,act_003_08,proj_003,2022-09-01,86.5,10.36,True,False,17,Night shift deployed to catch up.,False
upd_000525,act_003_08,proj_003,2022-09-02,100.0,13.56,True,False,22,Overtime shift completed to recover schedule.,False
upd_000526,act_003_09,proj_003,2022-09-03,5.5,5.5,False,False,17,Client walkthrough conducted.,False
upd_000527,act_003_09,proj_003,2022-09-04,8.3,2.76,True,False,21,Safety toolbox talk held; no incidents.,True
upd_000528,act_003_09,proj_003,2022-09-05,14.1,5.76,False,False,15,Good progress β crew at full strength.,False
upd_000529,act_003_09,proj_003,2022-09-06,17.8,3.67,False,True,16,Night shift deployed to catch up.,False
upd_000530,act_003_09,proj_003,2022-09-07,22.7,4.86,True,False,7,Inspection checkpoint cleared.,False
upd_000531,act_003_09,proj_003,2022-09-08,26.3,3.6,True,False,22,Weather caused brief stoppage.,False
upd_000532,act_003_09,proj_003,2022-09-09,27.2,0.9,False,False,22,Productivity affected by heat; hydration breaks added.,False
upd_000533,act_003_09,proj_003,2022-09-10,32.8,5.62,True,False,7,Inspection checkpoint cleared.,False
upd_000534,act_003_09,proj_003,2022-09-11,39.4,6.58,True,False,8,Waiting for subcontractor sign-off.,False
upd_000535,act_003_09,proj_003,2022-09-12,49.7,10.28,True,False,19,Waiting for subcontractor sign-off.,False
upd_000536,act_003_09,proj_003,2022-09-13,57.9,8.19,True,False,14,Minor delays due to material delivery.,False
upd_000537,act_003_09,proj_003,2022-09-14,68.1,10.25,True,False,14,Rework required on small section.,False
upd_000538,act_003_09,proj_003,2022-09-15,69.8,1.65,False,False,11,Client walkthrough conducted.,True
upd_000539,act_003_09,proj_003,2022-09-16,70.3,0.52,True,False,18,Weather caused brief stoppage.,False
upd_000540,act_003_09,proj_003,2022-09-17,72.1,1.85,True,False,17,Overtime shift completed to recover schedule.,False
upd_000541,act_003_09,proj_003,2022-09-18,82.6,10.49,True,False,22,Overtime shift completed to recover schedule.,True
upd_000542,act_003_09,proj_003,2022-09-19,89.6,7.0,True,False,6,Safety toolbox talk held; no incidents.,False
upd_000543,act_003_09,proj_003,2022-09-20,91.5,1.87,True,False,14,Weather caused brief stoppage.,True
upd_000544,act_003_09,proj_003,2022-09-21,91.5,0.0,False,False,20,Rework required on small section.,False
upd_000545,act_003_09,proj_003,2022-09-22,97.0,5.54,True,False,7,Waiting for subcontractor sign-off.,False
upd_000546,act_003_09,proj_003,2022-09-23,97.1,0.07,True,False,13,Equipment breakdown caused 2-hour downtime.,False
upd_000547,act_003_09,proj_003,2022-09-24,100.0,3.05,True,False,7,Weather caused brief stoppage.,False
upd_000548,act_003_10,proj_003,2022-08-22,1.3,1.34,True,False,20,Overtime shift completed to recover schedule.,False
upd_000549,act_003_10,proj_003,2022-08-23,6.4,5.08,True,False,9,Material quality check done; passed.,False
upd_000550,act_003_10,proj_003,2022-08-24,12.4,6.01,True,False,9,Client walkthrough conducted.,False
upd_000551,act_003_10,proj_003,2022-08-25,25.2,12.81,True,False,18,Safety toolbox talk held; no incidents.,False
upd_000552,act_003_10,proj_003,2022-08-26,33.8,8.59,True,False,8,Weather caused brief stoppage.,True
upd_000553,act_003_10,proj_003,2022-08-27,34.9,1.07,True,False,19,Overtime shift completed to recover schedule.,False
upd_000554,act_003_10,proj_003,2022-08-28,38.8,3.86,False,False,19,Good progress β crew at full strength.,False
upd_000555,act_003_10,proj_003,2022-08-29,45.4,6.65,False,True,13,Work progressing as planned.,True
upd_000556,act_003_10,proj_003,2022-08-30,48.6,3.21,True,False,18,Safety toolbox talk held; no incidents.,False
upd_000557,act_003_10,proj_003,2022-08-31,51.2,2.63,True,False,7,Safety toolbox talk held; no incidents.,False
upd_000558,act_003_10,proj_003,2022-09-01,56.3,5.12,False,False,15,Client walkthrough conducted.,True
upd_000559,act_003_10,proj_003,2022-09-02,64.3,8.03,True,True,21,Weather caused brief stoppage.,False
upd_000560,act_003_10,proj_003,2022-09-03,70.4,6.09,False,False,11,Inspection checkpoint cleared.,False
upd_000561,act_003_10,proj_003,2022-09-04,81.2,10.81,True,True,6,Material quality check done; passed.,False
upd_000562,act_003_10,proj_003,2022-09-05,94.3,13.08,False,False,10,Night shift deployed to catch up.,False
upd_000563,act_003_10,proj_003,2022-09-06,99.9,5.62,False,False,17,Good progress β crew at full strength.,False
upd_000564,act_003_11,proj_003,2022-09-07,6.2,6.19,False,False,5,Safety toolbox talk held; no incidents.,False
upd_000565,act_003_11,proj_003,2022-09-08,9.7,3.46,True,False,14,Productivity affected by heat; hydration breaks added.,False
upd_000566,act_003_11,proj_003,2022-09-09,19.3,9.6,False,False,20,Equipment breakdown caused 2-hour downtime.,False
upd_000567,act_003_11,proj_003,2022-09-10,25.5,6.17,False,False,17,Equipment breakdown caused 2-hour downtime.,False
upd_000568,act_003_11,proj_003,2022-09-11,32.3,6.77,True,False,8,Weather caused brief stoppage.,True
upd_000569,act_003_11,proj_003,2022-09-12,38.7,6.38,True,False,16,Material quality check done; passed.,False
upd_000570,act_003_11,proj_003,2022-09-13,49.4,10.67,True,False,16,Material quality check done; passed.,False
upd_000571,act_003_11,proj_003,2022-09-14,53.8,4.35,False,False,16,Client walkthrough conducted.,True
upd_000572,act_003_11,proj_003,2022-09-15,65.9,12.08,False,False,18,Material quality check done; passed.,False
upd_000573,act_003_11,proj_003,2022-09-16,78.4,12.48,False,True,6,Productivity affected by heat; hydration breaks added.,False
upd_000574,act_003_11,proj_003,2022-09-17,87.0,8.55,True,False,6,Night shift deployed to catch up.,False
upd_000575,act_003_11,proj_003,2022-09-18,91.6,4.56,True,False,10,Material quality check done; passed.,False
upd_000576,act_003_11,proj_003,2022-09-19,100.0,8.72,True,False,22,Good progress β crew at full strength.,False
upd_000577,act_003_12,proj_003,2022-09-20,7.4,7.36,True,False,5,Work progressing as planned.,False
upd_000578,act_003_12,proj_003,2022-09-21,14.2,6.81,True,False,7,Equipment breakdown caused 2-hour downtime.,True
upd_000579,act_003_12,proj_003,2022-09-22,25.9,11.69,True,False,17,Weather caused brief stoppage.,False
upd_000580,act_003_12,proj_003,2022-09-23,28.3,2.41,False,False,13,Good progress β crew at full strength.,False
upd_000581,act_003_12,proj_003,2022-09-24,32.6,4.3,True,False,15,Inspection checkpoint cleared.,False
upd_000582,act_003_12,proj_003,2022-09-25,36.1,3.46,True,False,5,Overtime shift completed to recover schedule.,True
upd_000583,act_003_12,proj_003,2022-09-26,42.6,6.48,False,False,17,Rework required on small section.,False
upd_000584,act_003_12,proj_003,2022-09-27,51.4,8.76,True,False,6,Good progress β crew at full strength.,True
upd_000585,act_003_12,proj_003,2022-09-28,63.9,12.5,True,False,4,Productivity affected by heat; hydration breaks added.,False
upd_000586,act_003_12,proj_003,2022-09-29,66.9,2.99,False,False,8,Material quality check done; passed.,False
upd_000587,act_003_12,proj_003,2022-09-30,67.2,0.31,False,False,7,Minor delays due to material delivery.,True
upd_000588,act_003_12,proj_003,2022-10-01,73.2,6.01,True,False,8,Rework required on small section.,False
upd_000589,act_003_12,proj_003,2022-10-02,78.0,4.83,True,False,4,Safety toolbox talk held; no incidents.,False
upd_000590,act_003_12,proj_003,2022-10-03,90.8,12.83,False,False,8,Equipment breakdown caused 2-hour downtime.,False
upd_000591,act_003_12,proj_003,2022-10-04,100.0,9.26,False,False,6,Equipment breakdown caused 2-hour downtime.,False
upd_000592,act_003_13,proj_003,2022-10-06,2.4,2.42,True,False,16,Waiting for subcontractor sign-off.,True
upd_000593,act_003_13,proj_003,2022-10-07,5.9,3.53,True,False,12,Rework required on small section.,False
upd_000594,act_003_13,proj_003,2022-10-08,15.9,9.99,True,False,13,Night shift deployed to catch up.,True
upd_000595,act_003_13,proj_003,2022-10-09,19.5,3.63,False,True,13,Weather caused brief stoppage.,False
upd_000596,act_003_13,proj_003,2022-10-10,26.0,6.48,False,False,13,Rework required on small section.,False
upd_000597,act_003_13,proj_003,2022-10-11,30.7,4.67,False,False,19,Overtime shift completed to recover schedule.,True
upd_000598,act_003_13,proj_003,2022-10-12,32.0,1.26,True,False,20,Equipment breakdown caused 2-hour downtime.,True
upd_000599,act_003_13,proj_003,2022-10-13,35.6,3.59,False,False,8,Overtime shift completed to recover schedule.,False
upd_000600,act_003_13,proj_003,2022-10-14,41.7,6.14,True,False,9,Night shift deployed to catch up.,False
upd_000601,act_003_13,proj_003,2022-10-15,48.7,7.03,True,False,22,Minor delays due to material delivery.,False
upd_000602,act_003_13,proj_003,2022-10-16,53.5,4.83,False,False,16,Client walkthrough conducted.,True
upd_000603,act_003_13,proj_003,2022-10-17,61.7,8.21,False,False,17,Productivity affected by heat; hydration breaks added.,False
upd_000604,act_003_13,proj_003,2022-10-18,68.3,6.57,True,False,8,Inspection checkpoint cleared.,False
upd_000605,act_003_13,proj_003,2022-10-19,73.2,4.86,False,False,8,Client walkthrough conducted.,True
upd_000606,act_003_13,proj_003,2022-10-20,76.4,3.24,False,False,6,Inspection checkpoint cleared.,False
upd_000607,act_003_13,proj_003,2022-10-21,77.4,0.99,False,False,5,Weather caused brief stoppage.,False
upd_000608,act_003_13,proj_003,2022-10-22,80.2,2.83,True,False,5,Inspection checkpoint cleared.,True
upd_000609,act_003_13,proj_003,2022-10-23,89.4,9.25,True,False,4,Productivity affected by heat; hydration breaks added.,False
upd_000610,act_003_13,proj_003,2022-10-24,95.0,5.65,True,True,15,Client walkthrough conducted.,False
upd_000611,act_003_13,proj_003,2022-10-25,99.9,4.85,True,False,15,Good progress β crew at full strength.,False
upd_000612,act_003_14,proj_003,2022-10-26,9.7,9.68,False,False,7,Night shift deployed to catch up.,False
upd_000613,act_003_14,proj_003,2022-10-27,15.9,6.24,True,False,20,Minor delays due to material delivery.,False
upd_000614,act_003_14,proj_003,2022-10-28,24.9,9.04,True,False,19,Material quality check done; passed.,False
upd_000615,act_003_14,proj_003,2022-10-29,38.0,13.05,False,True,9,Waiting for subcontractor sign-off.,False
upd_000616,act_003_14,proj_003,2022-10-30,49.2,11.24,False,False,7,Weather caused brief stoppage.,False
upd_000617,act_003_14,proj_003,2022-10-31,58.5,9.27,False,True,4,Weather caused brief stoppage.,False
upd_000618,act_003_14,proj_003,2022-11-01,69.0,10.52,False,False,9,Equipment breakdown caused 2-hour downtime.,True
upd_000619,act_003_14,proj_003,2022-11-02,76.7,7.68,False,True,17,Weather caused brief stoppage.,False
upd_000620,act_003_14,proj_003,2022-11-03,85.5,8.84,False,False,12,All tasks on track per daily plan.,False
upd_000621,act_003_14,proj_003,2022-11-04,94.1,8.57,True,False,5,Good progress β crew at full strength.,True
upd_000622,act_003_14,proj_003,2022-11-05,100.0,5.87,True,False,16,Minor delays due to material delivery.,False
upd_000623,act_003_15,proj_003,2022-11-06,13.5,13.46,False,False,13,Waiting for subcontractor sign-off.,False
upd_000624,act_003_15,proj_003,2022-11-07,26.2,12.7,True,False,13,Safety toolbox talk held; no incidents.,True
upd_000625,act_003_15,proj_003,2022-11-08,40.1,13.94,True,False,15,Safety toolbox talk held; no incidents.,False
upd_000626,act_003_15,proj_003,2022-11-09,53.2,13.06,False,False,21,Night shift deployed to catch up.,False
upd_000627,act_003_15,proj_003,2022-11-10,60.7,7.45,False,False,4,Weather caused brief stoppage.,False
upd_000628,act_003_15,proj_003,2022-11-11,74.0,13.31,True,False,4,Waiting for subcontractor sign-off.,False
upd_000629,act_003_15,proj_003,2022-11-12,85.7,11.69,False,False,13,Minor delays due to material delivery.,True
upd_000630,act_003_15,proj_003,2022-11-13,100.0,14.39,True,False,5,Good progress β crew at full strength.,False
upd_000631,act_004_01,proj_004,2022-09-03,8.5,8.54,False,False,20,Overtime shift completed to recover schedule.,False
upd_000632,act_004_01,proj_004,2022-09-04,22.9,14.42,False,False,6,Safety toolbox talk held; no incidents.,False
upd_000633,act_004_01,proj_004,2022-09-05,40.8,17.86,False,False,6,Safety toolbox talk held; no incidents.,True
upd_000634,act_004_01,proj_004,2022-09-06,57.0,16.15,False,False,11,Inspection checkpoint cleared.,False
upd_000635,act_004_01,proj_004,2022-09-07,69.3,12.34,False,False,14,Waiting for subcontractor sign-off.,False
upd_000636,act_004_01,proj_004,2022-09-08,79.4,10.15,False,False,8,Night shift deployed to catch up.,False
upd_000637,act_004_01,proj_004,2022-09-09,89.7,10.29,True,False,18,Material quality check done; passed.,False
upd_000638,act_004_01,proj_004,2022-09-10,99.9,10.25,True,False,10,Material quality check done; passed.,False
upd_000639,act_004_02,proj_004,2022-09-13,10.6,10.57,True,False,9,Night shift deployed to catch up.,False
upd_000640,act_004_02,proj_004,2022-09-14,12.2,1.6,True,False,5,Weather caused brief stoppage.,False
upd_000641,act_004_02,proj_004,2022-09-15,20.0,7.83,True,False,11,Waiting for subcontractor sign-off.,False
upd_000642,act_004_02,proj_004,2022-09-16,34.5,14.52,True,True,9,Work progressing as planned.,False
upd_000643,act_004_02,proj_004,2022-09-17,39.5,4.98,True,False,21,Weather caused brief stoppage.,False
upd_000644,act_004_02,proj_004,2022-09-18,46.2,6.68,False,False,7,Work progressing as planned.,True
upd_000645,act_004_02,proj_004,2022-09-19,54.5,8.26,True,False,10,All tasks on track per daily plan.,True
upd_000646,act_004_02,proj_004,2022-09-20,62.4,7.93,False,False,6,Safety toolbox talk held; no incidents.,False
upd_000647,act_004_02,proj_004,2022-09-21,67.5,5.14,True,False,6,Weather caused brief stoppage.,False
upd_000648,act_004_02,proj_004,2022-09-22,75.3,7.8,True,False,14,Minor delays due to material delivery.,False
upd_000649,act_004_02,proj_004,2022-09-23,82.5,7.2,True,False,22,Overtime shift completed to recover schedule.,True
upd_000650,act_004_02,proj_004,2022-09-24,90.0,7.55,True,False,17,Good progress β crew at full strength.,False
upd_000651,act_004_02,proj_004,2022-09-25,93.3,3.26,True,False,18,Equipment breakdown caused 2-hour downtime.,False
upd_000652,act_004_02,proj_004,2022-09-26,100.0,6.67,True,False,13,Material quality check done; passed.,False
upd_000653,act_004_03,proj_004,2022-09-28,5.2,5.23,True,False,12,Overtime shift completed to recover schedule.,False
upd_000654,act_004_03,proj_004,2022-09-29,9.5,4.3,False,False,20,Weather caused brief stoppage.,False
upd_000655,act_004_03,proj_004,2022-09-30,13.9,4.36,False,False,16,Night shift deployed to catch up.,False
upd_000656,act_004_03,proj_004,2022-10-01,21.3,7.44,False,False,15,Equipment breakdown caused 2-hour downtime.,False
upd_000657,act_004_03,proj_004,2022-10-02,30.3,9.04,True,False,4,Waiting for subcontractor sign-off.,False
upd_000658,act_004_03,proj_004,2022-10-03,30.3,0.0,False,True,12,Work progressing as planned.,False
upd_000659,act_004_03,proj_004,2022-10-04,32.6,2.33,True,False,22,Weather caused brief stoppage.,False
upd_000660,act_004_03,proj_004,2022-10-05,40.8,8.21,True,False,12,Client walkthrough conducted.,False
upd_000661,act_004_03,proj_004,2022-10-06,47.4,6.59,True,False,11,Safety toolbox talk held; no incidents.,False
upd_000662,act_004_03,proj_004,2022-10-07,55.0,7.64,True,False,9,Good progress β crew at full strength.,False
upd_000663,act_004_03,proj_004,2022-10-08,59.3,4.26,False,False,15,Equipment breakdown caused 2-hour downtime.,False
upd_000664,act_004_03,proj_004,2022-10-09,61.7,2.43,True,False,22,Safety toolbox talk held; no incidents.,False
upd_000665,act_004_03,proj_004,2022-10-10,65.6,3.89,False,False,19,Client walkthrough conducted.,False
upd_000666,act_004_03,proj_004,2022-10-11,71.5,5.9,True,False,11,Safety toolbox talk held; no incidents.,False
upd_000667,act_004_03,proj_004,2022-10-12,74.9,3.42,True,False,10,Night shift deployed to catch up.,False
upd_000668,act_004_03,proj_004,2022-10-13,79.8,4.93,False,False,14,Work progressing as planned.,False
upd_000669,act_004_03,proj_004,2022-10-14,86.1,6.33,False,False,7,All tasks on track per daily plan.,True
upd_000670,act_004_03,proj_004,2022-10-15,93.1,7.0,True,False,16,Safety toolbox talk held; no incidents.,False
upd_000671,act_004_03,proj_004,2022-10-16,99.8,6.71,True,False,9,Productivity affected by heat; hydration breaks added.,True
upd_000672,act_004_04,proj_004,2022-10-19,12.2,12.19,False,False,14,Good progress β crew at full strength.,False
upd_000673,act_004_04,proj_004,2022-10-20,25.1,12.85,False,False,15,Weather caused brief stoppage.,False
upd_000674,act_004_04,proj_004,2022-10-21,35.1,10.04,True,False,13,Good progress β crew at full strength.,False
upd_000675,act_004_04,proj_004,2022-10-22,50.1,15.0,True,True,22,Overtime shift completed to recover schedule.,False
upd_000676,act_004_04,proj_004,2022-10-23,59.3,9.18,True,False,9,Safety toolbox talk held; no incidents.,False
upd_000677,act_004_04,proj_004,2022-10-24,71.6,12.27,True,False,22,Minor delays due to material delivery.,False
upd_000678,act_004_04,proj_004,2022-10-25,80.8,9.25,False,False,11,Waiting for subcontractor sign-off.,False
upd_000679,act_004_04,proj_004,2022-10-26,89.9,9.12,False,False,6,All tasks on track per daily plan.,False
upd_000680,act_004_04,proj_004,2022-10-27,100.0,10.1,False,False,18,Work progressing as planned.,False
upd_000681,act_004_05,proj_004,2022-10-17,7.2,7.18,True,False,12,Night shift deployed to catch up.,False
upd_000682,act_004_05,proj_004,2022-10-18,11.7,4.55,True,True,17,Good progress β crew at full strength.,True
upd_000683,act_004_05,proj_004,2022-10-19,18.4,6.73,True,False,21,Overtime shift completed to recover schedule.,False
upd_000684,act_004_05,proj_004,2022-10-20,27.0,8.65,False,False,11,Good progress β crew at full strength.,True
upd_000685,act_004_05,proj_004,2022-10-21,31.7,4.7,True,False,4,Waiting for subcontractor sign-off.,False
upd_000686,act_004_05,proj_004,2022-10-22,37.7,6.01,True,False,16,Good progress β crew at full strength.,False
upd_000687,act_004_05,proj_004,2022-10-23,43.1,5.44,False,False,6,Waiting for subcontractor sign-off.,False
upd_000688,act_004_05,proj_004,2022-10-24,54.8,11.65,True,False,4,Overtime shift completed to recover schedule.,False
upd_000689,act_004_05,proj_004,2022-10-25,59.4,4.62,False,False,9,Work progressing as planned.,False
upd_000690,act_004_05,proj_004,2022-10-26,63.5,4.05,True,False,21,Productivity affected by heat; hydration breaks added.,True
upd_000691,act_004_05,proj_004,2022-10-27,67.3,3.81,True,False,13,Weather caused brief stoppage.,False
upd_000692,act_004_05,proj_004,2022-10-28,75.5,8.23,True,False,19,Good progress β crew at full strength.,True
upd_000693,act_004_05,proj_004,2022-10-29,79.7,4.2,True,True,19,Weather caused brief stoppage.,True
upd_000694,act_004_05,proj_004,2022-10-30,84.5,4.77,True,False,6,Material quality check done; passed.,True
upd_000695,act_004_05,proj_004,2022-10-31,91.4,6.95,True,False,19,Equipment breakdown caused 2-hour downtime.,False
upd_000696,act_004_05,proj_004,2022-11-01,99.9,8.45,True,False,9,Waiting for subcontractor sign-off.,False
upd_000697,act_004_06,proj_004,2022-10-19,8.0,7.99,True,False,12,Material quality check done; passed.,False
upd_000698,act_004_06,proj_004,2022-10-20,11.1,3.06,True,False,5,Good progress β crew at full strength.,False
upd_000699,act_004_06,proj_004,2022-10-21,12.7,1.57,True,False,15,Night shift deployed to catch up.,False
upd_000700,act_004_06,proj_004,2022-10-22,21.4,8.65,True,False,21,Work progressing as planned.,False
upd_000701,act_004_06,proj_004,2022-10-23,34.6,13.18,True,False,21,Rework required on small section.,False
upd_000702,act_004_06,proj_004,2022-10-24,39.8,5.22,False,False,19,Inspection checkpoint cleared.,False
upd_000703,act_004_06,proj_004,2022-10-25,46.9,7.07,True,False,20,Safety toolbox talk held; no incidents.,True
upd_000704,act_004_06,proj_004,2022-10-26,57.2,10.31,True,False,8,Minor delays due to material delivery.,False
upd_000705,act_004_06,proj_004,2022-10-27,65.2,8.02,False,False,9,Weather caused brief stoppage.,False
upd_000706,act_004_06,proj_004,2022-10-28,74.9,9.71,True,False,17,Weather caused brief stoppage.,False
upd_000707,act_004_06,proj_004,2022-10-29,84.7,9.79,False,False,12,Waiting for subcontractor sign-off.,False
upd_000708,act_004_06,proj_004,2022-10-30,88.0,3.34,True,False,16,Client walkthrough conducted.,False
upd_000709,act_004_06,proj_004,2022-10-31,88.7,0.71,True,False,18,Equipment breakdown caused 2-hour downtime.,False
upd_000710,act_004_06,proj_004,2022-11-01,95.5,6.75,True,False,20,Night shift deployed to catch up.,False
upd_000711,act_004_06,proj_004,2022-11-02,100.0,4.62,True,False,22,Safety toolbox talk held; no incidents.,False
upd_000712,act_004_07,proj_004,2022-10-20,5.8,5.85,False,False,22,Night shift deployed to catch up.,False
upd_000713,act_004_07,proj_004,2022-10-21,14.6,8.83,True,False,15,Equipment breakdown caused 2-hour downtime.,True
upd_000714,act_004_07,proj_004,2022-10-22,22.4,7.77,True,False,19,Work progressing as planned.,False
upd_000715,act_004_07,proj_004,2022-10-23,31.7,9.28,True,False,16,Work progressing as planned.,False
upd_000716,act_004_07,proj_004,2022-10-24,33.8,2.14,True,False,5,Productivity affected by heat; hydration breaks added.,False
upd_000717,act_004_07,proj_004,2022-10-25,39.6,5.75,True,False,14,All tasks on track per daily plan.,False
upd_000718,act_004_07,proj_004,2022-10-26,49.5,9.89,False,False,7,All tasks on track per daily plan.,False
upd_000719,act_004_07,proj_004,2022-10-27,57.8,8.35,False,False,14,Inspection checkpoint cleared.,False
upd_000720,act_004_07,proj_004,2022-10-28,65.7,7.93,True,False,18,Weather caused brief stoppage.,False
upd_000721,act_004_07,proj_004,2022-10-29,70.5,4.76,True,False,20,All tasks on track per daily plan.,False
upd_000722,act_004_07,proj_004,2022-10-30,83.6,13.12,False,True,6,Inspection checkpoint cleared.,False
upd_000723,act_004_07,proj_004,2022-10-31,94.2,10.61,False,False,20,Equipment breakdown caused 2-hour downtime.,False
upd_000724,act_004_07,proj_004,2022-11-01,99.9,5.72,False,False,10,All tasks on track per daily plan.,False
upd_000725,act_004_08,proj_004,2022-11-02,9.7,9.75,True,True,15,Productivity affected by heat; hydration breaks added.,True
upd_000726,act_004_08,proj_004,2022-11-03,16.9,7.15,True,False,16,Rework required on small section.,False
upd_000727,act_004_08,proj_004,2022-11-04,25.7,8.83,True,False,19,Safety toolbox talk held; no incidents.,False
upd_000728,act_004_08,proj_004,2022-11-05,38.0,12.26,True,False,21,Waiting for subcontractor sign-off.,False
upd_000729,act_004_08,proj_004,2022-11-06,45.4,7.35,True,False,6,Inspection checkpoint cleared.,False
upd_000730,act_004_08,proj_004,2022-11-07,47.7,2.33,False,True,10,All tasks on track per daily plan.,True
upd_000731,act_004_08,proj_004,2022-11-08,55.5,7.78,True,False,17,Client walkthrough conducted.,False
upd_000732,act_004_08,proj_004,2022-11-09,63.5,8.02,False,False,4,Material quality check done; passed.,True
upd_000733,act_004_08,proj_004,2022-11-10,72.1,8.62,True,False,4,Weather caused brief stoppage.,False
upd_000734,act_004_08,proj_004,2022-11-11,79.9,7.83,True,False,12,Overtime shift completed to recover schedule.,False
upd_000735,act_004_08,proj_004,2022-11-12,89.0,9.06,True,False,10,Material quality check done; passed.,False
upd_000736,act_004_08,proj_004,2022-11-13,100.0,11.02,True,False,22,Minor delays due to material delivery.,False
upd_000737,act_004_09,proj_004,2022-11-14,4.5,4.51,False,False,15,Client walkthrough conducted.,True
upd_000738,act_004_09,proj_004,2022-11-15,9.5,5.03,True,False,7,Material quality check done; passed.,False
upd_000739,act_004_09,proj_004,2022-11-16,15.7,6.22,True,False,12,Inspection checkpoint cleared.,True
upd_000740,act_004_09,proj_004,2022-11-17,25.3,9.58,True,False,10,Good progress β crew at full strength.,False
upd_000741,act_004_09,proj_004,2022-11-18,27.6,2.33,True,False,16,Rework required on small section.,False
upd_000742,act_004_09,proj_004,2022-11-19,35.3,7.73,True,False,19,Inspection checkpoint cleared.,False
upd_000743,act_004_09,proj_004,2022-11-20,44.6,9.26,True,False,5,Safety toolbox talk held; no incidents.,False
upd_000744,act_004_09,proj_004,2022-11-21,48.2,3.61,True,False,11,Rework required on small section.,False
upd_000745,act_004_09,proj_004,2022-11-22,48.2,0.0,False,False,15,Client walkthrough conducted.,False
upd_000746,act_004_09,proj_004,2022-11-23,58.8,10.62,True,False,21,Good progress β crew at full strength.,False
upd_000747,act_004_09,proj_004,2022-11-24,66.5,7.67,False,False,21,Night shift deployed to catch up.,False
upd_000748,act_004_09,proj_004,2022-11-25,71.2,4.7,False,False,6,Weather caused brief stoppage.,False
upd_000749,act_004_09,proj_004,2022-11-26,71.2,0.0,True,False,14,Waiting for subcontractor sign-off.,False
upd_000750,act_004_09,proj_004,2022-11-27,77.0,5.8,False,False,19,Work progressing as planned.,False
upd_000751,act_004_09,proj_004,2022-11-28,82.2,5.19,False,False,6,Material quality check done; passed.,False
upd_000752,act_004_09,proj_004,2022-11-29,82.7,0.52,False,False,16,Client walkthrough conducted.,False
upd_000753,act_004_09,proj_004,2022-11-30,85.2,2.49,False,True,8,Weather caused brief stoppage.,False
upd_000754,act_004_09,proj_004,2022-12-01,90.4,5.24,False,False,18,Good progress β crew at full strength.,False
upd_000755,act_004_09,proj_004,2022-12-02,96.2,5.76,False,False,19,Waiting for subcontractor sign-off.,False
upd_000756,act_004_09,proj_004,2022-12-03,99.9,3.74,True,False,4,Material quality check done; passed.,False
upd_000757,act_004_10,proj_004,2022-11-03,9.8,9.8,True,False,9,Material quality check done; passed.,False
upd_000758,act_004_10,proj_004,2022-11-04,15.1,5.29,True,False,17,Rework required on small section.,False
upd_000759,act_004_10,proj_004,2022-11-05,19.6,4.48,True,False,4,Work progressing as planned.,False
upd_000760,act_004_10,proj_004,2022-11-06,22.8,3.2,False,False,14,Night shift deployed to catch up.,False
upd_000761,act_004_10,proj_004,2022-11-07,26.1,3.3,True,False,11,Weather caused brief stoppage.,False
upd_000762,act_004_10,proj_004,2022-11-08,35.5,9.43,True,False,16,Client walkthrough conducted.,False
upd_000763,act_004_10,proj_004,2022-11-09,42.5,7.0,False,False,13,Inspection checkpoint cleared.,False
upd_000764,act_004_10,proj_004,2022-11-10,48.7,6.22,True,False,17,Equipment breakdown caused 2-hour downtime.,False
upd_000765,act_004_10,proj_004,2022-11-11,55.2,6.54,False,False,19,Waiting for subcontractor sign-off.,False
upd_000766,act_004_10,proj_004,2022-11-12,55.2,0.0,False,False,16,Work progressing as planned.,False
upd_000767,act_004_10,proj_004,2022-11-13,61.2,5.98,True,False,4,Safety toolbox talk held; no incidents.,False
upd_000768,act_004_10,proj_004,2022-11-14,73.7,12.48,True,False,5,Overtime shift completed to recover schedule.,False
upd_000769,act_004_10,proj_004,2022-11-15,74.9,1.17,True,False,5,Safety toolbox talk held; no incidents.,False
upd_000770,act_004_10,proj_004,2022-11-16,77.2,2.26,True,False,4,Work progressing as planned.,False
upd_000771,act_004_10,proj_004,2022-11-17,84.4,7.22,True,False,21,Inspection checkpoint cleared.,False
upd_000772,act_004_10,proj_004,2022-11-18,87.6,3.18,True,False,4,Inspection checkpoint cleared.,False
upd_000773,act_004_10,proj_004,2022-11-19,94.6,6.95,True,False,8,Overtime shift completed to recover schedule.,False
upd_000774,act_004_10,proj_004,2022-11-20,100.0,5.49,True,False,7,Inspection checkpoint cleared.,False
upd_000775,act_004_11,proj_004,2022-11-21,4.2,4.25,True,False,10,Night shift deployed to catch up.,True
upd_000776,act_004_11,proj_004,2022-11-22,10.6,6.37,True,False,17,Inspection checkpoint cleared.,False
upd_000777,act_004_11,proj_004,2022-11-23,17.0,6.45,False,False,19,Waiting for subcontractor sign-off.,False
upd_000778,act_004_11,proj_004,2022-11-24,21.2,4.18,True,True,7,All tasks on track per daily plan.,False
upd_000779,act_004_11,proj_004,2022-11-25,26.8,5.65,False,False,20,Minor delays due to material delivery.,False
upd_000780,act_004_11,proj_004,2022-11-26,37.0,10.19,True,False,11,Material quality check done; passed.,False
upd_000781,act_004_11,proj_004,2022-11-27,48.3,11.33,True,False,7,All tasks on track per daily plan.,False
upd_000782,act_004_11,proj_004,2022-11-28,60.7,12.45,True,True,14,Overtime shift completed to recover schedule.,False
upd_000783,act_004_11,proj_004,2022-11-29,68.1,7.39,False,False,5,Work progressing as planned.,False
upd_000784,act_004_11,proj_004,2022-11-30,78.1,10.02,True,False,15,Equipment breakdown caused 2-hour downtime.,False
upd_000785,act_004_11,proj_004,2022-12-01,86.2,8.13,False,False,6,Waiting for subcontractor sign-off.,False
upd_000786,act_004_11,proj_004,2022-12-02,92.8,6.61,True,False,18,Inspection checkpoint cleared.,False
upd_000787,act_004_11,proj_004,2022-12-03,99.8,7.01,True,False,17,Rework required on small section.,False
upd_000788,act_004_12,proj_004,2022-12-06,7.3,7.33,True,False,5,All tasks on track per daily plan.,False
upd_000789,act_004_12,proj_004,2022-12-07,16.7,9.4,True,False,22,Rework required on small section.,False
upd_000790,act_004_12,proj_004,2022-12-08,24.2,7.46,False,False,4,All tasks on track per daily plan.,False
upd_000791,act_004_12,proj_004,2022-12-09,29.1,4.86,False,False,8,Material quality check done; passed.,False
upd_000792,act_004_12,proj_004,2022-12-10,32.5,3.37,True,False,5,Minor delays due to material delivery.,False
upd_000793,act_004_12,proj_004,2022-12-11,40.8,8.31,True,False,20,Night shift deployed to catch up.,False
upd_000794,act_004_12,proj_004,2022-12-12,50.3,9.51,True,False,14,Client walkthrough conducted.,False
upd_000795,act_004_12,proj_004,2022-12-13,56.6,6.34,True,False,11,Material quality check done; passed.,False
upd_000796,act_004_12,proj_004,2022-12-14,60.9,4.33,True,False,21,Equipment breakdown caused 2-hour downtime.,False
upd_000797,act_004_12,proj_004,2022-12-15,65.7,4.75,True,True,9,Client walkthrough conducted.,False
upd_000798,act_004_12,proj_004,2022-12-16,71.7,6.01,False,False,6,Night shift deployed to catch up.,False
upd_000799,act_004_12,proj_004,2022-12-17,76.0,4.26,False,False,5,Client walkthrough conducted.,False
upd_000800,act_004_12,proj_004,2022-12-18,82.3,6.26,True,False,11,Minor delays due to material delivery.,False
upd_000801,act_004_12,proj_004,2022-12-19,89.3,6.98,True,False,19,Material quality check done; passed.,False
upd_000802,act_004_12,proj_004,2022-12-20,93.0,3.69,False,False,4,Minor delays due to material delivery.,False
upd_000803,act_004_12,proj_004,2022-12-21,93.7,0.71,True,True,6,Night shift deployed to catch up.,False
upd_000804,act_004_12,proj_004,2022-12-22,100.0,6.42,True,False,20,Client walkthrough conducted.,False
upd_000805,act_004_13,proj_004,2022-12-23,7.0,6.98,False,False,15,All tasks on track per daily plan.,False
upd_000806,act_004_13,proj_004,2022-12-24,12.8,5.8,True,False,21,Night shift deployed to catch up.,True
upd_000807,act_004_13,proj_004,2022-12-25,15.9,3.09,True,False,18,Minor delays due to material delivery.,False
upd_000808,act_004_13,proj_004,2022-12-26,21.6,5.72,True,False,15,All tasks on track per daily plan.,True
upd_000809,act_004_13,proj_004,2022-12-27,22.1,0.49,True,False,15,Productivity affected by heat; hydration breaks added.,False
upd_000810,act_004_13,proj_004,2022-12-28,26.5,4.42,True,False,17,Minor delays due to material delivery.,True
upd_000811,act_004_13,proj_004,2022-12-29,33.9,7.39,True,False,16,Weather caused brief stoppage.,False
upd_000812,act_004_13,proj_004,2022-12-30,36.8,2.85,True,False,7,Night shift deployed to catch up.,False
upd_000813,act_004_13,proj_004,2022-12-31,47.9,11.07,False,False,22,Minor delays due to material delivery.,False
upd_000814,act_004_13,proj_004,2023-01-01,51.8,3.88,True,False,20,Good progress β crew at full strength.,False
upd_000815,act_004_13,proj_004,2023-01-02,58.6,6.78,False,True,21,Equipment breakdown caused 2-hour downtime.,False
upd_000816,act_004_13,proj_004,2023-01-03,63.3,4.74,False,False,9,Productivity affected by heat; hydration breaks added.,False
upd_000817,act_004_13,proj_004,2023-01-04,73.8,10.49,True,False,16,Rework required on small section.,False
upd_000818,act_004_13,proj_004,2023-01-05,82.5,8.74,True,False,16,Overtime shift completed to recover schedule.,False
upd_000819,act_004_13,proj_004,2023-01-06,86.1,3.65,False,False,12,Overtime shift completed to recover schedule.,False
upd_000820,act_004_13,proj_004,2023-01-07,93.7,7.65,True,False,8,Good progress β crew at full strength.,False
upd_000821,act_004_13,proj_004,2023-01-08,99.9,6.25,False,False,13,All tasks on track per daily plan.,False
upd_000822,act_004_14,proj_004,2023-01-10,7.3,7.32,True,False,21,Rework required on small section.,False
upd_000823,act_004_14,proj_004,2023-01-11,14.0,6.71,True,False,15,Equipment breakdown caused 2-hour downtime.,False
upd_000824,act_004_14,proj_004,2023-01-12,23.7,9.67,True,False,9,Client walkthrough conducted.,False
upd_000825,act_004_14,proj_004,2023-01-13,34.7,11.01,True,False,15,Client walkthrough conducted.,False
upd_000826,act_004_14,proj_004,2023-01-14,41.7,7.05,True,False,17,Rework required on small section.,False
upd_000827,act_004_14,proj_004,2023-01-15,52.6,10.9,True,False,17,Night shift deployed to catch up.,False
upd_000828,act_004_14,proj_004,2023-01-16,64.1,11.52,True,False,5,Rework required on small section.,True
upd_000829,act_004_14,proj_004,2023-01-17,71.6,7.49,False,False,13,Rework required on small section.,True
upd_000830,act_004_14,proj_004,2023-01-18,79.6,8.0,True,False,13,Weather caused brief stoppage.,False
upd_000831,act_004_14,proj_004,2023-01-19,86.0,6.42,False,True,7,Safety toolbox talk held; no incidents.,False
upd_000832,act_004_14,proj_004,2023-01-20,99.9,13.92,False,False,21,Overtime shift completed to recover schedule.,False
upd_000833,act_004_15,proj_004,2023-01-23,16.0,15.95,False,False,13,Productivity affected by heat; hydration breaks added.,False
upd_000834,act_004_15,proj_004,2023-01-24,31.8,15.82,True,False,14,Client walkthrough conducted.,False
upd_000835,act_004_15,proj_004,2023-01-25,44.9,13.07,True,False,18,All tasks on track per daily plan.,True
upd_000836,act_004_15,proj_004,2023-01-26,61.4,16.51,True,False,15,Night shift deployed to catch up.,False
upd_000837,act_004_15,proj_004,2023-01-27,73.5,12.13,True,False,10,Inspection checkpoint cleared.,False
upd_000838,act_004_15,proj_004,2023-01-28,85.5,12.04,True,False,9,Productivity affected by heat; hydration breaks added.,False
upd_000839,act_004_15,proj_004,2023-01-29,100.0,14.48,True,False,21,Inspection checkpoint cleared.,False
upd_000840,act_005_01,proj_005,2023-01-05,9.5,9.48,True,False,14,Material quality check done; passed.,False
upd_000841,act_005_01,proj_005,2023-01-06,20.3,10.83,True,False,14,Safety toolbox talk held; no incidents.,False
upd_000842,act_005_01,proj_005,2023-01-07,30.9,10.6,True,False,13,Material quality check done; passed.,True
upd_000843,act_005_01,proj_005,2023-01-08,47.8,16.9,True,False,14,Client walkthrough conducted.,False
upd_000844,act_005_01,proj_005,2023-01-09,56.7,8.91,True,False,20,Good progress β crew at full strength.,False
upd_000845,act_005_01,proj_005,2023-01-10,73.2,16.48,True,False,11,Equipment breakdown caused 2-hour downtime.,False
upd_000846,act_005_01,proj_005,2023-01-11,87.5,14.31,True,False,10,Night shift deployed to catch up.,False
upd_000847,act_005_01,proj_005,2023-01-12,100.0,12.49,True,False,4,Minor delays due to material delivery.,False
upd_000848,act_005_02,proj_005,2023-01-13,2.4,2.39,False,False,11,Work progressing as planned.,False
upd_000849,act_005_02,proj_005,2023-01-14,9.6,7.18,False,False,7,Overtime shift completed to recover schedule.,False
upd_000850,act_005_02,proj_005,2023-01-15,17.5,7.93,True,False,20,All tasks on track per daily plan.,False
upd_000851,act_005_02,proj_005,2023-01-16,28.1,10.6,True,False,19,Work progressing as planned.,False
upd_000852,act_005_02,proj_005,2023-01-17,28.4,0.27,True,False,6,Minor delays due to material delivery.,False
upd_000853,act_005_02,proj_005,2023-01-18,36.1,7.68,True,False,4,Rework required on small section.,False
upd_000854,act_005_02,proj_005,2023-01-19,46.0,9.86,False,False,17,All tasks on track per daily plan.,True
upd_000855,act_005_02,proj_005,2023-01-20,55.9,9.94,True,False,17,Rework required on small section.,True
upd_000856,act_005_02,proj_005,2023-01-21,70.2,14.33,True,False,4,Material quality check done; passed.,False
upd_000857,act_005_02,proj_005,2023-01-22,73.1,2.86,True,True,9,Night shift deployed to catch up.,False
upd_000858,act_005_02,proj_005,2023-01-23,80.8,7.66,False,False,12,Overtime shift completed to recover schedule.,False
upd_000859,act_005_02,proj_005,2023-01-24,84.0,3.25,True,False,4,Overtime shift completed to recover schedule.,False
upd_000860,act_005_02,proj_005,2023-01-25,89.3,5.34,True,False,6,Night shift deployed to catch up.,False
upd_000861,act_005_02,proj_005,2023-01-26,100.0,10.7,False,True,15,Equipment breakdown caused 2-hour downtime.,False
upd_000862,act_005_03,proj_005,2023-01-27,2.5,2.5,True,False,6,Inspection checkpoint cleared.,False
upd_000863,act_005_03,proj_005,2023-01-28,2.5,0.0,True,False,4,Material quality check done; passed.,False
upd_000864,act_005_03,proj_005,2023-01-29,9.3,6.8,False,False,21,Inspection checkpoint cleared.,False
upd_000865,act_005_03,proj_005,2023-01-30,9.3,0.0,True,False,15,Work progressing as planned.,False
upd_000866,act_005_03,proj_005,2023-01-31,14.5,5.16,True,False,4,Safety toolbox talk held; no incidents.,False
upd_000867,act_005_03,proj_005,2023-02-01,18.9,4.41,False,False,13,Weather caused brief stoppage.,False
upd_000868,act_005_03,proj_005,2023-02-02,28.2,9.31,True,False,17,Equipment breakdown caused 2-hour downtime.,False
upd_000869,act_005_03,proj_005,2023-02-03,33.9,5.73,True,False,11,Safety toolbox talk held; no incidents.,False
upd_000870,act_005_03,proj_005,2023-02-04,35.4,1.52,True,False,22,All tasks on track per daily plan.,False
upd_000871,act_005_03,proj_005,2023-02-05,40.1,4.68,False,False,21,Material quality check done; passed.,True
upd_000872,act_005_03,proj_005,2023-02-06,42.0,1.92,True,False,12,Minor delays due to material delivery.,False
upd_000873,act_005_03,proj_005,2023-02-07,50.1,8.06,False,False,15,Good progress β crew at full strength.,False
upd_000874,act_005_03,proj_005,2023-02-08,54.1,3.96,True,False,6,Equipment breakdown caused 2-hour downtime.,False
upd_000875,act_005_03,proj_005,2023-02-09,58.5,4.37,True,False,13,Productivity affected by heat; hydration breaks added.,False
upd_000876,act_005_03,proj_005,2023-02-10,67.8,9.3,True,False,14,Overtime shift completed to recover schedule.,False
upd_000877,act_005_03,proj_005,2023-02-11,74.5,6.73,False,False,17,Inspection checkpoint cleared.,False
upd_000878,act_005_03,proj_005,2023-02-12,84.8,10.26,False,False,19,Material quality check done; passed.,False
upd_000879,act_005_03,proj_005,2023-02-13,94.2,9.37,True,False,7,Good progress β crew at full strength.,False
upd_000880,act_005_03,proj_005,2023-02-14,96.9,2.68,True,False,8,Equipment breakdown caused 2-hour downtime.,False
upd_000881,act_005_03,proj_005,2023-02-15,100.0,3.27,False,False,6,Productivity affected by heat; hydration breaks added.,False
upd_000882,act_005_04,proj_005,2023-02-18,10.5,10.53,True,True,4,All tasks on track per daily plan.,True
upd_000883,act_005_04,proj_005,2023-02-19,29.1,18.62,True,False,5,Client walkthrough conducted.,False
upd_000884,act_005_04,proj_005,2023-02-20,34.5,5.45,True,False,8,Waiting for subcontractor sign-off.,False
upd_000885,act_005_04,proj_005,2023-02-21,46.6,12.1,True,False,13,Good progress β crew at full strength.,False
upd_000886,act_005_04,proj_005,2023-02-22,54.2,7.61,True,False,20,Work progressing as planned.,False
upd_000887,act_005_04,proj_005,2023-02-23,62.7,8.47,False,False,9,Night shift deployed to catch up.,False
upd_000888,act_005_04,proj_005,2023-02-24,73.2,10.54,True,False,22,Rework required on small section.,False
upd_000889,act_005_04,proj_005,2023-02-25,88.0,14.79,False,False,15,Work progressing as planned.,False
upd_000890,act_005_04,proj_005,2023-02-26,99.9,11.89,True,False,15,Weather caused brief stoppage.,False
upd_000891,act_005_05,proj_005,2023-02-16,0.5,0.46,False,False,15,Overtime shift completed to recover schedule.,True
upd_000892,act_005_05,proj_005,2023-02-17,6.0,5.52,True,False,14,Minor delays due to material delivery.,False
upd_000893,act_005_05,proj_005,2023-02-18,17.1,11.06,False,False,12,Safety toolbox talk held; no incidents.,False
upd_000894,act_005_05,proj_005,2023-02-19,21.2,4.05,True,False,15,Safety toolbox talk held; no incidents.,False
upd_000895,act_005_05,proj_005,2023-02-20,24.3,3.1,True,False,16,Equipment breakdown caused 2-hour downtime.,False
upd_000896,act_005_05,proj_005,2023-02-21,34.0,9.66,False,False,15,Material quality check done; passed.,False
upd_000897,act_005_05,proj_005,2023-02-22,46.6,12.61,True,False,8,Material quality check done; passed.,False
upd_000898,act_005_05,proj_005,2023-02-23,48.7,2.15,True,False,10,Good progress β crew at full strength.,False
upd_000899,act_005_05,proj_005,2023-02-24,49.0,0.31,True,False,7,Rework required on small section.,False
upd_000900,act_005_05,proj_005,2023-02-25,55.6,6.62,False,False,19,Rework required on small section.,False
upd_000901,act_005_05,proj_005,2023-02-26,66.0,10.37,True,False,17,Work progressing as planned.,False
upd_000902,act_005_05,proj_005,2023-02-27,78.0,12.0,True,False,8,Rework required on small section.,False
upd_000903,act_005_05,proj_005,2023-02-28,83.3,5.27,True,False,9,Inspection checkpoint cleared.,False
upd_000904,act_005_05,proj_005,2023-03-01,92.3,9.04,True,False,22,Rework required on small section.,False
upd_000905,act_005_05,proj_005,2023-03-02,100.0,7.79,True,False,13,Minor delays due to material delivery.,True
upd_000906,act_005_06,proj_005,2023-02-16,9.2,9.24,True,False,19,Good progress β crew at full strength.,False
upd_000907,act_005_06,proj_005,2023-02-17,16.3,7.13,True,False,22,All tasks on track per daily plan.,False
upd_000908,act_005_06,proj_005,2023-02-18,23.9,7.59,True,False,9,Productivity affected by heat; hydration breaks added.,False
upd_000909,act_005_06,proj_005,2023-02-19,32.3,8.43,True,False,6,Weather caused brief stoppage.,False
upd_000910,act_005_06,proj_005,2023-02-20,37.5,5.15,True,False,20,All tasks on track per daily plan.,False
upd_000911,act_005_06,proj_005,2023-02-21,44.0,6.51,False,False,7,Good progress β crew at full strength.,False
upd_000912,act_005_06,proj_005,2023-02-22,48.4,4.42,True,False,21,Client walkthrough conducted.,False
upd_000913,act_005_06,proj_005,2023-02-23,56.6,8.18,True,False,21,All tasks on track per daily plan.,False
upd_000914,act_005_06,proj_005,2023-02-24,60.3,3.7,True,False,17,Client walkthrough conducted.,True
upd_000915,act_005_06,proj_005,2023-02-25,67.6,7.32,True,False,17,Weather caused brief stoppage.,False
upd_000916,act_005_06,proj_005,2023-02-26,72.3,4.65,False,False,15,Safety toolbox talk held; no incidents.,False
upd_000917,act_005_06,proj_005,2023-02-27,78.2,5.85,False,False,22,Minor delays due to material delivery.,False
upd_000918,act_005_06,proj_005,2023-02-28,87.6,9.39,False,False,6,Inspection checkpoint cleared.,False
upd_000919,act_005_06,proj_005,2023-03-01,95.0,7.44,True,False,4,Productivity affected by heat; hydration breaks added.,False
upd_000920,act_005_06,proj_005,2023-03-02,95.0,0.0,True,True,20,Work progressing as planned.,False
upd_000921,act_005_06,proj_005,2023-03-03,100.0,4.99,False,False,17,Waiting for subcontractor sign-off.,False
upd_000922,act_005_07,proj_005,2023-02-16,5.9,5.88,True,False,12,All tasks on track per daily plan.,True
upd_000923,act_005_07,proj_005,2023-02-17,13.2,7.25,True,False,16,Night shift deployed to catch up.,False
upd_000924,act_005_07,proj_005,2023-02-18,23.6,10.38,True,False,9,Waiting for subcontractor sign-off.,False
upd_000925,act_005_07,proj_005,2023-02-19,36.8,13.2,False,False,22,Waiting for subcontractor sign-off.,False
upd_000926,act_005_07,proj_005,2023-02-20,45.2,8.35,True,False,7,Productivity affected by heat; hydration breaks added.,False
upd_000927,act_005_07,proj_005,2023-02-21,49.7,4.52,False,False,7,Weather caused brief stoppage.,False
upd_000928,act_005_07,proj_005,2023-02-22,57.7,8.03,False,False,5,Good progress β crew at full strength.,False
upd_000929,act_005_07,proj_005,2023-02-23,66.0,8.28,False,False,8,Material quality check done; passed.,False
upd_000930,act_005_07,proj_005,2023-02-24,75.6,9.62,True,False,11,Waiting for subcontractor sign-off.,False
upd_000931,act_005_07,proj_005,2023-02-25,90.2,14.62,True,True,16,Safety toolbox talk held; no incidents.,True
upd_000932,act_005_07,proj_005,2023-02-26,100.0,9.86,False,False,5,Night shift deployed to catch up.,False
upd_000933,act_005_08,proj_005,2023-03-06,7.2,7.18,True,False,10,All tasks on track per daily plan.,False
upd_000934,act_005_08,proj_005,2023-03-07,17.4,10.15,True,False,5,Night shift deployed to catch up.,False
upd_000935,act_005_08,proj_005,2023-03-08,28.3,10.88,True,False,9,Rework required on small section.,False
upd_000936,act_005_08,proj_005,2023-03-09,40.8,12.47,True,False,9,Minor delays due to material delivery.,True
upd_000937,act_005_08,proj_005,2023-03-10,49.4,8.65,True,False,16,Overtime shift completed to recover schedule.,False
upd_000938,act_005_08,proj_005,2023-03-11,56.8,7.44,False,False,6,Equipment breakdown caused 2-hour downtime.,False
upd_000939,act_005_08,proj_005,2023-03-12,63.2,6.44,False,False,22,Waiting for subcontractor sign-off.,True
upd_000940,act_005_08,proj_005,2023-03-13,70.4,7.21,True,False,10,Material quality check done; passed.,False
upd_000941,act_005_08,proj_005,2023-03-14,80.3,9.85,True,False,17,Client walkthrough conducted.,False
upd_000942,act_005_08,proj_005,2023-03-15,90.5,10.2,True,False,7,Night shift deployed to catch up.,True
upd_000943,act_005_08,proj_005,2023-03-16,100.0,9.52,True,False,22,Inspection checkpoint cleared.,False
upd_000944,act_005_09,proj_005,2023-03-17,8.0,7.98,True,False,11,Night shift deployed to catch up.,False
upd_000945,act_005_09,proj_005,2023-03-18,12.6,4.64,True,False,22,All tasks on track per daily plan.,False
upd_000946,act_005_09,proj_005,2023-03-19,17.5,4.91,True,False,11,Rework required on small section.,True
upd_000947,act_005_09,proj_005,2023-03-20,22.5,4.98,True,False,15,Client walkthrough conducted.,False
upd_000948,act_005_09,proj_005,2023-03-21,25.6,3.09,True,False,13,Minor delays due to material delivery.,False
upd_000949,act_005_09,proj_005,2023-03-22,29.3,3.71,True,False,21,Equipment breakdown caused 2-hour downtime.,False
upd_000950,act_005_09,proj_005,2023-03-23,38.6,9.25,True,False,22,Inspection checkpoint cleared.,False
upd_000951,act_005_09,proj_005,2023-03-24,47.0,8.43,False,False,10,Material quality check done; passed.,False
upd_000952,act_005_09,proj_005,2023-03-25,50.0,2.95,True,False,12,Weather caused brief stoppage.,False
upd_000953,act_005_09,proj_005,2023-03-26,54.4,4.41,False,False,15,Good progress β crew at full strength.,False
upd_000954,act_005_09,proj_005,2023-03-27,59.2,4.77,True,False,19,Safety toolbox talk held; no incidents.,False
upd_000955,act_005_09,proj_005,2023-03-28,61.8,2.56,False,False,19,Waiting for subcontractor sign-off.,True
upd_000956,act_005_09,proj_005,2023-03-29,67.5,5.72,False,False,22,All tasks on track per daily plan.,False
upd_000957,act_005_09,proj_005,2023-03-30,68.3,0.81,False,False,20,Inspection checkpoint cleared.,False
upd_000958,act_005_09,proj_005,2023-03-31,76.9,8.58,True,False,20,Night shift deployed to catch up.,False
upd_000959,act_005_09,proj_005,2023-04-01,84.8,7.89,True,False,15,Overtime shift completed to recover schedule.,False
upd_000960,act_005_09,proj_005,2023-04-02,95.6,10.81,True,False,7,Productivity affected by heat; hydration breaks added.,False
upd_000961,act_005_09,proj_005,2023-04-03,99.1,3.52,True,False,10,Overtime shift completed to recover schedule.,False
upd_000962,act_005_09,proj_005,2023-04-04,100.0,0.96,True,False,12,Good progress β crew at full strength.,False
upd_000963,act_005_10,proj_005,2023-03-05,8.4,8.4,True,False,14,Waiting for subcontractor sign-off.,False
upd_000964,act_005_10,proj_005,2023-03-06,15.6,7.18,True,False,15,Waiting for subcontractor sign-off.,False
upd_000965,act_005_10,proj_005,2023-03-07,21.6,5.99,True,False,8,Safety toolbox talk held; no incidents.,False
upd_000966,act_005_10,proj_005,2023-03-08,29.3,7.65,False,False,11,Client walkthrough conducted.,False
upd_000967,act_005_10,proj_005,2023-03-09,38.9,9.58,True,False,8,Material quality check done; passed.,False
upd_000968,act_005_10,proj_005,2023-03-10,46.6,7.75,True,False,20,Client walkthrough conducted.,False
upd_000969,act_005_10,proj_005,2023-03-11,51.5,4.92,True,False,21,All tasks on track per daily plan.,False
upd_000970,act_005_10,proj_005,2023-03-12,55.7,4.24,True,False,5,Weather caused brief stoppage.,False
upd_000971,act_005_10,proj_005,2023-03-13,55.9,0.22,True,False,18,Productivity affected by heat; hydration breaks added.,False
upd_000972,act_005_10,proj_005,2023-03-14,65.1,9.2,True,False,12,Waiting for subcontractor sign-off.,False
upd_000973,act_005_10,proj_005,2023-03-15,73.3,8.23,False,False,10,Safety toolbox talk held; no incidents.,True
upd_000974,act_005_10,proj_005,2023-03-16,81.3,7.99,True,False,13,Waiting for subcontractor sign-off.,False
upd_000975,act_005_10,proj_005,2023-03-17,84.9,3.61,False,False,18,Equipment breakdown caused 2-hour downtime.,False
upd_000976,act_005_10,proj_005,2023-03-18,92.1,7.23,True,False,8,All tasks on track per daily plan.,True
upd_000977,act_005_10,proj_005,2023-03-19,96.5,4.41,True,False,22,Overtime shift completed to recover schedule.,False
upd_000978,act_005_10,proj_005,2023-03-20,99.9,3.4,True,False,11,Waiting for subcontractor sign-off.,False
upd_000979,act_005_11,proj_005,2023-03-22,7.8,7.78,True,False,16,Inspection checkpoint cleared.,False
upd_000980,act_005_11,proj_005,2023-03-23,11.2,3.4,False,False,22,Client walkthrough conducted.,False
upd_000981,act_005_11,proj_005,2023-03-24,15.9,4.74,True,False,4,Good progress β crew at full strength.,False
upd_000982,act_005_11,proj_005,2023-03-25,22.6,6.66,False,False,6,Weather caused brief stoppage.,False
upd_000983,act_005_11,proj_005,2023-03-26,34.6,12.03,True,False,19,Client walkthrough conducted.,False
upd_000984,act_005_11,proj_005,2023-03-27,48.0,13.35,True,False,6,Minor delays due to material delivery.,True
upd_000985,act_005_11,proj_005,2023-03-28,60.1,12.11,True,False,16,Inspection checkpoint cleared.,False
upd_000986,act_005_11,proj_005,2023-03-29,65.9,5.83,True,False,8,Good progress β crew at full strength.,False
upd_000987,act_005_11,proj_005,2023-03-30,78.3,12.45,True,False,15,All tasks on track per daily plan.,False
upd_000988,act_005_11,proj_005,2023-03-31,87.7,9.41,True,False,21,Equipment breakdown caused 2-hour downtime.,False
upd_000989,act_005_11,proj_005,2023-04-01,99.9,12.24,False,False,21,Good progress β crew at full strength.,False
upd_000990,act_005_12,proj_005,2023-04-02,7.0,6.97,False,False,22,Overtime shift completed to recover schedule.,False
upd_000991,act_005_12,proj_005,2023-04-03,11.7,4.71,True,False,15,Material quality check done; passed.,False
upd_000992,act_005_12,proj_005,2023-04-04,20.0,8.35,True,False,15,Overtime shift completed to recover schedule.,False
upd_000993,act_005_12,proj_005,2023-04-05,24.7,4.72,True,False,8,Waiting for subcontractor sign-off.,False
upd_000994,act_005_12,proj_005,2023-04-06,32.7,8.0,True,False,19,Night shift deployed to catch up.,False
upd_000995,act_005_12,proj_005,2023-04-07,43.4,10.73,True,True,13,Safety toolbox talk held; no incidents.,False
upd_000996,act_005_12,proj_005,2023-04-08,50.2,6.76,True,True,17,Equipment breakdown caused 2-hour downtime.,False
upd_000997,act_005_12,proj_005,2023-04-09,54.1,3.88,True,False,16,All tasks on track per daily plan.,False
upd_000998,act_005_12,proj_005,2023-04-10,60.9,6.78,True,False,11,Client walkthrough conducted.,False
upd_000999,act_005_12,proj_005,2023-04-11,69.5,8.57,False,False,12,Inspection checkpoint cleared.,False
upd_001000,act_005_12,proj_005,2023-04-12,77.1,7.64,True,False,10,All tasks on track per daily plan.,False
upd_001001,act_005_12,proj_005,2023-04-13,87.4,10.31,True,False,18,Safety toolbox talk held; no incidents.,True
upd_001002,act_005_12,proj_005,2023-04-14,96.3,8.89,True,False,14,Work progressing as planned.,False
upd_001003,act_005_12,proj_005,2023-04-15,97.1,0.84,True,False,7,Inspection checkpoint cleared.,False
upd_001004,act_005_12,proj_005,2023-04-16,99.9,2.84,False,False,11,Minor delays due to material delivery.,False
upd_001005,act_005_13,proj_005,2023-04-17,4.1,4.11,True,False,13,Night shift deployed to catch up.,False
upd_001006,act_005_13,proj_005,2023-04-18,10.2,6.15,True,False,5,Waiting for subcontractor sign-off.,False
upd_001007,act_005_13,proj_005,2023-04-19,19.0,8.84,True,False,12,Night shift deployed to catch up.,True
upd_001008,act_005_13,proj_005,2023-04-20,24.3,5.32,True,False,12,All tasks on track per daily plan.,False
upd_001009,act_005_13,proj_005,2023-04-21,28.6,4.27,False,True,11,Overtime shift completed to recover schedule.,False
upd_001010,act_005_13,proj_005,2023-04-22,32.7,4.1,False,False,5,Weather caused brief stoppage.,False
upd_001011,act_005_13,proj_005,2023-04-23,37.1,4.44,True,False,10,Material quality check done; passed.,False
upd_001012,act_005_13,proj_005,2023-04-24,47.3,10.18,False,False,9,Rework required on small section.,False
upd_001013,act_005_13,proj_005,2023-04-25,55.1,7.84,True,False,7,Inspection checkpoint cleared.,False
upd_001014,act_005_13,proj_005,2023-04-26,59.7,4.63,True,False,5,All tasks on track per daily plan.,False
upd_001015,act_005_13,proj_005,2023-04-27,61.7,2.0,True,False,17,Waiting for subcontractor sign-off.,False
upd_001016,act_005_13,proj_005,2023-04-28,72.7,10.98,True,False,16,Night shift deployed to catch up.,True
upd_001017,act_005_13,proj_005,2023-04-29,77.2,4.53,True,False,19,Productivity affected by heat; hydration breaks added.,False
upd_001018,act_005_13,proj_005,2023-04-30,86.1,8.94,True,False,9,Material quality check done; passed.,False
upd_001019,act_005_13,proj_005,2023-05-01,89.5,3.41,False,False,5,Work progressing as planned.,True
upd_001020,act_005_13,proj_005,2023-05-02,91.6,2.07,True,False,7,Good progress β crew at full strength.,False
upd_001021,act_005_13,proj_005,2023-05-03,99.8,8.2,True,False,15,Night shift deployed to catch up.,False
upd_001022,act_005_14,proj_005,2023-05-04,7.0,6.96,True,False,16,Waiting for subcontractor sign-off.,False
upd_001023,act_005_14,proj_005,2023-05-05,15.5,8.5,True,False,18,Client walkthrough conducted.,False
upd_001024,act_005_14,proj_005,2023-05-06,20.5,5.0,True,False,9,Client walkthrough conducted.,False
upd_001025,act_005_14,proj_005,2023-05-07,26.8,6.33,True,False,21,Good progress β crew at full strength.,False
upd_001026,act_005_14,proj_005,2023-05-08,34.8,7.96,True,False,12,Client walkthrough conducted.,True
upd_001027,act_005_14,proj_005,2023-05-09,39.5,4.67,True,True,16,Productivity affected by heat; hydration breaks added.,False
upd_001028,act_005_14,proj_005,2023-05-10,41.8,2.3,False,True,11,Waiting for subcontractor sign-off.,False
upd_001029,act_005_14,proj_005,2023-05-11,53.5,11.74,True,False,16,Weather caused brief stoppage.,False
upd_001030,act_005_14,proj_005,2023-05-12,65.5,12.03,True,False,13,Waiting for subcontractor sign-off.,False
upd_001031,act_005_14,proj_005,2023-05-13,70.7,5.18,True,False,6,Work progressing as planned.,False
upd_001032,act_005_14,proj_005,2023-05-14,86.9,16.23,False,False,10,Minor delays due to material delivery.,False
upd_001033,act_005_14,proj_005,2023-05-15,100.0,13.11,True,False,16,Rework required on small section.,False
upd_001034,act_005_15,proj_005,2023-05-17,13.1,13.12,True,False,5,Waiting for subcontractor sign-off.,False
upd_001035,act_005_15,proj_005,2023-05-18,30.3,17.22,True,False,10,Rework required on small section.,False
upd_001036,act_005_15,proj_005,2023-05-19,41.2,10.88,True,False,5,Waiting for subcontractor sign-off.,False
upd_001037,act_005_15,proj_005,2023-05-20,57.1,15.93,True,False,15,Night shift deployed to catch up.,False
upd_001038,act_005_15,proj_005,2023-05-21,71.4,14.34,True,False,5,Productivity affected by heat; hydration breaks added.,False
upd_001039,act_005_15,proj_005,2023-05-22,84.5,13.1,False,False,20,Minor delays due to material delivery.,True
upd_001040,act_005_15,proj_005,2023-05-23,99.9,15.41,True,False,10,Client walkthrough conducted.,True
upd_001041,act_006_01,proj_006,2023-03-04,12.0,11.96,False,False,21,Productivity affected by heat; hydration breaks added.,False
upd_001042,act_006_01,proj_006,2023-03-05,22.8,10.84,False,False,22,Waiting for subcontractor sign-off.,False
upd_001043,act_006_01,proj_006,2023-03-06,33.7,10.92,True,False,7,Good progress β crew at full strength.,False
upd_001044,act_006_01,proj_006,2023-03-07,48.7,14.97,True,False,9,Client walkthrough conducted.,False
upd_001045,act_006_01,proj_006,2023-03-08,62.8,14.09,True,False,14,Client walkthrough conducted.,False
upd_001046,act_006_01,proj_006,2023-03-09,71.9,9.08,True,False,17,All tasks on track per daily plan.,False
upd_001047,act_006_01,proj_006,2023-03-10,86.2,14.29,True,False,10,Overtime shift completed to recover schedule.,False
upd_001048,act_006_01,proj_006,2023-03-11,100.0,13.85,True,False,18,Material quality check done; passed.,False
upd_001049,act_006_02,proj_006,2023-03-14,11.3,11.28,True,True,13,Safety toolbox talk held; no incidents.,False
upd_001050,act_006_02,proj_006,2023-03-15,22.0,10.68,False,False,4,Inspection checkpoint cleared.,True
upd_001051,act_006_02,proj_006,2023-03-16,25.5,3.48,True,False,12,Equipment breakdown caused 2-hour downtime.,False
upd_001052,act_006_02,proj_006,2023-03-17,31.0,5.47,False,False,8,Minor delays due to material delivery.,False
upd_001053,act_006_02,proj_006,2023-03-18,36.7,5.68,True,False,15,Equipment breakdown caused 2-hour downtime.,True
upd_001054,act_006_02,proj_006,2023-03-19,47.3,10.6,False,False,6,Safety toolbox talk held; no incidents.,False
upd_001055,act_006_02,proj_006,2023-03-20,52.8,5.51,False,False,14,Night shift deployed to catch up.,False
upd_001056,act_006_02,proj_006,2023-03-21,61.4,8.58,False,False,22,All tasks on track per daily plan.,False
upd_001057,act_006_02,proj_006,2023-03-22,73.4,12.04,True,False,22,Overtime shift completed to recover schedule.,False
upd_001058,act_006_02,proj_006,2023-03-23,75.3,1.92,False,True,15,Equipment breakdown caused 2-hour downtime.,True
upd_001059,act_006_02,proj_006,2023-03-24,82.0,6.68,False,False,11,Productivity affected by heat; hydration breaks added.,False
upd_001060,act_006_02,proj_006,2023-03-25,90.7,8.69,True,False,16,Work progressing as planned.,False
upd_001061,act_006_02,proj_006,2023-03-26,100.0,9.4,True,True,8,Waiting for subcontractor sign-off.,False
upd_001062,act_006_03,proj_006,2023-03-27,0.0,0.0,True,False,16,Material quality check done; passed.,False
upd_001063,act_006_03,proj_006,2023-03-28,9.1,9.11,True,False,17,Inspection checkpoint cleared.,False
upd_001064,act_006_03,proj_006,2023-03-29,16.6,7.54,True,False,19,Safety toolbox talk held; no incidents.,False
upd_001065,act_006_03,proj_006,2023-03-30,22.4,5.78,True,False,16,Client walkthrough conducted.,False
upd_001066,act_006_03,proj_006,2023-03-31,29.2,6.8,False,False,19,Client walkthrough conducted.,False
upd_001067,act_006_03,proj_006,2023-04-01,30.3,1.11,True,False,21,Safety toolbox talk held; no incidents.,False
upd_001068,act_006_03,proj_006,2023-04-02,35.5,5.17,True,False,12,Night shift deployed to catch up.,False
upd_001069,act_006_03,proj_006,2023-04-03,41.3,5.82,True,False,7,Rework required on small section.,False
upd_001070,act_006_03,proj_006,2023-04-04,50.8,9.49,True,False,15,Safety toolbox talk held; no incidents.,False
upd_001071,act_006_03,proj_006,2023-04-05,54.6,3.8,True,False,15,Safety toolbox talk held; no incidents.,False
upd_001072,act_006_03,proj_006,2023-04-06,59.3,4.66,True,False,18,Work progressing as planned.,False
upd_001073,act_006_03,proj_006,2023-04-07,62.2,2.95,True,False,8,Night shift deployed to catch up.,False
upd_001074,act_006_03,proj_006,2023-04-08,62.2,0.0,False,False,11,Safety toolbox talk held; no incidents.,False
upd_001075,act_006_03,proj_006,2023-04-09,69.4,7.18,False,False,4,Waiting for subcontractor sign-off.,False
upd_001076,act_006_03,proj_006,2023-04-10,75.1,5.75,True,False,4,Waiting for subcontractor sign-off.,False
upd_001077,act_006_03,proj_006,2023-04-11,77.5,2.42,True,False,20,Night shift deployed to catch up.,False
upd_001078,act_006_03,proj_006,2023-04-12,86.1,8.64,False,False,8,Productivity affected by heat; hydration breaks added.,False
upd_001079,act_006_03,proj_006,2023-04-13,88.9,2.83,True,True,20,Work progressing as planned.,False
upd_001080,act_006_03,proj_006,2023-04-14,88.9,0.0,True,False,12,Work progressing as planned.,False
upd_001081,act_006_03,proj_006,2023-04-15,93.8,4.93,True,False,12,Rework required on small section.,False
upd_001082,act_006_03,proj_006,2023-04-16,99.8,6.01,False,False,4,Inspection checkpoint cleared.,False
upd_001083,act_006_04,proj_006,2023-04-18,11.5,11.45,True,False,16,Client walkthrough conducted.,False
upd_001084,act_006_04,proj_006,2023-04-19,22.6,11.07,True,False,21,Minor delays due to material delivery.,False
upd_001085,act_006_04,proj_006,2023-04-20,37.7,15.11,True,False,4,Work progressing as planned.,False
upd_001086,act_006_04,proj_006,2023-04-21,44.2,6.48,True,False,16,Productivity affected by heat; hydration breaks added.,False
upd_001087,act_006_04,proj_006,2023-04-22,57.4,13.22,True,False,13,Weather caused brief stoppage.,False
upd_001088,act_006_04,proj_006,2023-04-23,69.9,12.5,True,False,5,Rework required on small section.,False
upd_001089,act_006_04,proj_006,2023-04-24,81.4,11.51,False,False,4,Client walkthrough conducted.,False
upd_001090,act_006_04,proj_006,2023-04-25,92.2,10.76,True,False,16,Rework required on small section.,False
upd_001091,act_006_04,proj_006,2023-04-26,100.0,7.89,True,False,11,Overtime shift completed to recover schedule.,False
upd_001092,act_006_05,proj_006,2023-04-17,8.3,8.3,False,False,14,Material quality check done; passed.,False
upd_001093,act_006_05,proj_006,2023-04-18,13.0,4.75,True,False,21,Rework required on small section.,False
upd_001094,act_006_05,proj_006,2023-04-19,20.7,7.65,True,False,20,Equipment breakdown caused 2-hour downtime.,False
upd_001095,act_006_05,proj_006,2023-04-20,27.4,6.69,False,False,8,Rework required on small section.,False
upd_001096,act_006_05,proj_006,2023-04-21,34.3,6.86,True,False,21,Client walkthrough conducted.,False
upd_001097,act_006_05,proj_006,2023-04-22,42.7,8.4,True,False,8,Productivity affected by heat; hydration breaks added.,False
upd_001098,act_006_05,proj_006,2023-04-23,50.3,7.63,False,False,17,Inspection checkpoint cleared.,True
upd_001099,act_006_05,proj_006,2023-04-24,58.3,8.02,False,False,12,Good progress β crew at full strength.,False
upd_001100,act_006_05,proj_006,2023-04-25,58.3,0.0,True,False,12,Safety toolbox talk held; no incidents.,False
upd_001101,act_006_05,proj_006,2023-04-26,64.8,6.5,True,False,4,Waiting for subcontractor sign-off.,False
upd_001102,act_006_05,proj_006,2023-04-27,72.0,7.16,True,False,19,Productivity affected by heat; hydration breaks added.,True
upd_001103,act_006_05,proj_006,2023-04-28,73.8,1.78,True,False,19,Good progress β crew at full strength.,False
upd_001104,act_006_05,proj_006,2023-04-29,78.4,4.63,True,False,4,Equipment breakdown caused 2-hour downtime.,False
upd_001105,act_006_05,proj_006,2023-04-30,78.4,0.0,False,False,10,Night shift deployed to catch up.,False
upd_001106,act_006_05,proj_006,2023-05-01,87.7,9.3,False,False,18,All tasks on track per daily plan.,False
upd_001107,act_006_05,proj_006,2023-05-02,92.8,5.1,False,False,11,Overtime shift completed to recover schedule.,False
upd_001108,act_006_05,proj_006,2023-05-03,100.0,7.23,False,True,16,Productivity affected by heat; hydration breaks added.,False
upd_001109,act_006_06,proj_006,2023-04-17,3.4,3.44,False,False,21,Client walkthrough conducted.,False
upd_001110,act_006_06,proj_006,2023-04-18,14.4,10.96,True,False,7,Material quality check done; passed.,False
upd_001111,act_006_06,proj_006,2023-04-19,14.9,0.48,False,False,11,Client walkthrough conducted.,False
upd_001112,act_006_06,proj_006,2023-04-20,26.9,12.05,True,False,16,Client walkthrough conducted.,False
upd_001113,act_006_06,proj_006,2023-04-21,33.6,6.67,True,False,18,Overtime shift completed to recover schedule.,False
upd_001114,act_006_06,proj_006,2023-04-22,40.3,6.75,True,False,9,Overtime shift completed to recover schedule.,False
upd_001115,act_006_06,proj_006,2023-04-23,43.6,3.3,True,False,8,Material quality check done; passed.,False
upd_001116,act_006_06,proj_006,2023-04-24,48.0,4.43,False,False,7,Good progress β crew at full strength.,False
upd_001117,act_006_06,proj_006,2023-04-25,53.6,5.57,True,False,8,Overtime shift completed to recover schedule.,False
upd_001118,act_006_06,proj_006,2023-04-26,60.1,6.53,True,False,22,Equipment breakdown caused 2-hour downtime.,False
upd_001119,act_006_06,proj_006,2023-04-27,64.8,4.73,True,False,12,Waiting for subcontractor sign-off.,False
upd_001120,act_006_06,proj_006,2023-04-28,68.1,3.29,False,False,7,Minor delays due to material delivery.,False
upd_001121,act_006_06,proj_006,2023-04-29,75.8,7.73,True,False,20,Productivity affected by heat; hydration breaks added.,True
upd_001122,act_006_06,proj_006,2023-04-30,82.3,6.54,True,False,9,Overtime shift completed to recover schedule.,False
upd_001123,act_006_06,proj_006,2023-05-01,85.8,3.47,True,True,14,Safety toolbox talk held; no incidents.,False
upd_001124,act_006_06,proj_006,2023-05-02,90.4,4.6,True,False,8,Good progress β crew at full strength.,False
upd_001125,act_006_06,proj_006,2023-05-03,99.9,9.48,True,True,18,Inspection checkpoint cleared.,False
upd_001126,act_006_07,proj_006,2023-04-18,8.9,8.9,True,False,10,Work progressing as planned.,False
upd_001127,act_006_07,proj_006,2023-04-19,21.4,12.49,True,False,19,Client walkthrough conducted.,False
upd_001128,act_006_07,proj_006,2023-04-20,28.2,6.81,True,False,10,Safety toolbox talk held; no incidents.,False
upd_001129,act_006_07,proj_006,2023-04-21,39.9,11.74,True,False,4,Weather caused brief stoppage.,False
upd_001130,act_006_07,proj_006,2023-04-22,45.3,5.39,True,False,10,Work progressing as planned.,False
upd_001131,act_006_07,proj_006,2023-04-23,55.3,10.03,True,True,8,All tasks on track per daily plan.,False
upd_001132,act_006_07,proj_006,2023-04-24,62.1,6.77,True,False,14,Equipment breakdown caused 2-hour downtime.,True
upd_001133,act_006_07,proj_006,2023-04-25,68.6,6.49,False,False,9,Rework required on small section.,True
upd_001134,act_006_07,proj_006,2023-04-26,78.2,9.58,True,False,22,Night shift deployed to catch up.,False
upd_001135,act_006_07,proj_006,2023-04-27,85.8,7.65,False,False,15,Equipment breakdown caused 2-hour downtime.,False
upd_001136,act_006_07,proj_006,2023-04-28,95.6,9.78,True,False,16,All tasks on track per daily plan.,True
upd_001137,act_006_07,proj_006,2023-04-29,100.0,4.37,True,False,13,Material quality check done; passed.,True
upd_001138,act_006_08,proj_006,2023-05-05,9.8,9.83,True,False,20,Overtime shift completed to recover schedule.,False
upd_001139,act_006_08,proj_006,2023-05-06,19.7,9.95,True,False,7,Safety toolbox talk held; no incidents.,False
upd_001140,act_006_08,proj_006,2023-05-07,31.2,11.51,False,False,19,Productivity affected by heat; hydration breaks added.,False
upd_001141,act_006_08,proj_006,2023-05-08,34.2,2.98,False,False,13,Overtime shift completed to recover schedule.,False
upd_001142,act_006_08,proj_006,2023-05-09,41.4,7.24,True,False,15,Equipment breakdown caused 2-hour downtime.,False
upd_001143,act_006_08,proj_006,2023-05-10,44.1,2.71,True,False,19,Material quality check done; passed.,True
upd_001144,act_006_08,proj_006,2023-05-11,55.7,11.64,True,False,13,Weather caused brief stoppage.,False
upd_001145,act_006_08,proj_006,2023-05-12,60.6,4.95,True,True,7,Productivity affected by heat; hydration breaks added.,True
upd_001146,act_006_08,proj_006,2023-05-13,72.3,11.65,False,False,17,Work progressing as planned.,False
upd_001147,act_006_08,proj_006,2023-05-14,80.8,8.54,True,False,4,Rework required on small section.,False
upd_001148,act_006_08,proj_006,2023-05-15,86.5,5.75,False,False,13,Inspection checkpoint cleared.,False
upd_001149,act_006_08,proj_006,2023-05-16,91.1,4.62,True,False,14,Waiting for subcontractor sign-off.,False
upd_001150,act_006_08,proj_006,2023-05-17,99.7,8.63,False,False,9,Weather caused brief stoppage.,False
upd_001151,act_006_09,proj_006,2023-05-20,4.2,4.15,True,False,19,Night shift deployed to catch up.,False
upd_001152,act_006_09,proj_006,2023-05-21,16.9,12.65,True,False,18,Equipment breakdown caused 2-hour downtime.,True
upd_001153,act_006_09,proj_006,2023-05-22,19.7,2.83,True,False,17,Equipment breakdown caused 2-hour downtime.,False
upd_001154,act_006_09,proj_006,2023-05-23,30.0,10.25,True,False,14,Client walkthrough conducted.,False
upd_001155,act_006_09,proj_006,2023-05-24,40.0,9.95,True,False,15,Minor delays due to material delivery.,False
upd_001156,act_006_09,proj_006,2023-05-25,47.3,7.3,True,False,16,Rework required on small section.,False
upd_001157,act_006_09,proj_006,2023-05-26,47.3,0.0,True,False,9,Safety toolbox talk held; no incidents.,False
upd_001158,act_006_09,proj_006,2023-05-27,50.2,2.92,True,False,14,Productivity affected by heat; hydration breaks added.,True
upd_001159,act_006_09,proj_006,2023-05-28,55.4,5.25,True,False,11,Waiting for subcontractor sign-off.,True
upd_001160,act_006_09,proj_006,2023-05-29,62.2,6.79,True,False,13,Good progress β crew at full strength.,False
upd_001161,act_006_09,proj_006,2023-05-30,71.1,8.94,False,False,6,Material quality check done; passed.,True
upd_001162,act_006_09,proj_006,2023-05-31,78.6,7.5,False,False,8,Weather caused brief stoppage.,False
upd_001163,act_006_09,proj_006,2023-06-01,84.7,6.14,False,False,13,Night shift deployed to catch up.,False
upd_001164,act_006_09,proj_006,2023-06-02,85.3,0.59,True,False,20,Rework required on small section.,False
upd_001165,act_006_09,proj_006,2023-06-03,89.4,4.05,True,False,16,Productivity affected by heat; hydration breaks added.,False
upd_001166,act_006_09,proj_006,2023-06-04,89.5,0.1,True,False,5,Rework required on small section.,False
upd_001167,act_006_09,proj_006,2023-06-05,92.3,2.83,True,False,5,Minor delays due to material delivery.,False
upd_001168,act_006_09,proj_006,2023-06-06,94.4,2.13,True,False,22,Night shift deployed to catch up.,False
upd_001169,act_006_09,proj_006,2023-06-07,98.1,3.71,True,False,10,Inspection checkpoint cleared.,False
upd_001170,act_006_09,proj_006,2023-06-08,100.0,1.91,True,False,7,Inspection checkpoint cleared.,False
upd_001171,act_006_10,proj_006,2023-05-07,0.0,0.0,True,False,21,Client walkthrough conducted.,False
upd_001172,act_006_10,proj_006,2023-05-08,9.7,9.7,True,False,12,Good progress β crew at full strength.,True
upd_001173,act_006_10,proj_006,2023-05-09,18.5,8.81,True,False,9,Minor delays due to material delivery.,False
upd_001174,act_006_10,proj_006,2023-05-10,21.3,2.8,True,False,5,Good progress β crew at full strength.,False
upd_001175,act_006_10,proj_006,2023-05-11,31.2,9.94,True,False,16,Work progressing as planned.,True
upd_001176,act_006_10,proj_006,2023-05-12,39.2,7.97,True,False,22,Rework required on small section.,True
upd_001177,act_006_10,proj_006,2023-05-13,43.4,4.15,True,False,13,Waiting for subcontractor sign-off.,False
upd_001178,act_006_10,proj_006,2023-05-14,50.3,6.93,True,False,21,Minor delays due to material delivery.,False
upd_001179,act_006_10,proj_006,2023-05-15,55.5,5.2,True,False,8,Minor delays due to material delivery.,False
upd_001180,act_006_10,proj_006,2023-05-16,62.9,7.38,True,False,18,Inspection checkpoint cleared.,False
upd_001181,act_006_10,proj_006,2023-05-17,66.6,3.66,True,False,11,Weather caused brief stoppage.,False
upd_001182,act_006_10,proj_006,2023-05-18,71.3,4.68,True,False,15,Overtime shift completed to recover schedule.,False
upd_001183,act_006_10,proj_006,2023-05-19,76.9,5.63,True,False,14,Material quality check done; passed.,False
upd_001184,act_006_10,proj_006,2023-05-20,82.7,5.8,True,False,19,Material quality check done; passed.,False
upd_001185,act_006_10,proj_006,2023-05-21,89.0,6.26,True,False,22,Good progress β crew at full strength.,False
upd_001186,act_006_10,proj_006,2023-05-22,94.2,5.16,True,False,7,Waiting for subcontractor sign-off.,False
upd_001187,act_006_10,proj_006,2023-05-23,100.0,5.93,True,False,18,Overtime shift completed to recover schedule.,False
upd_001188,act_006_11,proj_006,2023-05-24,8.9,8.93,True,False,9,Material quality check done; passed.,False
upd_001189,act_006_11,proj_006,2023-05-25,13.8,4.89,False,False,22,Overtime shift completed to recover schedule.,False
upd_001190,act_006_11,proj_006,2023-05-26,18.0,4.15,False,False,21,Productivity affected by heat; hydration breaks added.,False
upd_001191,act_006_11,proj_006,2023-05-27,25.2,7.17,True,False,22,All tasks on track per daily plan.,False
upd_001192,act_006_11,proj_006,2023-05-28,33.1,7.94,True,False,21,Minor delays due to material delivery.,False
upd_001193,act_006_11,proj_006,2023-05-29,42.3,9.2,False,False,6,Safety toolbox talk held; no incidents.,False
upd_001194,act_006_11,proj_006,2023-05-30,51.6,9.32,False,False,16,Waiting for subcontractor sign-off.,True
upd_001195,act_006_11,proj_006,2023-05-31,59.1,7.48,True,False,8,Equipment breakdown caused 2-hour downtime.,False
upd_001196,act_006_11,proj_006,2023-06-01,70.2,11.05,False,False,8,Rework required on small section.,False
upd_001197,act_006_11,proj_006,2023-06-02,82.4,12.17,True,False,22,Material quality check done; passed.,False
upd_001198,act_006_11,proj_006,2023-06-03,90.6,8.17,True,False,22,Night shift deployed to catch up.,False
upd_001199,act_006_11,proj_006,2023-06-04,100.0,9.54,False,False,17,Productivity affected by heat; hydration breaks added.,False
upd_001200,act_006_12,proj_006,2023-06-07,7.7,7.66,True,False,4,Safety toolbox talk held; no incidents.,False
upd_001201,act_006_12,proj_006,2023-06-08,14.0,6.34,True,False,13,Work progressing as planned.,False
upd_001202,act_006_12,proj_006,2023-06-09,22.7,8.67,True,False,21,All tasks on track per daily plan.,False
upd_001203,act_006_12,proj_006,2023-06-10,30.1,7.37,True,False,4,Weather caused brief stoppage.,False
upd_001204,act_006_12,proj_006,2023-06-11,35.6,5.49,True,False,16,Overtime shift completed to recover schedule.,False
upd_001205,act_006_12,proj_006,2023-06-12,39.9,4.29,True,False,19,Good progress β crew at full strength.,False
upd_001206,act_006_12,proj_006,2023-06-13,44.7,4.8,False,False,17,Good progress β crew at full strength.,False
upd_001207,act_006_12,proj_006,2023-06-14,48.8,4.14,True,False,4,Minor delays due to material delivery.,False
upd_001208,act_006_12,proj_006,2023-06-15,56.1,7.26,False,False,17,Good progress β crew at full strength.,False
upd_001209,act_006_12,proj_006,2023-06-16,62.2,6.1,True,False,18,Equipment breakdown caused 2-hour downtime.,True
upd_001210,act_006_12,proj_006,2023-06-17,64.4,2.21,True,False,9,Material quality check done; passed.,False
upd_001211,act_006_12,proj_006,2023-06-18,70.5,6.1,True,False,15,Weather caused brief stoppage.,False
upd_001212,act_006_12,proj_006,2023-06-19,78.7,8.19,True,False,11,Productivity affected by heat; hydration breaks added.,False
upd_001213,act_006_12,proj_006,2023-06-20,79.1,0.42,True,False,15,Work progressing as planned.,False
upd_001214,act_006_12,proj_006,2023-06-21,85.7,6.58,True,False,7,Safety toolbox talk held; no incidents.,False
upd_001215,act_006_12,proj_006,2023-06-22,95.4,9.73,True,False,20,All tasks on track per daily plan.,False
upd_001216,act_006_12,proj_006,2023-06-23,100.0,4.66,True,False,6,Client walkthrough conducted.,False
upd_001217,act_006_13,proj_006,2023-06-26,6.4,6.41,True,False,6,Rework required on small section.,False
upd_001218,act_006_13,proj_006,2023-06-27,17.5,11.14,True,False,5,Equipment breakdown caused 2-hour downtime.,False
upd_001219,act_006_13,proj_006,2023-06-28,24.6,7.1,True,False,20,Equipment breakdown caused 2-hour downtime.,False
upd_001220,act_006_13,proj_006,2023-06-29,24.6,0.0,True,False,13,Inspection checkpoint cleared.,False
upd_001221,act_006_13,proj_006,2023-06-30,33.7,9.14,True,False,13,Productivity affected by heat; hydration breaks added.,False
upd_001222,act_006_13,proj_006,2023-07-01,47.5,13.78,True,False,22,Good progress β crew at full strength.,False
upd_001223,act_006_13,proj_006,2023-07-02,50.1,2.61,True,False,4,Inspection checkpoint cleared.,False
upd_001224,act_006_13,proj_006,2023-07-03,57.0,6.89,True,False,12,Inspection checkpoint cleared.,False
upd_001225,act_006_13,proj_006,2023-07-04,60.0,3.02,False,False,4,Productivity affected by heat; hydration breaks added.,False
upd_001226,act_006_13,proj_006,2023-07-05,64.9,4.86,True,False,8,Rework required on small section.,True
upd_001227,act_006_13,proj_006,2023-07-06,68.6,3.74,True,False,11,Material quality check done; passed.,False
upd_001228,act_006_13,proj_006,2023-07-07,72.9,4.31,True,False,6,Good progress β crew at full strength.,False
upd_001229,act_006_13,proj_006,2023-07-08,82.1,9.16,False,False,17,Night shift deployed to catch up.,False
upd_001230,act_006_13,proj_006,2023-07-09,85.5,3.36,False,False,9,Weather caused brief stoppage.,False
upd_001231,act_006_13,proj_006,2023-07-10,89.5,4.0,True,False,12,Night shift deployed to catch up.,False
upd_001232,act_006_13,proj_006,2023-07-11,89.9,0.43,True,True,19,Inspection checkpoint cleared.,False
upd_001233,act_006_13,proj_006,2023-07-12,96.5,6.64,False,False,11,Overtime shift completed to recover schedule.,False
upd_001234,act_006_13,proj_006,2023-07-13,99.9,3.4,True,False,20,All tasks on track per daily plan.,False
upd_001235,act_006_14,proj_006,2023-07-14,9.3,9.33,False,False,16,Rework required on small section.,False
upd_001236,act_006_14,proj_006,2023-07-15,16.7,7.37,False,False,7,Equipment breakdown caused 2-hour downtime.,False
upd_001237,act_006_14,proj_006,2023-07-16,26.0,9.27,False,False,12,Waiting for subcontractor sign-off.,False
upd_001238,act_006_14,proj_006,2023-07-17,34.8,8.79,True,False,22,Overtime shift completed to recover schedule.,False
upd_001239,act_006_14,proj_006,2023-07-18,40.4,5.61,True,False,22,Night shift deployed to catch up.,False
upd_001240,act_006_14,proj_006,2023-07-19,44.3,3.91,True,False,9,Waiting for subcontractor sign-off.,False
upd_001241,act_006_14,proj_006,2023-07-20,55.7,11.45,False,False,4,Overtime shift completed to recover schedule.,False
upd_001242,act_006_14,proj_006,2023-07-21,59.8,4.12,True,False,11,Productivity affected by heat; hydration breaks added.,True
upd_001243,act_006_14,proj_006,2023-07-22,69.9,10.06,True,False,6,Work progressing as planned.,False
upd_001244,act_006_14,proj_006,2023-07-23,79.4,9.47,False,False,7,Productivity affected by heat; hydration breaks added.,False
upd_001245,act_006_14,proj_006,2023-07-24,88.8,9.37,True,False,16,Rework required on small section.,False
upd_001246,act_006_14,proj_006,2023-07-25,96.1,7.26,False,False,9,Equipment breakdown caused 2-hour downtime.,False
upd_001247,act_006_14,proj_006,2023-07-26,100.0,4.0,True,False,6,Rework required on small section.,True
upd_001248,act_006_15,proj_006,2023-07-27,14.8,14.78,False,False,14,Inspection checkpoint cleared.,False
upd_001249,act_006_15,proj_006,2023-07-28,24.1,9.28,False,False,16,Overtime shift completed to recover schedule.,False
upd_001250,act_006_15,proj_006,2023-07-29,34.9,10.81,False,False,12,Good progress β crew at full strength.,False
upd_001251,act_006_15,proj_006,2023-07-30,50.7,15.82,False,False,16,Good progress β crew at full strength.,False
upd_001252,act_006_15,proj_006,2023-07-31,67.6,16.93,True,False,17,Weather caused brief stoppage.,False
upd_001253,act_006_15,proj_006,2023-08-01,85.1,17.55,True,False,12,Minor delays due to material delivery.,False
upd_001254,act_006_15,proj_006,2023-08-02,99.9,14.83,False,False,18,Work progressing as planned.,True
upd_001255,act_007_01,proj_007,2023-06-01,9.8,9.76,True,False,5,Rework required on small section.,False
upd_001256,act_007_01,proj_007,2023-06-02,19.7,9.88,True,False,16,Safety toolbox talk held; no incidents.,False
upd_001257,act_007_01,proj_007,2023-06-03,28.5,8.83,False,False,19,Overtime shift completed to recover schedule.,True
upd_001258,act_007_01,proj_007,2023-06-04,36.3,7.81,False,False,6,Client walkthrough conducted.,False
upd_001259,act_007_01,proj_007,2023-06-05,47.6,11.3,True,False,19,Minor delays due to material delivery.,False
upd_001260,act_007_01,proj_007,2023-06-06,58.2,10.55,True,False,13,Overtime shift completed to recover schedule.,False
upd_001261,act_007_01,proj_007,2023-06-07,72.7,14.53,True,False,15,Client walkthrough conducted.,True
upd_001262,act_007_01,proj_007,2023-06-08,88.9,16.16,False,False,13,Rework required on small section.,False
upd_001263,act_007_01,proj_007,2023-06-09,100.0,11.18,False,False,10,Inspection checkpoint cleared.,False
upd_001264,act_007_02,proj_007,2023-06-10,3.8,3.84,True,False,15,Material quality check done; passed.,False
upd_001265,act_007_02,proj_007,2023-06-11,7.9,4.08,False,False,8,Work progressing as planned.,True
upd_001266,act_007_02,proj_007,2023-06-12,17.1,9.17,True,False,19,Overtime shift completed to recover schedule.,False
upd_001267,act_007_02,proj_007,2023-06-13,23.5,6.38,True,False,21,All tasks on track per daily plan.,True
upd_001268,act_007_02,proj_007,2023-06-14,31.0,7.46,True,False,14,Work progressing as planned.,False
upd_001269,act_007_02,proj_007,2023-06-15,34.9,3.9,True,False,10,Night shift deployed to catch up.,False
upd_001270,act_007_02,proj_007,2023-06-16,40.0,5.07,False,False,21,Good progress β crew at full strength.,False
upd_001271,act_007_02,proj_007,2023-06-17,46.2,6.22,True,False,8,Material quality check done; passed.,False
upd_001272,act_007_02,proj_007,2023-06-18,56.1,9.91,False,False,5,Weather caused brief stoppage.,False
upd_001273,act_007_02,proj_007,2023-06-19,65.4,9.34,True,False,5,Equipment breakdown caused 2-hour downtime.,False
upd_001274,act_007_02,proj_007,2023-06-20,73.0,7.65,True,False,9,All tasks on track per daily plan.,False
upd_001275,act_007_02,proj_007,2023-06-21,79.5,6.51,True,False,19,Safety toolbox talk held; no incidents.,False
upd_001276,act_007_02,proj_007,2023-06-22,88.1,8.56,False,False,17,Waiting for subcontractor sign-off.,False
upd_001277,act_007_02,proj_007,2023-06-23,94.3,6.21,True,False,14,Minor delays due to material delivery.,False
upd_001278,act_007_02,proj_007,2023-06-24,100.0,5.69,True,False,10,Night shift deployed to catch up.,False
upd_001279,act_007_03,proj_007,2023-06-29,5.3,5.25,True,False,12,Good progress β crew at full strength.,True
upd_001280,act_007_03,proj_007,2023-06-30,11.2,5.93,True,False,9,Material quality check done; passed.,False
upd_001281,act_007_03,proj_007,2023-07-01,18.0,6.84,True,False,16,Night shift deployed to catch up.,False
upd_001282,act_007_03,proj_007,2023-07-02,21.7,3.66,True,False,4,Good progress β crew at full strength.,False
upd_001283,act_007_03,proj_007,2023-07-03,27.8,6.12,True,False,13,Overtime shift completed to recover schedule.,False
upd_001284,act_007_03,proj_007,2023-07-04,35.9,8.1,True,False,8,Weather caused brief stoppage.,False
upd_001285,act_007_03,proj_007,2023-07-05,40.4,4.53,True,False,11,Good progress β crew at full strength.,False
upd_001286,act_007_03,proj_007,2023-07-06,49.7,9.32,True,True,19,Safety toolbox talk held; no incidents.,False
upd_001287,act_007_03,proj_007,2023-07-07,51.3,1.65,False,False,15,Overtime shift completed to recover schedule.,False
upd_001288,act_007_03,proj_007,2023-07-08,58.3,7.04,True,False,20,Minor delays due to material delivery.,True
upd_001289,act_007_03,proj_007,2023-07-09,59.9,1.59,False,False,20,Weather caused brief stoppage.,False
upd_001290,act_007_03,proj_007,2023-07-10,62.5,2.56,True,False,5,Weather caused brief stoppage.,False
upd_001291,act_007_03,proj_007,2023-07-11,66.0,3.49,False,False,19,Material quality check done; passed.,True
upd_001292,act_007_03,proj_007,2023-07-12,71.2,5.17,True,False,15,Inspection checkpoint cleared.,False
upd_001293,act_007_03,proj_007,2023-07-13,80.2,8.96,True,False,18,Work progressing as planned.,False
upd_001294,act_007_03,proj_007,2023-07-14,80.2,0.0,True,True,9,Night shift deployed to catch up.,True
upd_001295,act_007_03,proj_007,2023-07-15,84.0,3.78,True,False,11,Productivity affected by heat; hydration breaks added.,True
upd_001296,act_007_03,proj_007,2023-07-16,85.9,1.9,True,False,14,Weather caused brief stoppage.,False
upd_001297,act_007_03,proj_007,2023-07-17,92.1,6.17,True,False,17,All tasks on track per daily plan.,False
upd_001298,act_007_03,proj_007,2023-07-18,93.3,1.24,True,False,22,Material quality check done; passed.,False
upd_001299,act_007_03,proj_007,2023-07-19,99.3,5.97,True,False,18,Good progress β crew at full strength.,True
upd_001300,act_007_03,proj_007,2023-07-20,100.0,0.75,True,False,15,Inspection checkpoint cleared.,False
upd_001301,act_007_04,proj_007,2023-07-22,13.4,13.4,True,False,5,Inspection checkpoint cleared.,False
upd_001302,act_007_04,proj_007,2023-07-23,22.7,9.26,True,False,9,Night shift deployed to catch up.,False
upd_001303,act_007_04,proj_007,2023-07-24,36.7,13.96,True,False,9,Safety toolbox talk held; no incidents.,False
upd_001304,act_007_04,proj_007,2023-07-25,47.9,11.2,True,False,20,Material quality check done; passed.,False
upd_001305,act_007_04,proj_007,2023-07-26,59.3,11.36,True,False,18,Inspection checkpoint cleared.,False
upd_001306,act_007_04,proj_007,2023-07-27,73.4,14.08,False,False,11,Waiting for subcontractor sign-off.,True
upd_001307,act_007_04,proj_007,2023-07-28,82.5,9.14,False,False,8,Equipment breakdown caused 2-hour downtime.,False
upd_001308,act_007_04,proj_007,2023-07-29,88.1,5.57,False,True,5,Material quality check done; passed.,False
upd_001309,act_007_04,proj_007,2023-07-30,100.0,12.04,True,False,16,Material quality check done; passed.,False
upd_001310,act_007_05,proj_007,2023-07-21,7.9,7.87,True,False,19,Weather caused brief stoppage.,False
upd_001311,act_007_05,proj_007,2023-07-22,14.2,6.3,True,False,17,Weather caused brief stoppage.,True
upd_001312,act_007_05,proj_007,2023-07-23,21.8,7.59,True,False,6,Work progressing as planned.,False
upd_001313,act_007_05,proj_007,2023-07-24,21.8,0.0,True,False,22,Productivity affected by heat; hydration breaks added.,False
upd_001314,act_007_05,proj_007,2023-07-25,28.2,6.37,True,False,8,All tasks on track per daily plan.,False
upd_001315,act_007_05,proj_007,2023-07-26,35.1,6.9,False,False,18,Productivity affected by heat; hydration breaks added.,False
upd_001316,act_007_05,proj_007,2023-07-27,44.8,9.71,True,False,14,Client walkthrough conducted.,False
upd_001317,act_007_05,proj_007,2023-07-28,51.5,6.68,True,False,21,Safety toolbox talk held; no incidents.,True
upd_001318,act_007_05,proj_007,2023-07-29,54.8,3.3,True,False,14,Productivity affected by heat; hydration breaks added.,False
upd_001319,act_007_05,proj_007,2023-07-30,59.7,4.92,False,False,15,Equipment breakdown caused 2-hour downtime.,False
upd_001320,act_007_05,proj_007,2023-07-31,63.5,3.79,True,False,5,Waiting for subcontractor sign-off.,True
upd_001321,act_007_05,proj_007,2023-08-01,63.9,0.45,True,False,21,Productivity affected by heat; hydration breaks added.,False
upd_001322,act_007_05,proj_007,2023-08-02,74.4,10.55,True,False,21,Minor delays due to material delivery.,False
upd_001323,act_007_05,proj_007,2023-08-03,78.7,4.27,False,False,10,Night shift deployed to catch up.,False
upd_001324,act_007_05,proj_007,2023-08-04,82.9,4.19,True,False,12,Client walkthrough conducted.,False
upd_001325,act_007_05,proj_007,2023-08-05,92.7,9.83,True,False,15,Material quality check done; passed.,False
upd_001326,act_007_05,proj_007,2023-08-06,100.0,7.31,True,False,21,Rework required on small section.,False
upd_001327,act_007_06,proj_007,2023-07-22,9.2,9.17,True,False,15,Night shift deployed to catch up.,False
upd_001328,act_007_06,proj_007,2023-07-23,16.8,7.62,False,False,6,Weather caused brief stoppage.,False
upd_001329,act_007_06,proj_007,2023-07-24,20.7,3.87,True,False,9,Inspection checkpoint cleared.,False
upd_001330,act_007_06,proj_007,2023-07-25,23.9,3.23,True,False,7,Productivity affected by heat; hydration breaks added.,False
upd_001331,act_007_06,proj_007,2023-07-26,31.0,7.11,True,False,4,Inspection checkpoint cleared.,False
upd_001332,act_007_06,proj_007,2023-07-27,35.8,4.8,False,False,19,Waiting for subcontractor sign-off.,False
upd_001333,act_007_06,proj_007,2023-07-28,39.9,4.13,True,False,10,Minor delays due to material delivery.,False
upd_001334,act_007_06,proj_007,2023-07-29,45.6,5.69,False,False,20,Rework required on small section.,True
upd_001335,act_007_06,proj_007,2023-07-30,51.6,6.02,True,False,14,Material quality check done; passed.,False
upd_001336,act_007_06,proj_007,2023-07-31,58.4,6.83,False,False,18,Material quality check done; passed.,False
upd_001337,act_007_06,proj_007,2023-08-01,65.5,7.05,False,False,9,Night shift deployed to catch up.,False
upd_001338,act_007_06,proj_007,2023-08-02,72.8,7.33,False,False,5,Good progress β crew at full strength.,False
upd_001339,act_007_06,proj_007,2023-08-03,77.2,4.35,True,False,9,Productivity affected by heat; hydration breaks added.,False
upd_001340,act_007_06,proj_007,2023-08-04,79.8,2.57,True,False,8,Good progress β crew at full strength.,False
upd_001341,act_007_06,proj_007,2023-08-05,84.6,4.79,True,True,8,Material quality check done; passed.,False
upd_001342,act_007_06,proj_007,2023-08-06,87.7,3.15,True,False,5,Rework required on small section.,False
upd_001343,act_007_06,proj_007,2023-08-07,92.4,4.73,True,False,21,Good progress β crew at full strength.,False
upd_001344,act_007_06,proj_007,2023-08-08,100.0,7.56,True,False,19,Night shift deployed to catch up.,False
upd_001345,act_007_07,proj_007,2023-07-21,10.3,10.27,True,False,4,Productivity affected by heat; hydration breaks added.,False
upd_001346,act_007_07,proj_007,2023-07-22,16.3,6.02,True,False,13,Material quality check done; passed.,False
upd_001347,act_007_07,proj_007,2023-07-23,22.0,5.72,False,False,22,Rework required on small section.,False
upd_001348,act_007_07,proj_007,2023-07-24,34.7,12.7,False,False,18,Waiting for subcontractor sign-off.,False
upd_001349,act_007_07,proj_007,2023-07-25,43.9,9.16,False,False,8,Rework required on small section.,False
upd_001350,act_007_07,proj_007,2023-07-26,49.1,5.21,True,False,11,Material quality check done; passed.,False
upd_001351,act_007_07,proj_007,2023-07-27,63.3,14.2,True,False,10,Safety toolbox talk held; no incidents.,False
upd_001352,act_007_07,proj_007,2023-07-28,72.7,9.44,False,False,10,Work progressing as planned.,False
upd_001353,act_007_07,proj_007,2023-07-29,82.2,9.51,True,False,6,Client walkthrough conducted.,True
upd_001354,act_007_07,proj_007,2023-07-30,92.7,10.46,True,False,20,Work progressing as planned.,False
upd_001355,act_007_07,proj_007,2023-07-31,100.0,7.31,True,False,17,Waiting for subcontractor sign-off.,False
upd_001356,act_007_08,proj_007,2023-08-07,8.4,8.41,True,True,13,Material quality check done; passed.,False
upd_001357,act_007_08,proj_007,2023-08-08,17.2,8.8,False,False,18,Productivity affected by heat; hydration breaks added.,False
upd_001358,act_007_08,proj_007,2023-08-09,25.1,7.85,True,False,17,Productivity affected by heat; hydration breaks added.,False
upd_001359,act_007_08,proj_007,2023-08-10,30.7,5.57,True,False,6,Good progress β crew at full strength.,False
upd_001360,act_007_08,proj_007,2023-08-11,37.1,6.35,False,False,14,Minor delays due to material delivery.,False
upd_001361,act_007_08,proj_007,2023-08-12,39.7,2.62,True,False,4,Overtime shift completed to recover schedule.,False
upd_001362,act_007_08,proj_007,2023-08-13,51.0,11.34,True,False,18,Productivity affected by heat; hydration breaks added.,False
upd_001363,act_007_08,proj_007,2023-08-14,56.2,5.21,True,False,16,Inspection checkpoint cleared.,False
upd_001364,act_007_08,proj_007,2023-08-15,64.6,8.38,False,True,22,Inspection checkpoint cleared.,False
upd_001365,act_007_08,proj_007,2023-08-16,75.1,10.48,True,False,4,Good progress β crew at full strength.,False
upd_001366,act_007_08,proj_007,2023-08-17,82.6,7.53,False,False,19,Minor delays due to material delivery.,False
upd_001367,act_007_08,proj_007,2023-08-18,92.1,9.51,True,False,19,Equipment breakdown caused 2-hour downtime.,False
upd_001368,act_007_08,proj_007,2023-08-19,100.0,7.96,True,False,12,Material quality check done; passed.,False
upd_001369,act_007_09,proj_007,2023-08-20,4.4,4.38,False,False,22,Material quality check done; passed.,False
upd_001370,act_007_09,proj_007,2023-08-21,8.8,4.4,True,False,19,Productivity affected by heat; hydration breaks added.,False
upd_001371,act_007_09,proj_007,2023-08-22,14.4,5.63,False,False,4,All tasks on track per daily plan.,False
upd_001372,act_007_09,proj_007,2023-08-23,18.1,3.74,True,False,18,Equipment breakdown caused 2-hour downtime.,False
upd_001373,act_007_09,proj_007,2023-08-24,21.6,3.47,True,False,15,Overtime shift completed to recover schedule.,False
upd_001374,act_007_09,proj_007,2023-08-25,22.8,1.23,True,False,13,Client walkthrough conducted.,False
upd_001375,act_007_09,proj_007,2023-08-26,23.6,0.85,True,False,9,Night shift deployed to catch up.,False
upd_001376,act_007_09,proj_007,2023-08-27,23.6,0.0,True,False,14,All tasks on track per daily plan.,True
upd_001377,act_007_09,proj_007,2023-08-28,26.0,2.42,True,False,15,Minor delays due to material delivery.,False
upd_001378,act_007_09,proj_007,2023-08-29,30.2,4.16,True,False,8,Client walkthrough conducted.,False
upd_001379,act_007_09,proj_007,2023-08-30,31.9,1.74,True,False,9,Minor delays due to material delivery.,False
upd_001380,act_007_09,proj_007,2023-08-31,37.2,5.29,False,False,21,Safety toolbox talk held; no incidents.,False
upd_001381,act_007_09,proj_007,2023-09-01,44.0,6.81,False,False,21,Productivity affected by heat; hydration breaks added.,False
upd_001382,act_007_09,proj_007,2023-09-02,49.9,5.87,True,False,6,Minor delays due to material delivery.,False
upd_001383,act_007_09,proj_007,2023-09-03,56.4,6.51,True,False,13,Productivity affected by heat; hydration breaks added.,False
upd_001384,act_007_09,proj_007,2023-09-04,60.7,4.25,False,False,20,Night shift deployed to catch up.,False
upd_001385,act_007_09,proj_007,2023-09-05,69.2,8.49,True,False,7,Weather caused brief stoppage.,False
upd_001386,act_007_09,proj_007,2023-09-06,77.0,7.76,True,False,13,Good progress β crew at full strength.,True
upd_001387,act_007_09,proj_007,2023-09-07,83.6,6.61,True,False,7,Minor delays due to material delivery.,False
upd_001388,act_007_09,proj_007,2023-09-08,90.7,7.06,True,False,10,Minor delays due to material delivery.,True
upd_001389,act_007_09,proj_007,2023-09-09,100.0,9.3,True,False,19,Minor delays due to material delivery.,True
upd_001390,act_007_10,proj_007,2023-08-12,7.7,7.68,True,True,4,Night shift deployed to catch up.,False
upd_001391,act_007_10,proj_007,2023-08-13,12.9,5.22,True,False,22,Equipment breakdown caused 2-hour downtime.,True
upd_001392,act_007_10,proj_007,2023-08-14,24.6,11.7,True,False,8,All tasks on track per daily plan.,False
upd_001393,act_007_10,proj_007,2023-08-15,31.7,7.11,True,False,15,Good progress β crew at full strength.,False
upd_001394,act_007_10,proj_007,2023-08-16,35.8,4.13,True,False,20,Safety toolbox talk held; no incidents.,False
upd_001395,act_007_10,proj_007,2023-08-17,42.3,6.49,False,False,20,Weather caused brief stoppage.,True
upd_001396,act_007_10,proj_007,2023-08-18,51.5,9.24,True,False,21,Work progressing as planned.,False
upd_001397,act_007_10,proj_007,2023-08-19,63.6,12.14,True,False,20,All tasks on track per daily plan.,False
upd_001398,act_007_10,proj_007,2023-08-20,65.6,2.04,True,False,18,Rework required on small section.,False
upd_001399,act_007_10,proj_007,2023-08-21,73.2,7.58,True,False,16,Overtime shift completed to recover schedule.,False
upd_001400,act_007_10,proj_007,2023-08-22,78.9,5.72,True,False,14,Minor delays due to material delivery.,False
upd_001401,act_007_10,proj_007,2023-08-23,87.0,8.05,True,False,15,Productivity affected by heat; hydration breaks added.,False
upd_001402,act_007_10,proj_007,2023-08-24,90.6,3.58,True,False,19,Minor delays due to material delivery.,False
upd_001403,act_007_10,proj_007,2023-08-25,93.9,3.29,False,False,18,Weather caused brief stoppage.,False
upd_001404,act_007_10,proj_007,2023-08-26,99.9,6.05,False,False,10,All tasks on track per daily plan.,False
upd_001405,act_007_11,proj_007,2023-08-28,2.0,1.98,True,False,15,Good progress β crew at full strength.,True
upd_001406,act_007_11,proj_007,2023-08-29,7.1,5.11,True,False,16,Material quality check done; passed.,True
upd_001407,act_007_11,proj_007,2023-08-30,15.1,7.99,True,False,16,Overtime shift completed to recover schedule.,False
upd_001408,act_007_11,proj_007,2023-08-31,22.5,7.39,False,False,9,Minor delays due to material delivery.,False
upd_001409,act_007_11,proj_007,2023-09-01,31.4,8.85,True,False,16,Minor delays due to material delivery.,False
upd_001410,act_007_11,proj_007,2023-09-02,39.6,8.17,True,False,22,Safety toolbox talk held; no incidents.,False
upd_001411,act_007_11,proj_007,2023-09-03,42.6,3.05,True,False,16,Waiting for subcontractor sign-off.,False
upd_001412,act_007_11,proj_007,2023-09-04,53.5,10.85,True,False,19,Client walkthrough conducted.,False
upd_001413,act_007_11,proj_007,2023-09-05,62.5,8.95,True,False,12,Material quality check done; passed.,False
upd_001414,act_007_11,proj_007,2023-09-06,68.8,6.32,True,False,7,Productivity affected by heat; hydration breaks added.,False
upd_001415,act_007_11,proj_007,2023-09-07,80.0,11.22,True,False,9,Overtime shift completed to recover schedule.,True
upd_001416,act_007_11,proj_007,2023-09-08,84.8,4.76,True,False,7,Night shift deployed to catch up.,False
upd_001417,act_007_11,proj_007,2023-09-09,90.1,5.32,False,False,18,Weather caused brief stoppage.,True
upd_001418,act_007_11,proj_007,2023-09-10,100.0,10.04,True,False,21,Waiting for subcontractor sign-off.,False
upd_001419,act_007_12,proj_007,2023-09-11,3.9,3.92,True,False,5,Overtime shift completed to recover schedule.,False
upd_001420,act_007_12,proj_007,2023-09-12,14.0,10.14,True,False,16,Material quality check done; passed.,False
upd_001421,act_007_12,proj_007,2023-09-13,23.9,9.86,True,True,13,Equipment breakdown caused 2-hour downtime.,False
upd_001422,act_007_12,proj_007,2023-09-14,25.9,2.03,True,False,16,Material quality check done; passed.,False
upd_001423,act_007_12,proj_007,2023-09-15,32.5,6.64,True,False,21,Rework required on small section.,False
upd_001424,act_007_12,proj_007,2023-09-16,40.3,7.84,True,False,9,Client walkthrough conducted.,False
upd_001425,act_007_12,proj_007,2023-09-17,46.2,5.89,True,False,16,Safety toolbox talk held; no incidents.,True
upd_001426,act_007_12,proj_007,2023-09-18,53.1,6.9,True,False,5,Work progressing as planned.,False
upd_001427,act_007_12,proj_007,2023-09-19,60.6,7.47,True,False,22,Work progressing as planned.,False
upd_001428,act_007_12,proj_007,2023-09-20,63.5,2.87,True,False,17,Waiting for subcontractor sign-off.,False
upd_001429,act_007_12,proj_007,2023-09-21,72.5,9.03,True,False,11,Weather caused brief stoppage.,False
upd_001430,act_007_12,proj_007,2023-09-22,77.8,5.27,True,False,6,All tasks on track per daily plan.,False
upd_001431,act_007_12,proj_007,2023-09-23,84.7,6.91,True,False,14,Work progressing as planned.,False
upd_001432,act_007_12,proj_007,2023-09-24,88.8,4.06,True,False,17,Inspection checkpoint cleared.,False
upd_001433,act_007_12,proj_007,2023-09-25,92.3,3.51,True,False,14,Overtime shift completed to recover schedule.,True
upd_001434,act_007_12,proj_007,2023-09-26,96.2,3.93,True,False,19,Minor delays due to material delivery.,False
upd_001435,act_007_12,proj_007,2023-09-27,99.9,3.73,True,False,14,Good progress β crew at full strength.,False
upd_001436,act_007_13,proj_007,2023-10-01,5.9,5.9,True,False,19,Rework required on small section.,False
upd_001437,act_007_13,proj_007,2023-10-02,12.3,6.42,False,False,21,Weather caused brief stoppage.,False
upd_001438,act_007_13,proj_007,2023-10-03,21.0,8.71,False,True,16,Night shift deployed to catch up.,False
upd_001439,act_007_13,proj_007,2023-10-04,30.5,9.53,True,False,22,Minor delays due to material delivery.,False
upd_001440,act_007_13,proj_007,2023-10-05,38.5,8.0,True,False,20,Material quality check done; passed.,False
upd_001441,act_007_13,proj_007,2023-10-06,43.6,5.15,True,False,13,Client walkthrough conducted.,False
upd_001442,act_007_13,proj_007,2023-10-07,44.5,0.88,True,False,10,Overtime shift completed to recover schedule.,False
upd_001443,act_007_13,proj_007,2023-10-08,48.0,3.47,True,False,21,Good progress β crew at full strength.,False
upd_001444,act_007_13,proj_007,2023-10-09,57.9,9.95,True,False,9,Safety toolbox talk held; no incidents.,False
upd_001445,act_007_13,proj_007,2023-10-10,62.5,4.6,False,False,18,Inspection checkpoint cleared.,False
upd_001446,act_007_13,proj_007,2023-10-11,65.4,2.85,True,False,17,Equipment breakdown caused 2-hour downtime.,False
upd_001447,act_007_13,proj_007,2023-10-12,74.9,9.5,True,False,15,Material quality check done; passed.,False
upd_001448,act_007_13,proj_007,2023-10-13,81.2,6.26,True,False,13,All tasks on track per daily plan.,False
upd_001449,act_007_13,proj_007,2023-10-14,84.0,2.77,False,False,6,Rework required on small section.,False
upd_001450,act_007_13,proj_007,2023-10-15,88.9,4.86,False,False,9,Inspection checkpoint cleared.,False
upd_001451,act_007_13,proj_007,2023-10-16,92.8,3.95,True,False,8,Weather caused brief stoppage.,False
upd_001452,act_007_13,proj_007,2023-10-17,100.0,7.2,True,False,19,Client walkthrough conducted.,True
upd_001453,act_007_14,proj_007,2023-10-19,7.7,7.7,False,False,10,Good progress β crew at full strength.,False
upd_001454,act_007_14,proj_007,2023-10-20,18.7,11.01,False,True,12,Rework required on small section.,False
upd_001455,act_007_14,proj_007,2023-10-21,26.3,7.56,True,False,19,Night shift deployed to catch up.,False
upd_001456,act_007_14,proj_007,2023-10-22,32.2,5.89,True,False,13,All tasks on track per daily plan.,True
upd_001457,act_007_14,proj_007,2023-10-23,41.6,9.42,False,False,6,Overtime shift completed to recover schedule.,True
upd_001458,act_007_14,proj_007,2023-10-24,44.9,3.25,True,False,7,Safety toolbox talk held; no incidents.,False
upd_001459,act_007_14,proj_007,2023-10-25,54.2,9.3,True,False,22,Night shift deployed to catch up.,False
upd_001460,act_007_14,proj_007,2023-10-26,60.0,5.84,False,False,11,Safety toolbox talk held; no incidents.,False
upd_001461,act_007_14,proj_007,2023-10-27,63.5,3.54,True,False,22,Productivity affected by heat; hydration breaks added.,True
upd_001462,act_007_14,proj_007,2023-10-28,74.6,11.07,True,False,17,Weather caused brief stoppage.,False
upd_001463,act_007_14,proj_007,2023-10-29,79.9,5.35,False,False,18,Overtime shift completed to recover schedule.,False
upd_001464,act_007_14,proj_007,2023-10-30,91.0,11.12,True,False,15,Productivity affected by heat; hydration breaks added.,False
upd_001465,act_007_14,proj_007,2023-10-31,99.9,8.95,True,False,11,Inspection checkpoint cleared.,False
upd_001466,act_007_15,proj_007,2023-11-02,12.0,12.05,True,False,15,All tasks on track per daily plan.,False
upd_001467,act_007_15,proj_007,2023-11-03,26.0,13.97,False,False,5,All tasks on track per daily plan.,False
upd_001468,act_007_15,proj_007,2023-11-04,37.6,11.6,True,False,11,Inspection checkpoint cleared.,False
upd_001469,act_007_15,proj_007,2023-11-05,54.5,16.94,False,False,15,Equipment breakdown caused 2-hour downtime.,False
upd_001470,act_007_15,proj_007,2023-11-06,67.5,13.03,False,False,18,Overtime shift completed to recover schedule.,False
upd_001471,act_007_15,proj_007,2023-11-07,81.4,13.89,False,False,12,Inspection checkpoint cleared.,True
upd_001472,act_007_15,proj_007,2023-11-08,99.9,18.53,True,False,10,All tasks on track per daily plan.,True
upd_001473,act_008_01,proj_008,2024-01-18,10.7,10.67,True,False,17,Night shift deployed to catch up.,False
upd_001474,act_008_01,proj_008,2024-01-19,24.2,13.5,False,False,19,Material quality check done; passed.,True
upd_001475,act_008_01,proj_008,2024-01-20,31.7,7.55,True,False,17,Equipment breakdown caused 2-hour downtime.,False
upd_001476,act_008_01,proj_008,2024-01-21,50.1,18.35,True,False,12,Client walkthrough conducted.,False
upd_001477,act_008_01,proj_008,2024-01-22,57.3,7.19,False,False,21,Productivity affected by heat; hydration breaks added.,True
upd_001478,act_008_01,proj_008,2024-01-23,70.5,13.18,False,False,9,Rework required on small section.,False
upd_001479,act_008_01,proj_008,2024-01-24,78.2,7.67,True,False,10,Rework required on small section.,False
upd_001480,act_008_01,proj_008,2024-01-25,86.3,8.15,True,False,11,Client walkthrough conducted.,False
upd_001481,act_008_01,proj_008,2024-01-26,100.0,13.75,True,False,8,All tasks on track per daily plan.,False
upd_001482,act_008_02,proj_008,2024-01-30,9.5,9.46,False,False,18,Material quality check done; passed.,False
upd_001483,act_008_02,proj_008,2024-01-31,11.3,1.78,True,False,22,All tasks on track per daily plan.,False
upd_001484,act_008_02,proj_008,2024-02-01,16.5,5.22,True,False,15,Good progress β crew at full strength.,False
upd_001485,act_008_02,proj_008,2024-02-02,20.4,3.86,False,False,22,Weather caused brief stoppage.,False
upd_001486,act_008_02,proj_008,2024-02-03,28.4,8.04,True,True,11,Equipment breakdown caused 2-hour downtime.,True
upd_001487,act_008_02,proj_008,2024-02-04,39.3,10.9,True,False,9,Work progressing as planned.,True
upd_001488,act_008_02,proj_008,2024-02-05,43.6,4.33,True,False,6,Waiting for subcontractor sign-off.,False
upd_001489,act_008_02,proj_008,2024-02-06,50.5,6.95,True,False,20,Overtime shift completed to recover schedule.,False
upd_001490,act_008_02,proj_008,2024-02-07,59.0,8.52,False,False,19,Minor delays due to material delivery.,False
upd_001491,act_008_02,proj_008,2024-02-08,65.8,6.84,False,False,12,Inspection checkpoint cleared.,False
upd_001492,act_008_02,proj_008,2024-02-09,72.9,7.12,True,False,10,Safety toolbox talk held; no incidents.,False
upd_001493,act_008_02,proj_008,2024-02-10,81.7,8.85,False,False,10,Overtime shift completed to recover schedule.,False
upd_001494,act_008_02,proj_008,2024-02-11,91.9,10.24,True,False,12,Weather caused brief stoppage.,False
upd_001495,act_008_02,proj_008,2024-02-12,99.8,7.91,True,False,18,Minor delays due to material delivery.,False
upd_001496,act_008_03,proj_008,2024-02-13,3.1,3.07,True,False,16,Rework required on small section.,True
upd_001497,act_008_03,proj_008,2024-02-14,5.3,2.19,True,False,12,Minor delays due to material delivery.,False
upd_001498,act_008_03,proj_008,2024-02-15,11.0,5.74,True,True,11,Material quality check done; passed.,True
upd_001499,act_008_03,proj_008,2024-02-16,18.5,7.5,False,False,5,Work progressing as planned.,False
upd_001500,act_008_03,proj_008,2024-02-17,24.7,6.2,True,False,16,Rework required on small section.,False
upd_001501,act_008_03,proj_008,2024-02-18,28.4,3.68,True,False,22,Good progress β crew at full strength.,False
upd_001502,act_008_03,proj_008,2024-02-19,31.8,3.42,False,False,18,Good progress β crew at full strength.,False
upd_001503,act_008_03,proj_008,2024-02-20,35.1,3.29,True,False,12,Minor delays due to material delivery.,True
upd_001504,act_008_03,proj_008,2024-02-21,41.3,6.23,True,False,12,Productivity affected by heat; hydration breaks added.,False
upd_001505,act_008_03,proj_008,2024-02-22,47.2,5.92,False,False,12,Safety toolbox talk held; no incidents.,False
upd_001506,act_008_03,proj_008,2024-02-23,53.1,5.94,True,False,17,Equipment breakdown caused 2-hour downtime.,False
upd_001507,act_008_03,proj_008,2024-02-24,59.1,6.04,True,False,8,Client walkthrough conducted.,False
upd_001508,act_008_03,proj_008,2024-02-25,67.9,8.82,False,False,5,Weather caused brief stoppage.,False
upd_001509,act_008_03,proj_008,2024-02-26,71.6,3.74,True,False,12,Good progress β crew at full strength.,False
upd_001510,act_008_03,proj_008,2024-02-27,76.5,4.9,False,False,19,Work progressing as planned.,False
upd_001511,act_008_03,proj_008,2024-02-28,81.0,4.49,True,False,18,Material quality check done; passed.,False
upd_001512,act_008_03,proj_008,2024-02-29,87.4,6.41,True,False,15,Minor delays due to material delivery.,True
upd_001513,act_008_03,proj_008,2024-03-01,93.4,6.05,False,False,20,All tasks on track per daily plan.,False
upd_001514,act_008_03,proj_008,2024-03-02,99.8,6.36,True,False,22,Work progressing as planned.,False
upd_001515,act_008_04,proj_008,2024-03-03,10.8,10.76,True,False,6,Weather caused brief stoppage.,False
upd_001516,act_008_04,proj_008,2024-03-04,26.1,15.31,False,False,4,Inspection checkpoint cleared.,False
upd_001517,act_008_04,proj_008,2024-03-05,34.4,8.27,True,False,22,Equipment breakdown caused 2-hour downtime.,False
upd_001518,act_008_04,proj_008,2024-03-06,45.3,10.85,True,False,6,Material quality check done; passed.,False
upd_001519,act_008_04,proj_008,2024-03-07,57.1,11.85,True,False,12,Safety toolbox talk held; no incidents.,False
upd_001520,act_008_04,proj_008,2024-03-08,65.0,7.91,True,False,18,Waiting for subcontractor sign-off.,False
upd_001521,act_008_04,proj_008,2024-03-09,76.1,11.13,False,False,22,Good progress β crew at full strength.,False
upd_001522,act_008_04,proj_008,2024-03-10,85.9,9.81,True,True,14,Night shift deployed to catch up.,False
upd_001523,act_008_04,proj_008,2024-03-11,100.0,14.1,False,False,16,Minor delays due to material delivery.,True
upd_001524,act_008_05,proj_008,2024-03-04,6.2,6.23,False,False,16,Minor delays due to material delivery.,False
upd_001525,act_008_05,proj_008,2024-03-05,14.6,8.45,True,False,16,Inspection checkpoint cleared.,True
upd_001526,act_008_05,proj_008,2024-03-06,14.6,0.0,True,False,13,Material quality check done; passed.,False
upd_001527,act_008_05,proj_008,2024-03-07,25.6,11.01,False,False,8,Waiting for subcontractor sign-off.,False
upd_001528,act_008_05,proj_008,2024-03-08,28.9,3.34,True,False,19,Material quality check done; passed.,False
upd_001529,act_008_05,proj_008,2024-03-09,38.9,9.97,True,False,17,Minor delays due to material delivery.,False
upd_001530,act_008_05,proj_008,2024-03-10,49.7,10.83,True,False,17,Rework required on small section.,False
upd_001531,act_008_05,proj_008,2024-03-11,52.4,2.72,True,True,18,Rework required on small section.,False
upd_001532,act_008_05,proj_008,2024-03-12,62.1,9.73,True,False,19,Client walkthrough conducted.,False
upd_001533,act_008_05,proj_008,2024-03-13,66.1,4.01,True,False,17,Minor delays due to material delivery.,False
upd_001534,act_008_05,proj_008,2024-03-14,72.8,6.75,True,False,8,Rework required on small section.,False
upd_001535,act_008_05,proj_008,2024-03-15,78.7,5.9,True,False,13,Safety toolbox talk held; no incidents.,False
upd_001536,act_008_05,proj_008,2024-03-16,86.0,7.33,True,False,7,Client walkthrough conducted.,True
upd_001537,act_008_05,proj_008,2024-03-17,88.2,2.16,True,False,22,All tasks on track per daily plan.,False
upd_001538,act_008_05,proj_008,2024-03-18,94.2,6.02,True,False,20,Work progressing as planned.,False
upd_001539,act_008_05,proj_008,2024-03-19,99.8,5.55,True,False,9,All tasks on track per daily plan.,True
upd_001540,act_008_06,proj_008,2024-03-04,4.7,4.73,False,False,13,Waiting for subcontractor sign-off.,False
upd_001541,act_008_06,proj_008,2024-03-05,12.8,8.08,True,False,12,Waiting for subcontractor sign-off.,False
upd_001542,act_008_06,proj_008,2024-03-06,18.7,5.88,True,False,9,Minor delays due to material delivery.,False
upd_001543,act_008_06,proj_008,2024-03-07,24.6,5.94,False,False,7,Overtime shift completed to recover schedule.,False
upd_001544,act_008_06,proj_008,2024-03-08,31.6,7.03,True,True,9,Rework required on small section.,False
upd_001545,act_008_06,proj_008,2024-03-09,38.4,6.81,False,False,19,Inspection checkpoint cleared.,False
upd_001546,act_008_06,proj_008,2024-03-10,46.9,8.47,True,False,16,Night shift deployed to catch up.,False
upd_001547,act_008_06,proj_008,2024-03-11,50.0,3.06,True,False,7,All tasks on track per daily plan.,False
upd_001548,act_008_06,proj_008,2024-03-12,56.9,6.94,False,False,10,Material quality check done; passed.,True
upd_001549,act_008_06,proj_008,2024-03-13,60.5,3.56,True,False,21,Weather caused brief stoppage.,False
upd_001550,act_008_06,proj_008,2024-03-14,66.4,5.86,True,False,17,Work progressing as planned.,True
upd_001551,act_008_06,proj_008,2024-03-15,74.7,8.33,False,False,18,Material quality check done; passed.,True
upd_001552,act_008_06,proj_008,2024-03-16,84.1,9.4,True,False,10,Inspection checkpoint cleared.,False
upd_001553,act_008_06,proj_008,2024-03-17,88.8,4.65,True,False,4,Minor delays due to material delivery.,False
upd_001554,act_008_06,proj_008,2024-03-18,97.7,8.94,False,False,19,Productivity affected by heat; hydration breaks added.,False
upd_001555,act_008_06,proj_008,2024-03-19,100.0,2.3,False,False,5,Material quality check done; passed.,False
upd_001556,act_008_07,proj_008,2024-03-05,4.0,3.95,False,False,19,Weather caused brief stoppage.,False
upd_001557,act_008_07,proj_008,2024-03-06,13.7,9.66,True,False,14,Client walkthrough conducted.,False
upd_001558,act_008_07,proj_008,2024-03-07,24.3,10.65,True,False,19,Minor delays due to material delivery.,True
upd_001559,act_008_07,proj_008,2024-03-08,29.8,5.49,True,False,17,Work progressing as planned.,False
upd_001560,act_008_07,proj_008,2024-03-09,33.9,4.09,True,False,18,Weather caused brief stoppage.,False
upd_001561,act_008_07,proj_008,2024-03-10,41.4,7.48,True,False,18,Good progress β crew at full strength.,False
upd_001562,act_008_07,proj_008,2024-03-11,52.3,10.9,True,False,17,All tasks on track per daily plan.,False
upd_001563,act_008_07,proj_008,2024-03-12,59.9,7.61,True,False,19,Night shift deployed to catch up.,False
upd_001564,act_008_07,proj_008,2024-03-13,71.0,11.11,True,False,6,Rework required on small section.,False
upd_001565,act_008_07,proj_008,2024-03-14,78.8,7.81,True,False,19,Minor delays due to material delivery.,False
upd_001566,act_008_07,proj_008,2024-03-15,87.6,8.79,True,False,11,Weather caused brief stoppage.,False
upd_001567,act_008_07,proj_008,2024-03-16,100.0,12.45,True,False,12,Waiting for subcontractor sign-off.,False
upd_001568,act_008_08,proj_008,2024-03-21,4.3,4.33,False,False,20,Work progressing as planned.,False
upd_001569,act_008_08,proj_008,2024-03-22,13.5,9.18,True,False,11,Minor delays due to material delivery.,False
upd_001570,act_008_08,proj_008,2024-03-23,24.6,11.06,False,False,15,Night shift deployed to catch up.,False
upd_001571,act_008_08,proj_008,2024-03-24,31.7,7.1,True,False,8,All tasks on track per daily plan.,True
upd_001572,act_008_08,proj_008,2024-03-25,39.5,7.84,True,False,5,Equipment breakdown caused 2-hour downtime.,False
upd_001573,act_008_08,proj_008,2024-03-26,53.1,13.57,False,False,7,Minor delays due to material delivery.,False
upd_001574,act_008_08,proj_008,2024-03-27,62.4,9.32,False,False,7,All tasks on track per daily plan.,False
upd_001575,act_008_08,proj_008,2024-03-28,75.9,13.54,True,False,7,All tasks on track per daily plan.,False
upd_001576,act_008_08,proj_008,2024-03-29,85.0,9.14,False,False,18,Night shift deployed to catch up.,False
upd_001577,act_008_08,proj_008,2024-03-30,91.3,6.28,True,False,15,Waiting for subcontractor sign-off.,False
upd_001578,act_008_08,proj_008,2024-03-31,99.9,8.64,True,False,17,Night shift deployed to catch up.,False
upd_001579,act_008_09,proj_008,2024-04-01,1.2,1.21,False,False,14,Inspection checkpoint cleared.,False
upd_001580,act_008_09,proj_008,2024-04-02,1.6,0.44,True,False,17,Waiting for subcontractor sign-off.,False
upd_001581,act_008_09,proj_008,2024-04-03,1.8,0.2,False,False,20,Overtime shift completed to recover schedule.,False
upd_001582,act_008_09,proj_008,2024-04-04,2.0,0.22,True,False,17,Equipment breakdown caused 2-hour downtime.,False
upd_001583,act_008_09,proj_008,2024-04-05,2.5,0.52,False,False,15,Work progressing as planned.,False
upd_001584,act_008_09,proj_008,2024-04-06,2.5,0.0,True,False,20,Minor delays due to material delivery.,False
upd_001585,act_008_09,proj_008,2024-04-07,4.5,2.04,False,False,9,Overtime shift completed to recover schedule.,True
upd_001586,act_008_09,proj_008,2024-04-08,4.5,0.0,True,False,8,Equipment breakdown caused 2-hour downtime.,True
upd_001587,act_008_09,proj_008,2024-04-09,4.5,0.0,False,False,20,Inspection checkpoint cleared.,False
upd_001588,act_008_09,proj_008,2024-04-10,5.1,0.59,True,False,13,Productivity affected by heat; hydration breaks added.,False
upd_001589,act_008_09,proj_008,2024-04-11,5.1,0.0,True,False,12,Equipment breakdown caused 2-hour downtime.,False
upd_001590,act_008_09,proj_008,2024-04-12,5.1,0.0,True,False,18,Rework required on small section.,False
upd_001591,act_008_09,proj_008,2024-04-13,6.5,1.37,False,False,18,Productivity affected by heat; hydration breaks added.,False
upd_001592,act_008_09,proj_008,2024-04-14,8.1,1.59,True,False,10,Equipment breakdown caused 2-hour downtime.,False
upd_001593,act_008_09,proj_008,2024-04-15,8.1,0.0,True,True,8,Client walkthrough conducted.,False
upd_001594,act_008_09,proj_008,2024-04-16,9.4,1.26,True,False,21,Inspection checkpoint cleared.,False
upd_001595,act_008_09,proj_008,2024-04-17,9.6,0.18,True,False,4,Equipment breakdown caused 2-hour downtime.,False
upd_001596,act_008_09,proj_008,2024-04-18,11.5,1.93,True,False,13,Productivity affected by heat; hydration breaks added.,False
upd_001597,act_008_09,proj_008,2024-04-19,13.3,1.84,False,False,15,Inspection checkpoint cleared.,False
upd_001598,act_008_09,proj_008,2024-04-20,13.4,0.14,True,False,7,Material quality check done; passed.,False
upd_001599,act_008_09,proj_008,2024-04-21,14.2,0.77,True,False,11,Night shift deployed to catch up.,False
upd_001600,act_008_09,proj_008,2024-04-22,14.2,0.0,True,False,21,All tasks on track per daily plan.,False
upd_001601,act_008_09,proj_008,2024-04-23,14.2,0.0,True,False,22,Rework required on small section.,False
upd_001602,act_008_09,proj_008,2024-04-24,14.2,0.05,False,False,7,Waiting for subcontractor sign-off.,False
upd_001603,act_008_09,proj_008,2024-04-25,15.5,1.31,False,False,18,Minor delays due to material delivery.,False
upd_001604,act_008_09,proj_008,2024-04-26,16.6,1.05,True,False,6,Work progressing as planned.,False
upd_001605,act_008_09,proj_008,2024-04-27,16.6,0.0,True,False,6,Waiting for subcontractor sign-off.,False
upd_001606,act_008_09,proj_008,2024-04-28,17.4,0.75,True,False,16,All tasks on track per daily plan.,False
upd_001607,act_008_09,proj_008,2024-04-29,17.4,0.0,True,False,18,Productivity affected by heat; hydration breaks added.,False
upd_001608,act_008_09,proj_008,2024-04-30,17.4,0.0,False,False,9,Good progress β crew at full strength.,False
upd_001609,act_008_09,proj_008,2024-05-01,18.3,0.89,True,False,20,All tasks on track per daily plan.,False
upd_001610,act_008_09,proj_008,2024-05-02,18.3,0.0,True,False,5,Productivity affected by heat; hydration breaks added.,False
upd_001611,act_008_09,proj_008,2024-05-03,18.3,0.0,False,False,7,Safety toolbox talk held; no incidents.,False
upd_001612,act_008_09,proj_008,2024-05-04,18.7,0.36,True,False,13,Work progressing as planned.,False
upd_001613,act_008_09,proj_008,2024-05-05,19.2,0.46,True,False,15,Inspection checkpoint cleared.,False
upd_001614,act_008_09,proj_008,2024-05-06,19.9,0.75,True,True,22,Overtime shift completed to recover schedule.,False
upd_001615,act_008_09,proj_008,2024-05-07,19.9,0.0,False,False,10,Good progress β crew at full strength.,True
upd_001616,act_008_09,proj_008,2024-05-08,19.9,0.0,True,False,15,Minor delays due to material delivery.,False
upd_001617,act_008_09,proj_008,2024-05-09,21.2,1.34,True,False,22,Material quality check done; passed.,False
upd_001618,act_008_09,proj_008,2024-05-10,22.1,0.86,True,False,8,Night shift deployed to catch up.,False
upd_001619,act_008_09,proj_008,2024-05-11,23.4,1.31,False,False,18,Good progress β crew at full strength.,False
upd_001620,act_008_09,proj_008,2024-05-12,24.7,1.35,False,False,17,Overtime shift completed to recover schedule.,False
upd_001621,act_008_09,proj_008,2024-05-13,24.7,0.0,True,False,18,Productivity affected by heat; hydration breaks added.,False
upd_001622,act_008_09,proj_008,2024-05-14,24.7,0.0,True,False,4,Safety toolbox talk held; no incidents.,False
upd_001623,act_008_09,proj_008,2024-05-15,26.9,2.19,True,False,7,Rework required on small section.,False
upd_001624,act_008_09,proj_008,2024-05-16,26.9,0.0,True,False,22,Night shift deployed to catch up.,False
upd_001625,act_008_09,proj_008,2024-05-17,26.9,0.0,True,False,19,Client walkthrough conducted.,True
upd_001626,act_008_09,proj_008,2024-05-18,26.9,0.0,False,False,9,Work progressing as planned.,False
upd_001627,act_008_09,proj_008,2024-05-19,27.5,0.62,False,False,22,Material quality check done; passed.,False
upd_001628,act_008_09,proj_008,2024-05-20,27.5,0.0,True,False,22,Work progressing as planned.,True
upd_001629,act_008_09,proj_008,2024-05-21,28.0,0.51,True,False,9,Overtime shift completed to recover schedule.,False
upd_001630,act_008_09,proj_008,2024-05-22,28.8,0.83,True,False,6,Minor delays due to material delivery.,True
upd_001631,act_008_09,proj_008,2024-05-23,28.8,0.0,True,False,9,Inspection checkpoint cleared.,False
upd_001632,act_008_09,proj_008,2024-05-24,30.1,1.32,False,False,9,Work progressing as planned.,False
upd_001633,act_008_09,proj_008,2024-05-25,30.7,0.6,True,False,5,Inspection checkpoint cleared.,False
upd_001634,act_008_09,proj_008,2024-05-26,32.4,1.73,True,False,14,Inspection checkpoint cleared.,False
upd_001635,act_008_09,proj_008,2024-05-27,33.7,1.27,True,False,10,Weather caused brief stoppage.,False
upd_001636,act_008_09,proj_008,2024-05-28,33.7,0.0,True,False,20,Overtime shift completed to recover schedule.,False
upd_001637,act_008_09,proj_008,2024-05-29,34.5,0.84,True,False,21,Overtime shift completed to recover schedule.,False
upd_001638,act_008_09,proj_008,2024-05-30,34.5,0.0,True,True,4,Inspection checkpoint cleared.,True
upd_001639,act_008_09,proj_008,2024-05-31,34.5,0.0,True,False,21,Rework required on small section.,False
upd_001640,act_008_09,proj_008,2024-06-01,34.6,0.08,True,False,6,All tasks on track per daily plan.,False
upd_001641,act_008_09,proj_008,2024-06-02,34.6,0.0,False,False,15,Client walkthrough conducted.,False
upd_001642,act_008_09,proj_008,2024-06-03,35.3,0.68,True,False,17,Equipment breakdown caused 2-hour downtime.,False
upd_001643,act_008_09,proj_008,2024-06-04,37.5,2.23,False,True,13,Rework required on small section.,False
upd_001644,act_008_09,proj_008,2024-06-05,38.6,1.06,False,True,19,Inspection checkpoint cleared.,False
upd_001645,act_008_09,proj_008,2024-06-06,38.6,0.0,True,False,15,All tasks on track per daily plan.,False
upd_001646,act_008_09,proj_008,2024-06-07,39.3,0.69,True,False,5,Good progress β crew at full strength.,False
upd_001647,act_008_09,proj_008,2024-06-08,39.7,0.4,True,False,16,Productivity affected by heat; hydration breaks added.,False
upd_001648,act_008_09,proj_008,2024-06-09,41.2,1.48,True,False,12,Equipment breakdown caused 2-hour downtime.,True
upd_001649,act_008_09,proj_008,2024-06-10,41.3,0.06,False,False,14,Equipment breakdown caused 2-hour downtime.,False
upd_001650,act_008_09,proj_008,2024-06-11,41.3,0.0,True,False,18,Inspection checkpoint cleared.,False
upd_001651,act_008_09,proj_008,2024-06-12,41.3,0.0,True,False,18,Safety toolbox talk held; no incidents.,False
upd_001652,act_008_09,proj_008,2024-06-13,41.3,0.0,True,False,4,Safety toolbox talk held; no incidents.,False
upd_001653,act_008_09,proj_008,2024-06-14,41.3,0.0,True,False,17,Client walkthrough conducted.,False
upd_001654,act_008_09,proj_008,2024-06-15,41.8,0.51,False,False,21,Minor delays due to material delivery.,False
upd_001655,act_008_09,proj_008,2024-06-16,41.8,0.0,True,False,4,Equipment breakdown caused 2-hour downtime.,False
upd_001656,act_008_09,proj_008,2024-06-17,42.5,0.66,True,False,15,All tasks on track per daily plan.,False
upd_001657,act_008_09,proj_008,2024-06-18,44.0,1.5,True,False,4,Minor delays due to material delivery.,False
upd_001658,act_008_09,proj_008,2024-06-19,45.1,1.1,True,False,11,Productivity affected by heat; hydration breaks added.,False
upd_001659,act_008_09,proj_008,2024-06-20,45.1,0.0,False,False,15,Weather caused brief stoppage.,True
upd_001660,act_008_09,proj_008,2024-06-21,45.3,0.23,True,False,11,Weather caused brief stoppage.,True
upd_001661,act_008_09,proj_008,2024-06-22,46.6,1.3,True,False,19,Equipment breakdown caused 2-hour downtime.,False
upd_001662,act_008_09,proj_008,2024-06-23,48.1,1.52,True,False,16,Minor delays due to material delivery.,False
upd_001663,act_008_09,proj_008,2024-06-24,48.1,0.0,True,False,21,Weather caused brief stoppage.,False
upd_001664,act_008_09,proj_008,2024-06-25,48.6,0.5,True,False,22,Good progress β crew at full strength.,False
upd_001665,act_008_09,proj_008,2024-06-26,49.2,0.56,True,False,12,Equipment breakdown caused 2-hour downtime.,True
upd_001666,act_008_09,proj_008,2024-06-27,50.6,1.44,True,False,12,Weather caused brief stoppage.,False
upd_001667,act_008_09,proj_008,2024-06-28,51.2,0.64,False,True,21,Safety toolbox talk held; no incidents.,False
upd_001668,act_008_09,proj_008,2024-06-29,51.2,0.0,True,False,17,Rework required on small section.,False
upd_001669,act_008_09,proj_008,2024-06-30,51.2,0.0,False,False,14,Overtime shift completed to recover schedule.,False
upd_001670,act_008_09,proj_008,2024-07-01,53.0,1.84,True,False,20,Material quality check done; passed.,False
upd_001671,act_008_09,proj_008,2024-07-02,53.8,0.76,True,False,11,Work progressing as planned.,False
upd_001672,act_008_09,proj_008,2024-07-03,53.8,0.0,True,False,4,Overtime shift completed to recover schedule.,False
upd_001673,act_008_09,proj_008,2024-07-04,54.2,0.43,True,False,4,Productivity affected by heat; hydration breaks added.,False
upd_001674,act_008_09,proj_008,2024-07-05,54.5,0.34,False,False,11,Weather caused brief stoppage.,False
upd_001675,act_008_09,proj_008,2024-07-06,55.7,1.25,True,False,7,Work progressing as planned.,False
upd_001676,act_008_09,proj_008,2024-07-07,55.7,0.0,True,False,14,All tasks on track per daily plan.,False
upd_001677,act_008_09,proj_008,2024-07-08,55.7,0.0,True,False,14,All tasks on track per daily plan.,False
upd_001678,act_008_09,proj_008,2024-07-09,56.4,0.73,False,False,6,Night shift deployed to catch up.,True
upd_001679,act_008_09,proj_008,2024-07-10,56.4,0.0,True,False,18,Safety toolbox talk held; no incidents.,False
upd_001680,act_008_09,proj_008,2024-07-11,57.7,1.27,False,False,16,Waiting for subcontractor sign-off.,True
upd_001681,act_008_09,proj_008,2024-07-12,57.7,0.0,False,False,5,Equipment breakdown caused 2-hour downtime.,False
upd_001682,act_008_09,proj_008,2024-07-13,57.7,0.0,True,True,17,Minor delays due to material delivery.,False
upd_001683,act_008_09,proj_008,2024-07-14,59.2,1.46,True,True,16,Overtime shift completed to recover schedule.,True
upd_001684,act_008_09,proj_008,2024-07-15,59.4,0.16,True,False,4,Material quality check done; passed.,True
upd_001685,act_008_09,proj_008,2024-07-16,59.7,0.34,False,False,7,Waiting for subcontractor sign-off.,False
upd_001686,act_008_09,proj_008,2024-07-17,59.7,0.0,True,False,20,Waiting for subcontractor sign-off.,False
upd_001687,act_008_09,proj_008,2024-07-18,60.0,0.27,True,False,6,Safety toolbox talk held; no incidents.,False
upd_001688,act_008_09,proj_008,2024-07-19,61.8,1.83,True,False,20,Inspection checkpoint cleared.,False
upd_001689,act_009_01,proj_009,2024-03-01,8.9,8.9,True,False,9,Weather caused brief stoppage.,False
upd_001690,act_009_01,proj_009,2024-03-02,16.9,8.02,True,True,22,Overtime shift completed to recover schedule.,False
upd_001691,act_009_01,proj_009,2024-03-03,29.4,12.46,True,False,22,Equipment breakdown caused 2-hour downtime.,False
upd_001692,act_009_01,proj_009,2024-03-04,43.4,14.0,True,False,14,Inspection checkpoint cleared.,False
upd_001693,act_009_01,proj_009,2024-03-05,57.6,14.19,True,True,8,Work progressing as planned.,False
upd_001694,act_009_01,proj_009,2024-03-06,66.4,8.81,True,False,5,Overtime shift completed to recover schedule.,False
upd_001695,act_009_01,proj_009,2024-03-07,80.3,13.88,True,False,10,Night shift deployed to catch up.,False
upd_001696,act_009_01,proj_009,2024-03-08,89.3,8.99,True,False,18,Safety toolbox talk held; no incidents.,True
upd_001697,act_009_01,proj_009,2024-03-09,100.0,10.75,True,False,14,Safety toolbox talk held; no incidents.,False
upd_001698,act_009_02,proj_009,2024-03-10,6.5,6.53,True,False,5,Material quality check done; passed.,False
upd_001699,act_009_02,proj_009,2024-03-11,10.9,4.41,True,True,11,Material quality check done; passed.,False
upd_001700,act_009_02,proj_009,2024-03-12,23.3,12.39,False,False,14,Night shift deployed to catch up.,False
upd_001701,act_009_02,proj_009,2024-03-13,31.7,8.43,True,False,4,Waiting for subcontractor sign-off.,False
upd_001702,act_009_02,proj_009,2024-03-14,43.0,11.35,True,False,8,Inspection checkpoint cleared.,True
upd_001703,act_009_02,proj_009,2024-03-15,43.0,0.0,False,False,15,Work progressing as planned.,False
upd_001704,act_009_02,proj_009,2024-03-16,54.9,11.94,True,False,11,Equipment breakdown caused 2-hour downtime.,False
upd_001705,act_009_02,proj_009,2024-03-17,65.0,10.08,False,False,11,Good progress β crew at full strength.,False
upd_001706,act_009_02,proj_009,2024-03-18,74.5,9.47,True,False,7,Work progressing as planned.,False
upd_001707,act_009_02,proj_009,2024-03-19,83.1,8.63,True,False,7,Waiting for subcontractor sign-off.,False
upd_001708,act_009_02,proj_009,2024-03-20,87.8,4.7,True,False,15,Rework required on small section.,False
upd_001709,act_009_02,proj_009,2024-03-21,94.8,7.03,False,False,17,Equipment breakdown caused 2-hour downtime.,False
upd_001710,act_009_02,proj_009,2024-03-22,99.8,5.04,False,False,8,Night shift deployed to catch up.,False
upd_001711,act_009_03,proj_009,2024-03-23,9.0,9.04,True,False,14,Safety toolbox talk held; no incidents.,False
upd_001712,act_009_03,proj_009,2024-03-24,11.2,2.21,False,False,22,Weather caused brief stoppage.,False
upd_001713,act_009_03,proj_009,2024-03-25,13.1,1.94,True,False,11,Work progressing as planned.,False
upd_001714,act_009_03,proj_009,2024-03-26,18.9,5.84,True,False,20,Safety toolbox talk held; no incidents.,False
upd_001715,act_009_03,proj_009,2024-03-27,21.6,2.67,True,False,19,Night shift deployed to catch up.,False
upd_001716,act_009_03,proj_009,2024-03-28,23.5,1.85,True,False,20,Waiting for subcontractor sign-off.,False
upd_001717,act_009_03,proj_009,2024-03-29,29.2,5.7,True,False,15,Client walkthrough conducted.,False
upd_001718,act_009_03,proj_009,2024-03-30,37.3,8.15,True,False,12,Safety toolbox talk held; no incidents.,False
upd_001719,act_009_03,proj_009,2024-03-31,37.3,0.0,True,False,5,Weather caused brief stoppage.,False
upd_001720,act_009_03,proj_009,2024-04-01,46.1,8.76,False,False,16,Weather caused brief stoppage.,False
upd_001721,act_009_03,proj_009,2024-04-02,51.4,5.3,True,False,15,Inspection checkpoint cleared.,False
upd_001722,act_009_03,proj_009,2024-04-03,56.3,4.94,True,False,18,Client walkthrough conducted.,False
upd_001723,act_009_03,proj_009,2024-04-04,61.4,5.13,True,False,14,Overtime shift completed to recover schedule.,False
upd_001724,act_009_03,proj_009,2024-04-05,68.0,6.58,True,False,19,Waiting for subcontractor sign-off.,False
upd_001725,act_009_03,proj_009,2024-04-06,74.9,6.86,True,True,12,Rework required on small section.,False
upd_001726,act_009_03,proj_009,2024-04-07,75.8,0.94,True,False,20,Client walkthrough conducted.,True
upd_001727,act_009_03,proj_009,2024-04-08,83.0,7.21,True,False,11,Minor delays due to material delivery.,False
upd_001728,act_009_03,proj_009,2024-04-09,87.4,4.37,True,False,14,Weather caused brief stoppage.,True
upd_001729,act_009_03,proj_009,2024-04-10,95.6,8.16,False,False,12,Weather caused brief stoppage.,False
upd_001730,act_009_03,proj_009,2024-04-11,100.0,4.35,False,False,21,Equipment breakdown caused 2-hour downtime.,False
upd_001731,act_009_04,proj_009,2024-04-12,7.1,7.1,True,False,15,Night shift deployed to catch up.,False
upd_001732,act_009_04,proj_009,2024-04-13,21.9,14.84,False,False,4,Material quality check done; passed.,False
upd_001733,act_009_04,proj_009,2024-04-14,32.7,10.81,False,False,16,Weather caused brief stoppage.,False
upd_001734,act_009_04,proj_009,2024-04-15,42.2,9.52,True,False,20,Safety toolbox talk held; no incidents.,False
upd_001735,act_009_04,proj_009,2024-04-16,53.0,10.78,False,False,18,Waiting for subcontractor sign-off.,False
upd_001736,act_009_04,proj_009,2024-04-17,66.7,13.72,True,False,17,Weather caused brief stoppage.,False
upd_001737,act_009_04,proj_009,2024-04-18,73.0,6.3,True,False,8,Safety toolbox talk held; no incidents.,False
upd_001738,act_009_04,proj_009,2024-04-19,88.4,15.43,False,False,19,Night shift deployed to catch up.,False
upd_001739,act_009_04,proj_009,2024-04-20,99.9,11.51,True,False,17,Rework required on small section.,False
upd_001740,act_009_05,proj_009,2024-04-12,5.7,5.67,True,False,13,Waiting for subcontractor sign-off.,False
upd_001741,act_009_05,proj_009,2024-04-13,12.6,6.94,True,False,8,Good progress β crew at full strength.,False
upd_001742,act_009_05,proj_009,2024-04-14,21.0,8.38,True,False,22,All tasks on track per daily plan.,False
upd_001743,act_009_05,proj_009,2024-04-15,24.9,3.89,False,False,6,Client walkthrough conducted.,False
upd_001744,act_009_05,proj_009,2024-04-16,34.4,9.48,True,False,18,Rework required on small section.,False
upd_001745,act_009_05,proj_009,2024-04-17,38.2,3.76,True,False,21,Good progress β crew at full strength.,False
upd_001746,act_009_05,proj_009,2024-04-18,44.9,6.72,True,False,9,Weather caused brief stoppage.,True
upd_001747,act_009_05,proj_009,2024-04-19,51.2,6.31,True,False,11,Inspection checkpoint cleared.,True
upd_001748,act_009_05,proj_009,2024-04-20,57.4,6.19,True,False,20,Work progressing as planned.,False
upd_001749,act_009_05,proj_009,2024-04-21,64.8,7.37,True,False,9,Minor delays due to material delivery.,False
upd_001750,act_009_05,proj_009,2024-04-22,70.9,6.08,False,False,16,Equipment breakdown caused 2-hour downtime.,True
upd_001751,act_009_05,proj_009,2024-04-23,70.9,0.0,True,False,17,All tasks on track per daily plan.,False
upd_001752,act_009_05,proj_009,2024-04-24,81.6,10.71,True,False,13,Safety toolbox talk held; no incidents.,False
upd_001753,act_009_05,proj_009,2024-04-25,90.2,8.63,True,False,10,Work progressing as planned.,False
upd_001754,act_009_05,proj_009,2024-04-26,98.1,7.9,False,False,11,Client walkthrough conducted.,False
upd_001755,act_009_05,proj_009,2024-04-27,100.0,1.98,True,False,18,Safety toolbox talk held; no incidents.,False
upd_001756,act_009_06,proj_009,2024-04-12,5.6,5.57,True,False,18,Waiting for subcontractor sign-off.,True
upd_001757,act_009_06,proj_009,2024-04-13,6.6,0.98,True,False,9,Overtime shift completed to recover schedule.,False
upd_001758,act_009_06,proj_009,2024-04-14,15.9,9.26,False,False,18,Overtime shift completed to recover schedule.,False
upd_001759,act_009_06,proj_009,2024-04-15,20.3,4.4,True,False,16,Productivity affected by heat; hydration breaks added.,False
upd_001760,act_009_06,proj_009,2024-04-16,27.2,6.92,False,False,12,Equipment breakdown caused 2-hour downtime.,False
upd_001761,act_009_06,proj_009,2024-04-17,32.0,4.78,False,False,10,Equipment breakdown caused 2-hour downtime.,False
upd_001762,act_009_06,proj_009,2024-04-18,39.7,7.68,True,False,15,Minor delays due to material delivery.,False
upd_001763,act_009_06,proj_009,2024-04-19,49.3,9.61,False,False,17,Material quality check done; passed.,False
upd_001764,act_009_06,proj_009,2024-04-20,55.5,6.22,True,False,4,Minor delays due to material delivery.,False
upd_001765,act_009_06,proj_009,2024-04-21,64.6,9.13,True,False,14,Productivity affected by heat; hydration breaks added.,False
upd_001766,act_009_06,proj_009,2024-04-22,67.6,3.01,True,False,12,Minor delays due to material delivery.,False
upd_001767,act_009_06,proj_009,2024-04-23,73.1,5.46,True,False,18,Material quality check done; passed.,False
upd_001768,act_009_06,proj_009,2024-04-24,77.6,4.51,True,False,18,Good progress β crew at full strength.,False
upd_001769,act_009_06,proj_009,2024-04-25,83.4,5.78,True,False,4,Safety toolbox talk held; no incidents.,False
upd_001770,act_009_06,proj_009,2024-04-26,88.4,4.97,True,False,16,Good progress β crew at full strength.,True
upd_001771,act_009_06,proj_009,2024-04-27,95.9,7.5,True,False,8,Material quality check done; passed.,True
upd_001772,act_009_06,proj_009,2024-04-28,98.0,2.05,True,False,21,Weather caused brief stoppage.,False
upd_001773,act_009_06,proj_009,2024-04-29,100.0,2.18,True,True,20,Rework required on small section.,False
upd_001774,act_009_07,proj_009,2024-04-16,1.7,1.71,True,False,13,Material quality check done; passed.,False
upd_001775,act_009_07,proj_009,2024-04-17,1.7,0.02,False,True,10,Equipment breakdown caused 2-hour downtime.,True
upd_001776,act_009_07,proj_009,2024-04-18,3.5,1.8,True,False,4,Overtime shift completed to recover schedule.,False
upd_001777,act_009_07,proj_009,2024-04-19,3.5,0.01,False,True,6,Weather caused brief stoppage.,True
upd_001778,act_009_07,proj_009,2024-04-20,4.6,1.08,False,False,9,Productivity affected by heat; hydration breaks added.,False
upd_001779,act_009_07,proj_009,2024-04-21,5.0,0.36,True,False,14,Waiting for subcontractor sign-off.,False
upd_001780,act_009_07,proj_009,2024-04-22,5.0,0.0,True,False,21,Overtime shift completed to recover schedule.,False
upd_001781,act_009_07,proj_009,2024-04-23,7.1,2.07,True,False,15,Waiting for subcontractor sign-off.,False
upd_001782,act_009_07,proj_009,2024-04-24,7.1,0.0,True,False,16,Weather caused brief stoppage.,False
upd_001783,act_009_07,proj_009,2024-04-25,7.1,0.0,False,False,15,Work progressing as planned.,False
upd_001784,act_009_07,proj_009,2024-04-26,7.3,0.22,True,False,19,Minor delays due to material delivery.,True
upd_001785,act_009_07,proj_009,2024-04-27,8.3,0.98,False,False,22,Good progress β crew at full strength.,False
upd_001786,act_009_07,proj_009,2024-04-28,8.3,0.0,True,False,16,Rework required on small section.,False
upd_001787,act_009_07,proj_009,2024-04-29,9.3,1.03,True,False,9,Rework required on small section.,False
upd_001788,act_009_07,proj_009,2024-04-30,10.3,1.04,False,False,19,Minor delays due to material delivery.,False
upd_001789,act_009_07,proj_009,2024-05-01,10.6,0.32,True,False,16,Client walkthrough conducted.,False
upd_001790,act_009_07,proj_009,2024-05-02,10.8,0.19,True,False,4,Weather caused brief stoppage.,False
upd_001791,act_009_07,proj_009,2024-05-03,10.8,0.0,True,False,11,Productivity affected by heat; hydration breaks added.,True
upd_001792,act_009_07,proj_009,2024-05-04,10.8,0.0,True,False,8,Waiting for subcontractor sign-off.,False
upd_001793,act_009_07,proj_009,2024-05-05,12.5,1.73,True,False,5,Weather caused brief stoppage.,False
upd_001794,act_009_07,proj_009,2024-05-06,13.6,1.09,False,False,14,Good progress β crew at full strength.,False
upd_001795,act_009_07,proj_009,2024-05-07,14.3,0.67,False,False,20,Night shift deployed to catch up.,False
upd_001796,act_009_07,proj_009,2024-05-08,15.4,1.08,True,False,4,Weather caused brief stoppage.,False
upd_001797,act_009_07,proj_009,2024-05-09,15.4,0.0,True,False,21,Work progressing as planned.,False
upd_001798,act_009_07,proj_009,2024-05-10,15.4,0.0,True,False,11,Safety toolbox talk held; no incidents.,False
upd_001799,act_009_07,proj_009,2024-05-11,15.4,0.0,True,False,4,Minor delays due to material delivery.,False
upd_001800,act_009_07,proj_009,2024-05-12,15.4,0.0,True,False,8,Weather caused brief stoppage.,False
upd_001801,act_009_07,proj_009,2024-05-13,16.8,1.36,True,False,10,Weather caused brief stoppage.,True
upd_001802,act_009_07,proj_009,2024-05-14,17.1,0.35,True,False,9,Productivity affected by heat; hydration breaks added.,False
upd_001803,act_009_07,proj_009,2024-05-15,17.9,0.77,True,False,13,Inspection checkpoint cleared.,False
upd_001804,act_009_07,proj_009,2024-05-16,17.9,0.0,True,False,19,Minor delays due to material delivery.,False
upd_001805,act_009_07,proj_009,2024-05-17,17.9,0.0,True,False,19,Material quality check done; passed.,False
upd_001806,act_009_07,proj_009,2024-05-18,18.7,0.83,True,False,8,All tasks on track per daily plan.,False
upd_001807,act_009_07,proj_009,2024-05-19,18.7,0.0,False,False,17,All tasks on track per daily plan.,False
upd_001808,act_009_07,proj_009,2024-05-20,18.7,0.0,True,False,21,Good progress β crew at full strength.,True
upd_001809,act_009_07,proj_009,2024-05-21,18.7,0.0,True,False,13,Material quality check done; passed.,False
upd_001810,act_009_07,proj_009,2024-05-22,18.7,0.0,True,False,14,Good progress β crew at full strength.,False
upd_001811,act_009_07,proj_009,2024-05-23,18.7,0.0,False,False,4,Work progressing as planned.,False
upd_001812,act_009_07,proj_009,2024-05-24,19.4,0.7,True,False,16,Equipment breakdown caused 2-hour downtime.,False
upd_001813,act_009_07,proj_009,2024-05-25,19.9,0.52,False,False,16,Material quality check done; passed.,False
upd_001814,act_009_07,proj_009,2024-05-26,20.5,0.59,True,False,5,Equipment breakdown caused 2-hour downtime.,False
upd_001815,act_009_07,proj_009,2024-05-27,20.5,0.0,True,False,17,Inspection checkpoint cleared.,True
upd_001816,act_009_07,proj_009,2024-05-28,20.5,0.0,True,False,19,Rework required on small section.,False
upd_001817,act_009_07,proj_009,2024-05-29,21.5,1.01,True,False,17,Productivity affected by heat; hydration breaks added.,False
upd_001818,act_009_07,proj_009,2024-05-30,21.8,0.35,False,False,15,Rework required on small section.,False
upd_001819,act_009_07,proj_009,2024-05-31,22.3,0.45,True,True,8,Inspection checkpoint cleared.,False
upd_001820,act_009_07,proj_009,2024-06-01,22.6,0.32,True,False,11,Safety toolbox talk held; no incidents.,False
upd_001821,act_009_07,proj_009,2024-06-02,23.0,0.36,True,False,7,Night shift deployed to catch up.,False
upd_001822,act_009_07,proj_009,2024-06-03,24.7,1.66,True,False,22,Equipment breakdown caused 2-hour downtime.,True
upd_001823,act_009_07,proj_009,2024-06-04,24.7,0.0,False,False,9,All tasks on track per daily plan.,True
upd_001824,act_009_07,proj_009,2024-06-05,26.1,1.45,True,False,21,Rework required on small section.,False
upd_001825,act_009_07,proj_009,2024-06-06,26.6,0.47,False,False,6,Minor delays due to material delivery.,False
upd_001826,act_009_07,proj_009,2024-06-07,26.7,0.08,True,False,8,Inspection checkpoint cleared.,False
upd_001827,act_009_07,proj_009,2024-06-08,27.9,1.22,True,False,13,Work progressing as planned.,False
upd_001828,act_009_07,proj_009,2024-06-09,28.9,0.97,True,False,6,Night shift deployed to catch up.,False
upd_001829,act_009_07,proj_009,2024-06-10,30.3,1.43,True,False,17,Good progress β crew at full strength.,False
upd_001830,act_009_07,proj_009,2024-06-11,30.4,0.08,True,False,19,Good progress β crew at full strength.,False
upd_001831,act_009_07,proj_009,2024-06-12,30.7,0.29,True,False,10,Good progress β crew at full strength.,False
upd_001832,act_009_07,proj_009,2024-06-13,30.7,0.0,False,False,10,Inspection checkpoint cleared.,False
upd_001833,act_009_07,proj_009,2024-06-14,31.2,0.54,True,False,7,All tasks on track per daily plan.,False
upd_001834,act_009_07,proj_009,2024-06-15,32.6,1.41,True,False,7,Inspection checkpoint cleared.,False
upd_001835,act_009_07,proj_009,2024-06-16,32.8,0.23,True,True,19,Rework required on small section.,True
upd_001836,act_009_07,proj_009,2024-06-17,32.9,0.12,True,True,4,Rework required on small section.,False
upd_001837,act_009_07,proj_009,2024-06-18,33.9,0.99,True,False,20,Night shift deployed to catch up.,False
upd_001838,act_009_07,proj_009,2024-06-19,33.9,0.0,False,False,12,Equipment breakdown caused 2-hour downtime.,True
upd_001839,act_009_07,proj_009,2024-06-20,33.9,0.0,True,False,14,Waiting for subcontractor sign-off.,False
upd_001840,act_009_07,proj_009,2024-06-21,34.0,0.13,True,False,11,Waiting for subcontractor sign-off.,False
upd_001841,act_009_07,proj_009,2024-06-22,35.6,1.57,True,False,15,All tasks on track per daily plan.,False
upd_001842,act_009_07,proj_009,2024-06-23,35.8,0.2,True,False,16,Productivity affected by heat; hydration breaks added.,False
upd_001843,act_009_07,proj_009,2024-06-24,36.0,0.22,True,False,7,All tasks on track per daily plan.,False
upd_001844,act_009_07,proj_009,2024-06-25,37.3,1.29,False,False,11,Waiting for subcontractor sign-off.,False
upd_001845,act_009_07,proj_009,2024-06-26,37.3,0.0,False,False,20,Overtime shift completed to recover schedule.,False
upd_001846,act_009_07,proj_009,2024-06-27,37.3,0.0,True,True,14,Work progressing as planned.,False
upd_001847,act_009_07,proj_009,2024-06-28,37.3,0.0,False,False,14,Rework required on small section.,False
upd_001848,act_009_07,proj_009,2024-06-29,37.8,0.5,True,False,6,Waiting for subcontractor sign-off.,False
upd_001849,act_009_07,proj_009,2024-06-30,38.4,0.57,False,False,7,Productivity affected by heat; hydration breaks added.,False
upd_001850,act_009_07,proj_009,2024-07-01,38.4,0.0,True,False,20,Equipment breakdown caused 2-hour downtime.,False
upd_001851,act_009_07,proj_009,2024-07-02,38.4,0.0,True,False,8,Material quality check done; passed.,False
upd_001852,act_009_07,proj_009,2024-07-03,39.6,1.21,True,False,21,All tasks on track per daily plan.,False
upd_001853,act_009_07,proj_009,2024-07-04,42.5,2.93,False,False,19,Rework required on small section.,False
upd_001854,act_009_07,proj_009,2024-07-05,42.5,0.0,True,False,6,Minor delays due to material delivery.,False
upd_001855,act_009_07,proj_009,2024-07-06,42.5,0.0,True,False,14,Equipment breakdown caused 2-hour downtime.,False
upd_001856,act_009_07,proj_009,2024-07-07,43.1,0.59,True,False,19,Equipment breakdown caused 2-hour downtime.,False
upd_001857,act_009_07,proj_009,2024-07-08,43.7,0.64,False,False,19,Minor delays due to material delivery.,False
upd_001858,act_009_07,proj_009,2024-07-09,43.7,0.0,True,False,22,Night shift deployed to catch up.,False
upd_001859,act_009_07,proj_009,2024-07-10,43.9,0.23,True,False,16,Rework required on small section.,False
upd_001860,act_009_07,proj_009,2024-07-11,44.1,0.17,False,False,11,Weather caused brief stoppage.,False
upd_001861,act_009_07,proj_009,2024-07-12,44.1,0.0,True,False,14,Productivity affected by heat; hydration breaks added.,False
upd_001862,act_009_07,proj_009,2024-07-13,46.1,2.04,False,False,22,Waiting for subcontractor sign-off.,False
upd_001863,act_009_07,proj_009,2024-07-14,46.6,0.54,True,False,4,Inspection checkpoint cleared.,True
upd_001864,act_009_07,proj_009,2024-07-15,46.6,0.0,False,False,17,Waiting for subcontractor sign-off.,True
upd_001865,act_009_07,proj_009,2024-07-16,47.2,0.58,False,False,8,Client walkthrough conducted.,False
upd_001866,act_009_07,proj_009,2024-07-17,47.3,0.05,True,False,4,Client walkthrough conducted.,False
upd_001867,act_009_07,proj_009,2024-07-18,47.9,0.59,False,False,13,All tasks on track per daily plan.,False
upd_001868,act_009_07,proj_009,2024-07-19,47.9,0.0,True,False,13,Good progress β crew at full strength.,False
upd_001869,act_009_08,proj_009,2024-04-29,0.0,0.0,False,False,5,Safety toolbox talk held; no incidents.,False
upd_001870,act_009_08,proj_009,2024-04-30,0.0,0.0,True,False,12,All tasks on track per daily plan.,False
upd_001871,act_009_08,proj_009,2024-05-01,0.0,0.0,False,False,19,Inspection checkpoint cleared.,False
upd_001872,act_009_08,proj_009,2024-05-02,0.4,0.44,False,False,14,Good progress β crew at full strength.,False
upd_001873,act_009_08,proj_009,2024-05-03,0.8,0.41,False,False,11,Productivity affected by heat; hydration breaks added.,False
upd_001874,act_009_08,proj_009,2024-05-04,2.0,1.15,False,False,19,Productivity affected by heat; hydration breaks added.,False
upd_001875,act_009_08,proj_009,2024-05-05,2.4,0.38,True,False,9,Work progressing as planned.,False
upd_001876,act_009_08,proj_009,2024-05-06,2.4,0.0,True,False,15,Night shift deployed to catch up.,False
upd_001877,act_009_08,proj_009,2024-05-07,3.6,1.16,False,False,13,Productivity affected by heat; hydration breaks added.,False
upd_001878,act_009_08,proj_009,2024-05-08,3.6,0.0,True,False,7,Good progress β crew at full strength.,False
upd_001879,act_009_08,proj_009,2024-05-09,5.1,1.54,False,False,5,All tasks on track per daily plan.,False
upd_001880,act_009_08,proj_009,2024-05-10,5.1,0.0,True,False,22,Good progress β crew at full strength.,False
upd_001881,act_009_08,proj_009,2024-05-11,5.6,0.51,False,False,10,Weather caused brief stoppage.,False
upd_001882,act_009_08,proj_009,2024-05-12,5.8,0.22,True,False,15,Productivity affected by heat; hydration breaks added.,False
upd_001883,act_009_08,proj_009,2024-05-13,5.9,0.12,False,False,8,Overtime shift completed to recover schedule.,False
upd_001884,act_009_08,proj_009,2024-05-14,5.9,0.0,False,False,5,Minor delays due to material delivery.,False
upd_001885,act_009_08,proj_009,2024-05-15,5.9,0.0,False,False,7,Client walkthrough conducted.,False
upd_001886,act_009_08,proj_009,2024-05-16,6.0,0.06,False,False,16,Weather caused brief stoppage.,False
upd_001887,act_009_08,proj_009,2024-05-17,6.0,0.0,True,False,9,Rework required on small section.,True
upd_001888,act_009_08,proj_009,2024-05-18,6.2,0.18,False,False,6,Night shift deployed to catch up.,False
upd_001889,act_009_08,proj_009,2024-05-19,6.2,0.0,True,False,18,Waiting for subcontractor sign-off.,False
upd_001890,act_009_08,proj_009,2024-05-20,6.4,0.18,True,False,20,Weather caused brief stoppage.,True
upd_001891,act_009_08,proj_009,2024-05-21,6.4,0.0,True,False,12,Productivity affected by heat; hydration breaks added.,True
upd_001892,act_009_08,proj_009,2024-05-22,7.0,0.61,True,False,19,Rework required on small section.,False
upd_001893,act_009_08,proj_009,2024-05-23,7.4,0.4,True,False,14,Minor delays due to material delivery.,False
upd_001894,act_009_08,proj_009,2024-05-24,7.4,0.0,True,False,16,All tasks on track per daily plan.,False
upd_001895,act_009_08,proj_009,2024-05-25,7.6,0.25,False,False,20,Material quality check done; passed.,False
upd_001896,act_009_08,proj_009,2024-05-26,7.6,0.0,True,False,7,Night shift deployed to catch up.,True
upd_001897,act_009_08,proj_009,2024-05-27,7.6,0.0,False,False,9,All tasks on track per daily plan.,False
upd_001898,act_009_08,proj_009,2024-05-28,8.7,1.09,True,False,14,Minor delays due to material delivery.,False
upd_001899,act_009_08,proj_009,2024-05-29,8.8,0.13,True,False,6,Client walkthrough conducted.,True
upd_001900,act_009_08,proj_009,2024-05-30,8.8,0.0,True,False,7,Client walkthrough conducted.,False
upd_001901,act_009_08,proj_009,2024-05-31,8.8,0.0,True,False,4,Weather caused brief stoppage.,False
upd_001902,act_009_08,proj_009,2024-06-01,8.8,0.0,True,False,13,Rework required on small section.,False
upd_001903,act_009_08,proj_009,2024-06-02,8.8,0.0,True,False,14,Client walkthrough conducted.,False
upd_001904,act_009_08,proj_009,2024-06-03,9.2,0.44,True,False,20,Weather caused brief stoppage.,False
upd_001905,act_009_08,proj_009,2024-06-04,9.3,0.12,True,False,5,Weather caused brief stoppage.,False
upd_001906,act_009_08,proj_009,2024-06-05,9.3,0.0,True,False,8,Safety toolbox talk held; no incidents.,False
upd_001907,act_009_08,proj_009,2024-06-06,9.7,0.35,True,False,17,Minor delays due to material delivery.,False
upd_001908,act_009_08,proj_009,2024-06-07,10.5,0.84,True,False,9,Overtime shift completed to recover schedule.,False
upd_001909,act_009_08,proj_009,2024-06-08,10.5,0.0,True,False,8,Client walkthrough conducted.,False
upd_001910,act_009_08,proj_009,2024-06-09,10.5,0.0,True,False,10,Productivity affected by heat; hydration breaks added.,False
upd_001911,act_009_08,proj_009,2024-06-10,10.8,0.35,False,False,9,Overtime shift completed to recover schedule.,False
upd_001912,act_009_08,proj_009,2024-06-11,10.8,0.0,False,False,16,Work progressing as planned.,False
upd_001913,act_009_08,proj_009,2024-06-12,10.8,0.0,True,False,21,Minor delays due to material delivery.,False
upd_001914,act_009_08,proj_009,2024-06-13,10.8,0.0,True,False,6,Waiting for subcontractor sign-off.,False
upd_001915,act_009_08,proj_009,2024-06-14,11.1,0.25,True,False,11,Inspection checkpoint cleared.,False
upd_001916,act_009_08,proj_009,2024-06-15,12.6,1.55,False,False,16,Minor delays due to material delivery.,True
upd_001917,act_009_08,proj_009,2024-06-16,13.0,0.39,True,False,13,Safety toolbox talk held; no incidents.,False
upd_001918,act_009_08,proj_009,2024-06-17,13.5,0.49,True,False,22,All tasks on track per daily plan.,False
upd_001919,act_009_08,proj_009,2024-06-18,13.5,0.01,True,False,5,Good progress β crew at full strength.,False
upd_001920,act_009_08,proj_009,2024-06-19,13.5,0.0,True,False,21,Client walkthrough conducted.,False
upd_001921,act_009_08,proj_009,2024-06-20,13.5,0.0,True,False,8,Inspection checkpoint cleared.,False
upd_001922,act_009_08,proj_009,2024-06-21,13.5,0.0,True,False,8,Good progress β crew at full strength.,True
upd_001923,act_009_08,proj_009,2024-06-22,14.0,0.48,True,False,15,Productivity affected by heat; hydration breaks added.,False
upd_001924,act_009_08,proj_009,2024-06-23,14.0,0.0,True,False,18,Good progress β crew at full strength.,False
upd_001925,act_009_08,proj_009,2024-06-24,14.7,0.68,True,False,13,Inspection checkpoint cleared.,False
upd_001926,act_009_08,proj_009,2024-06-25,14.7,0.03,True,False,11,Inspection checkpoint cleared.,False
upd_001927,act_009_08,proj_009,2024-06-26,15.1,0.43,True,False,14,All tasks on track per daily plan.,False
upd_001928,act_009_08,proj_009,2024-06-27,15.6,0.54,False,False,6,Good progress β crew at full strength.,True
upd_001929,act_009_08,proj_009,2024-06-28,15.6,0.0,True,False,19,Night shift deployed to catch up.,False
upd_001930,act_009_08,proj_009,2024-06-29,16.0,0.37,True,False,20,Equipment breakdown caused 2-hour downtime.,False
upd_001931,act_009_08,proj_009,2024-06-30,16.6,0.58,True,False,21,Productivity affected by heat; hydration breaks added.,False
upd_001932,act_009_08,proj_009,2024-07-01,16.9,0.29,True,True,4,Productivity affected by heat; hydration breaks added.,True
upd_001933,act_009_08,proj_009,2024-07-02,16.9,0.0,True,False,20,Rework required on small section.,False
upd_001934,act_009_08,proj_009,2024-07-03,16.9,0.0,False,False,20,Equipment breakdown caused 2-hour downtime.,False
upd_001935,act_009_08,proj_009,2024-07-04,18.3,1.41,False,False,20,Waiting for subcontractor sign-off.,False
upd_001936,act_009_08,proj_009,2024-07-05,18.3,0.0,True,False,15,Minor delays due to material delivery.,False
upd_001937,act_009_08,proj_009,2024-07-06,18.8,0.54,False,False,7,Inspection checkpoint cleared.,False
upd_001938,act_009_08,proj_009,2024-07-07,19.3,0.54,True,False,22,Overtime shift completed to recover schedule.,False
upd_001939,act_009_08,proj_009,2024-07-08,19.4,0.12,False,False,20,All tasks on track per daily plan.,False
upd_001940,act_009_08,proj_009,2024-07-09,20.1,0.67,False,False,19,Work progressing as planned.,False
upd_001941,act_009_08,proj_009,2024-07-10,20.4,0.3,True,False,15,Minor delays due to material delivery.,False
upd_001942,act_009_08,proj_009,2024-07-11,20.6,0.25,True,False,15,Work progressing as planned.,True
upd_001943,act_009_08,proj_009,2024-07-12,20.7,0.06,True,False,20,Equipment breakdown caused 2-hour downtime.,True
upd_001944,act_009_08,proj_009,2024-07-13,20.7,0.0,True,False,8,Night shift deployed to catch up.,False
upd_001945,act_009_08,proj_009,2024-07-14,20.7,0.0,True,False,13,Waiting for subcontractor sign-off.,False
upd_001946,act_009_08,proj_009,2024-07-15,20.7,0.0,False,False,7,Material quality check done; passed.,False
upd_001947,act_009_08,proj_009,2024-07-16,21.0,0.33,True,False,17,Work progressing as planned.,False
upd_001948,act_009_08,proj_009,2024-07-17,21.0,0.0,True,False,10,Inspection checkpoint cleared.,False
upd_001949,act_009_08,proj_009,2024-07-18,21.2,0.21,False,False,5,Good progress β crew at full strength.,True
upd_001950,act_009_08,proj_009,2024-07-19,21.8,0.58,False,False,12,Minor delays due to material delivery.,False
|