main.dfm 66.8 KB
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
object FormularioGeral: TFormularioGeral
  Left = 244
  Top = 55
  HorzScrollBar.Visible = False
  VertScrollBar.Visible = False
  BiDiMode = bdLeftToRight
  BorderIcons = []
  BorderStyle = bsSingle
  Caption = 'CACIC - Informa'#231#245'es Gerais'
  ClientHeight = 598
  ClientWidth = 641
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  Icon.Data = {
    0000010001003030000000000000A80E00001600000028000000300000006000
    00000100080000000000800A0000000000000000000000000000000000000000
    0000FFFFFF001F59FD0070E1360077C7CB0027636C000017B900376F0B000012
    5B00A3FFFF0030C8F9004B71BB006494F800499C4A006DC183001B382D001954
    A6003B938700002BF30036A2D9004DBCB100092D87008EF2D20025375E007ED7
    F70000092E001C50D3004E9E1F0080E4910063B55900112608005F9DA0003955
    8E003055450061ABD000244D04003778F4005781D90063B5FE005FBC32003B85
    5B000534CA0074C7A9005D8F7E004282260017223B0073D463002D58260045B3
    F9003875D50081DFB500416F73002F477700083CFF00338FC3002667870092F3
    F3002EB8E7000021D500001DA000132127002757BC00021C780083DADC00447E
    45004262A400080E15005899B5003D9B9A00020245006EBEE00069ACB7005398
    ED000C3CA2002E6C57007ADA79002842470053A830001F3D15004F8486000F48
    BC001D2C49004C8BC10047AEA0006DA2FF006ECE4F00226197004390D400012E
    DD0016388600264C320075CD910030515900113562000B31B60058A5F900549C
    D80069CD300030797F0002114500325B7F0094FADE00274F190056AE24005078
    C9006DA99C005E8DE900326B1C0047963900559095007ACDE1007BD6A2003F8E
    5700357D6C003C6C96002D6BFB0089E9C3004082ED0071BDC0003B66660089E9
    FF007FD4BD000032FD0087E0EA00326EE7000024B00010244C001E333A002E5C
    14000026C10065BD490072C29A001941AD0016499800001B8E0084DCCB004893
    27003C8539002A3F6900205C8E0076CBF1000C1B0B00172E16004F8FDF0098FD
    FC00478054001854B8003D791D0032596F00164DFD002C6E6E0064A7AB004181
    D6000C151F000333EE004188CA0042746500294D28002FADDC001C3B05003466
    2900354F85003EAEEE006699F40035878500365C630030C0F00072D741008FEE
    EB0053B13B004669B00034628A00519C3F003C96960002061000131D3000000B
    3A0060B150000129CE0087E3CF0073C1D4004D94F80063C32C004E9F2A003D5C
    99002C6D7B0085E6AA0076D86F001E4B3E005693AB002C64990074D850001D3D
    6300408E3F00679AFE00345951003A8964000B3AB700172B21005EA7D8000407
    0600316310005AB32B005A88E200B1FFFF00539DF700233C3A0005237D00144C
    AF00537ED00053898D0018320600002FE7007ED2D80071D45A00296355001C59
    A4000007240088E3E100102F810068ACA60042934B005F91F000265630004B7F
    7E000E2A4400418D35000E1724006BD335001246F6002662FE0076C4C1006FC6
    8D001247A1002C57860032611C006CBAD50036B1E700050F33005690E6004894
    DA0075C5DF0073C89F0087E9B8000021B5002B494C003F9ADA009DFFFE005A97
    9800112111007DCFC6006ABDFE000630D5004260AD004F9D34003AA5E0000000
    0000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000003E08000000000000000000000000
    0000000000000000000000000000000000000000000000008608000000000000
    00087A5800000000000000000000000000000000000000000000000000000000
    0000000000000000D47A630000000000B0D47A7A7D0000000000000000000000
    0000000000000000000000000000000000000000000000B27A7A810000000000
    867A7A7AB2000000000000000000000000000000000000000000000000000000
    00000000000000587A7A7A08000000B07A7A7A7AD40000000000000000000000
    00000000000000000000000000000000000000000000867A7A7A7AD400000063
    587A7A7A12860000000000000000000000000000000000000000000000000000
    000000000000F47A7A7A7A581900005CEA817AFCC55900000000000000000000
    00000000000000000000000000000000000000000000595ED47AF4AB7F00003F
    A8943BC069DC0000000000000000000000000000000000000000000000000000
    000000000000DC2BDB8633F76D003CDAF7387797CC3F00000000000000000000
    000000173434348A00000000000000000000000000A538CC4F3390F79700003F
    F790F790F73F4C0000000000000017A1AA68CBDEC25454C26A250BB834000000
    0000000000E038F7A8F790F71F0000F80990F790F73F000000000000200B0C54
    5454C2C2C2C2C2C2C2545454C2D1B83400000000003338F7F790F709A500000F
    1FF7F790097600000000B8CB5454C2C2C2C2C25454C25454C2C2C2C2C25454C2
    0B170000003CD50990F790F8C600001E2CD29009E721C800A1D15454C2C2C2C2
    C2C2546820202041CB54C2C2C2C2C2C254DEAA000000C33F09A8E093F900008D
    B72C334F402399AAC254C2C2C2C2C2C2C2C220B8AA0BAAAA204154C2C2C2C2C2
    C2C2542500C8C991D29C882C00000000660388881B5AFD4857DEC2C2C2C2C2C2
    54A141CBC2C254C22520B854C2C2C2C2C2C2EFF08F2D80B788B7034E00000000
    F94D03E41B510CF639FF6AC2C2C2C2C2CB8A6AC2C2C2C2C2C2CB3468C2C2C2C2
    C2EFED398F257F67E4032C0000000000004E27B69DBEA29BF6A6FFEFC2C2C2C2
    DECBC2C2C2C2C2C2C2C2CBCBC2C2C20C8FEDA6575730C0EBE4B78E0000000000
    00429F9351489EA657F6A6ED8FC2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C20C8F
    A6A69B570A9EEF7F93D3000000000000992541F96AC28F9EA65757A6398F0CC2
    C2C2C2C2C2C2C2C2C2C2C2C2C2DEF00A399BF60A9E8F540B8D0BA10000000000
    68C20CCBC2C2C28F9E0AF69B36EFC2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2EF36
    9BF60A138FC2C2C2CBC2A38A00000041C2C2C2C2C2C2C2C28F9EA6F0DEC2C2C2
    C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2CBF60A13EFC2C2C2C2C2C2C2A35100AFC2
    C2C2C2C2C2C2C2C2C2EF9BDEC2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2
    EF9BDEC2C2C2C2C2C2C2C2C2CB002DC2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2
    C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C22DAFC2
    C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2
    C2C2C2C2C2C2C2C2C2C2C2C2C2AF0041C2C2C2C2C2C2C2C2C2C20CCB25D1680B
    AA4125C2C2C2C2C2C2C22541AA0B68D125CB0CC2C2C2C2C2C2C2C2C2AA000000
    4154C2C2C2C2C2C2C2C2682020B841AA0B0B0CC2C2C2C2C2C2C20C0B0BAA41B8
    2020D1C2C2C2C2C2C2C2DE1700000000426A0CC2C2C2C2C2C2C2C25454C2C2C2
    C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C25454C2C2C2C2C2C2C2A3510000000000
    00AFB825CB6A0CC2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2
    C2C2C2C20CDECBCBAA17C80000000000000000009951A1AA682525CBCBCB6A6A
    DEDE0C0CC2C2C2C20C0CDE6A6ACBCBCB2525D1AA2017AFAE0000000000000000
    000000000000000000C842E3AF2D51178A34A120B8CBCBB820348A17512DAFE3
    42AE000000000000000000000000000000000000000000000000000000000000
    0000000000343400000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000002D17000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000
    0000000000C8AF00000000000000000000000000000000000000000000000000
    00AE19D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9EED9D9D9D9D9D9D9D9D9
    D9D9D9D9D9D9D9D9D919AE00000000000063F4F4F4F4F4F4F4F4F4F4F4F4F4F4
    F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F43BB00000000000
    00003E15CF3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E
    3E3E3E3E3E3E3ECF1508000000000000000000BC531414141414141414141414
    1414141414141414141414141414141414141414141414110F00000000000000
    00000000A444AD44ADAD44ADADADAD44AD44ADAD44ADAD44AD44ADAD44AD44AD
    AD44AD4444AD449600000000000000000000000000002F4C7E63D321CE080F1E
    77E308668D770899664C7F081E9DF563E1D3217F455A00000000000000000000
    00000000D4D7821F3D7D6B0E1FFC05C9B3643A6CA0DA5E5DCA1F723ADFB14784
    E90783BD067100B30000000000000000000000007A37A787CD3A70BB870210B7
    16227A71FEF731C5612A8C3AB9A7FA7529E21CF1E55688160000000000000000
    000000007AD86174263AC4D61673C54D32EC35374D90F058B68378B256A7795F
    81DD4BB402D088740400000000000000000000B27A92B6F3FB3A71556524C5A9
    6FB4358BCAA8609ACAE87829D8E432268170BB040250B7320400000000000000
    000000007A56E4745F3A702E87E6D0B7742235B94D90982961F2183A37A779B5
    29C11C6E951088160000000000000000000000007A96BFFA75B2891CD5953788
    65527A0DACF71A85E4E7C7124AD67B7C5088BA469A62B7650000000000000000
    0000000029001D000049005B43B22800B300004D0087B2004DD500B2001DB400
    8B008300002800FA000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000000000FFFF
    FFFFFFFF0000F3FFFFFFFFCF0000E3FFFFFFFFC70000C1FFFFFFFF870000C1FF
    FFFFFF83000081FFFFFFFF03000080FFFFFFFF01000080FFFFFFFF01000080FF
    FFFFFF01000000FFF83FFE010000807F0001FE01000080FC00003E01000080F0
    00000E01000080400000070100008000000002030000C000000000030000C000
    000000070000E000000000070000E0000000000F0000C000000000070000C000
    0000000300008000000000010000000000000001000000000000000000000000
    0000000000008000000000010000C00000000003000080000000000500008000
    0000000300008000000000030000C000000000030000C000000000030000C000
    000000070000E000000000070000E000000000070000E000000000070000F000
    0000000F0000F8000000001F0000FC000000003F0000FF00000000FF0000FC00
    000000BF0000FC000000003F0000FC000000001F0000F8000000001F0000FC00
    0000003F0000FC000000003F0000FD685A4A56BF0000FFFFFFFFFFFF0000}
  OldCreateOrder = False
  ParentBiDiMode = False
  Position = poDesigned
  OnCloseQuery = FormCloseQuery
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  PixelsPerInch = 96
  TextHeight = 13
  object Pn_InfosGerais: TPanel
    Left = 2
    Top = 0
    Width = 645
    Height = 566
    BevelOuter = bvNone
    ParentBackground = False
    TabOrder = 0
    object Pn_SisMoni: TPanel
      Left = 2
      Top = 200
      Width = 640
      Height = 100
      Caption = 'Pn_SisMoni'
      TabOrder = 0
      DesignSize = (
        640
        100)
      object Lb_SisMoni: TLabel
        Left = 5
        Top = 4
        Width = 273
        Height = 13
        Alignment = taCenter
        Caption = 'Sistemas Monitorados Instalados Nesta Esta'#231#227'o'
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clHotLight
        Font.Height = -12
        Font.Name = 'MS Sans Serif'
        Font.Style = [fsBold, fsUnderline]
        ParentFont = False
      end
      object listSistemasMonitorados: TListView
        Left = 5
        Top = 19
        Width = 632
        Height = 78
        Anchors = [akLeft, akTop, akRight, akBottom]
        BiDiMode = bdLeftToRight
        Color = clSilver
        Columns = <
          item
            Caption = 'Nome do Sistema Monitorado'
            Width = 295
          end
          item
            Caption = 'Licen'#231'a'
            Width = 200
          end
          item
            Caption = 'Vers'#227'o/Configura'#231#227'o'
            Width = 130
          end>
        DragMode = dmAutomatic
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clWindowText
        Font.Height = -12
        Font.Name = 'Arial Narrow'
        Font.Style = []
        FlatScrollBars = True
        GridLines = True
        HotTrackStyles = [htUnderlineHot]
        ReadOnly = True
        ParentBiDiMode = False
        ParentFont = False
        TabOrder = 0
        TabStop = False
        ViewStyle = vsReport
      end
    end
    object Pn_TCPIP: TPanel
      Left = 2
      Top = 49
      Width = 640
      Height = 149
      Caption = 'Pn_TCPIP'
      ParentBackground = False
      TabOrder = 1
      object Lb_TCPIP: TLabel
        Left = 5
        Top = 4
        Width = 140
        Height = 15
        Alignment = taCenter
        Caption = 'Configura'#231#245'es de TCP/IP'
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clHotLight
        Font.Height = -12
        Font.Name = 'Arial'
        Font.Style = [fsBold, fsUnderline]
        ParentFont = False
      end
      object GB_InfosTCPIP: TGroupBox
        Left = 4
        Top = 19
        Width = 631
        Height = 126
        Color = clSilver
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clSilver
        Font.Height = -12
        Font.Name = 'Arial'
        Font.Style = []
        ParentColor = False
        ParentFont = False
        TabOrder = 0
        DesignSize = (
          631
          126)
        object ST_VL_DominioWindows: TStaticText
          Left = 436
          Top = 57
          Width = 18
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '13'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 31
        end
        object ST_LB_DominioWindows: TStaticText
          Left = 265
          Top = 57
          Width = 177
          Height = 19
          Caption = 'Servidor de Dom'#237'nio Windows:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 30
        end
        object ST_VL_MacAddress: TStaticText
          Left = 436
          Top = 23
          Width = 18
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '12'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 29
        end
        object ST_LB_MacAddress: TStaticText
          Left = 350
          Top = 23
          Width = 90
          Height = 19
          Caption = 'Endere'#231'o MAC:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 28
        end
        object ST_LB_NomeHost: TStaticText
          Left = 60
          Top = 8
          Width = 92
          Height = 19
          Caption = 'Nome do HOST:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 0
        end
        object ST_VL_NomeHost: TStaticText
          Left = 150
          Top = 8
          Width = 11
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '1'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 1
        end
        object ST_LB_IpEstacao: TStaticText
          Left = 15
          Top = 23
          Width = 141
          Height = 19
          Caption = 'Endere'#231'o IP da Esta'#231#227'o:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 2
        end
        object ST_LB_IpRede: TStaticText
          Left = 29
          Top = 40
          Width = 124
          Height = 19
          Caption = 'Endere'#231'o IP da Rede:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 3
        end
        object ST_LB_DominioDNS: TStaticText
          Left = 5
          Top = 57
          Width = 148
          Height = 19
          Caption = 'Servidor de Dom'#237'nio DNS:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 4
        end
        object ST_LB_DnsPrimario: TStaticText
          Left = 20
          Top = 73
          Width = 134
          Height = 19
          Caption = 'Servidor DNS Prim'#225'rio:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 5
        end
        object ST_LB_DnsSecundario: TStaticText
          Left = 5
          Top = 89
          Width = 150
          Height = 19
          Caption = 'Servidor DNS Secund'#225'rio:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 6
        end
        object ST_LB_Gateway: TStaticText
          Left = 53
          Top = 107
          Width = 100
          Height = 19
          Caption = 'Gateway Padr'#227'o:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 7
        end
        object ST_LB_Mascara: TStaticText
          Left = 313
          Top = 41
          Width = 128
          Height = 19
          Caption = 'M'#225'scara de SubRede:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 8
        end
        object ST_LB_ServidorDHCP: TStaticText
          Left = 350
          Top = 106
          Width = 90
          Height = 19
          Caption = 'Servidor DHCP:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 9
        end
        object ST_LB_WinsPrimario: TStaticText
          Left = 302
          Top = 73
          Width = 139
          Height = 19
          Caption = 'Servidor Wins Prim'#225'rio:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 10
        end
        object ST_LB_WinsSecundario: TStaticText
          Left = 285
          Top = 89
          Width = 155
          Height = 19
          Caption = 'Servidor Wins Secund'#225'rio:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 11
        end
        object ST_VL_IpEstacao: TStaticText
          Left = 150
          Top = 23
          Width = 11
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '2'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 12
        end
        object ST_VL_DNSPrimario: TStaticText
          Left = 150
          Top = 73
          Width = 11
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '5'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 13
        end
        object ST_VL_DNSSecundario: TStaticText
          Left = 150
          Top = 89
          Width = 11
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '6'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 14
        end
        object ST_VL_Gateway: TStaticText
          Left = 150
          Top = 107
          Width = 11
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '7'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 15
        end
        object ST_VL_Mascara: TStaticText
          Left = 436
          Top = 40
          Width = 11
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '8'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 16
        end
        object ST_VL_ServidorDHCP: TStaticText
          Left = 436
          Top = 106
          Width = 11
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '9'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 17
        end
        object ST_VL_WinsPrimario: TStaticText
          Left = 436
          Top = 74
          Width = 18
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '10'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 18
        end
        object ST_VL_WinsSecundario: TStaticText
          Left = 436
          Top = 89
          Width = 18
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '11'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 19
        end
        object ST_VL_DominioDNS: TStaticText
          Left = 150
          Top = 57
          Width = 11
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '4'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 20
        end
        object ST_VL_IpRede: TStaticText
          Left = 150
          Top = 40
          Width = 11
          Height = 19
          Alignment = taRightJustify
          Anchors = [akRight]
          Caption = '3'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 21
        end
        object Pn_Linha1_TCPIP: TPanel
          Tag = 36
          Left = 3
          Top = 22
          Width = 627
          Height = 2
          TabOrder = 22
        end
        object Pn_Linha2_TCPIP: TPanel
          Tag = 36
          Left = 3
          Top = 39
          Width = 627
          Height = 2
          TabOrder = 23
        end
        object Pn_Linha3_TCPIP: TPanel
          Tag = 36
          Left = 3
          Top = 56
          Width = 627
          Height = 2
          TabOrder = 24
        end
        object Pn_Linha4_TCPIP: TPanel
          Tag = 36
          Left = 3
          Top = 71
          Width = 627
          Height = 2
          TabOrder = 25
        end
        object Pn_Linha6_TCPIP: TPanel
          Tag = 36
          Left = 3
          Top = 104
          Width = 627
          Height = 2
          TabOrder = 26
        end
        object Pn_Linha5_TCPIP: TPanel
          Tag = 36
          Left = 3
          Top = 87
          Width = 627
          Height = 2
          TabOrder = 27
        end
      end
    end
    object pnColetasRealizadasNestaData: TPanel
      Left = 2
      Top = 302
      Width = 640
      Height = 129
      Caption = 'Pn_SisMoni'
      TabOrder = 2
      DesignSize = (
        640
        129)
      object lbColetasRealizadasNestaData: TLabel
        Left = 5
        Top = 4
        Width = 177
        Height = 13
        Alignment = taCenter
        Caption = 'Coletas Realizadas Nesta Data'
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clHotLight
        Font.Height = -12
        Font.Name = 'MS Sans Serif'
        Font.Style = [fsBold, fsUnderline]
        ParentFont = False
      end
      object teDataColeta: TLabel
        Left = 187
        Top = 4
        Width = 3
        Height = 15
        Alignment = taCenter
        Caption = '.'
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clBlack
        Font.Height = -12
        Font.Name = 'Arial'
        Font.Style = []
        ParentFont = False
      end
      object listaColetas: TListView
        Left = 2
        Top = 23
        Width = 631
        Height = 105
        Anchors = [akLeft, akTop, akRight, akBottom]
        BiDiMode = bdLeftToRight
        Color = clSilver
        Columns = <
          item
            Caption = 'M'#243'dulo de Coleta'
            Width = 250
          end
          item
            Caption = 'Hora In'#237'cio'
            Width = 60
          end
          item
            Caption = 'Hora Fim'
            Width = 60
          end
          item
            Caption = 'Status Final'
            Width = 240
          end>
        DragMode = dmAutomatic
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clWindowText
        Font.Height = -12
        Font.Name = 'Arial Narrow'
        Font.Style = []
        FlatScrollBars = True
        GridLines = True
        HotTrackStyles = [htUnderlineHot]
        ReadOnly = True
        ParentBiDiMode = False
        ParentFont = False
        TabOrder = 0
        TabStop = False
        ViewStyle = vsReport
      end
    end
    object pnInformacoesPatrimoniais: TPanel
      Left = 2
      Top = 433
      Width = 640
      Height = 128
      Caption = 'Pn_TCPIP'
      TabOrder = 3
      object lbInformacoesPatrimoniais: TLabel
        Left = 5
        Top = 4
        Width = 147
        Height = 15
        Alignment = taCenter
        Caption = 'Informa'#231#245'es Patrimoniais'
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clHotLight
        Font.Height = -12
        Font.Name = 'Arial'
        Font.Style = [fsBold, fsUnderline]
        ParentFont = False
      end
      object lbSemInformacoesPatrimoniais: TLabel
        Left = 157
        Top = 4
        Width = 265
        Height = 15
        Alignment = taCenter
        Caption = '(Informa'#231#245'es Patrimoniais ainda n'#227'o coletadas)'
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clRed
        Font.Height = -12
        Font.Name = 'Arial'
        Font.Style = []
        ParentFont = False
        Visible = False
      end
      object gpInfosPatrimoniais: TGroupBox
        Left = 4
        Top = 16
        Width = 631
        Height = 109
        Color = clSilver
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clSilver
        Font.Height = -12
        Font.Name = 'Arial'
        Font.Style = []
        ParentColor = False
        ParentFont = False
        TabOrder = 0
        DesignSize = (
          631
          109)
        object st_vl_etiqueta9: TStaticText
          Left = 511
          Top = 91
          Width = 18
          Height = 19
          Anchors = [akRight]
          Caption = '10'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 24
        end
        object st_lb_Etiqueta9: TStaticText
          Left = 355
          Top = 90
          Width = 150
          Height = 13
          Alignment = taRightJustify
          AutoSize = False
          Caption = 'S'#233'rie da Impressora:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 18
        end
        object st_vl_Etiqueta3: TStaticText
          Left = 146
          Top = 60
          Width = 11
          Height = 19
          Anchors = [akRight]
          Caption = '4'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 17
        end
        object st_lb_Etiqueta3: TStaticText
          Left = 3
          Top = 57
          Width = 140
          Height = 18
          Alignment = taRightJustify
          AutoSize = False
          Caption = 'Se'#231#227'o:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 16
        end
        object st_vl_etiqueta4: TStaticText
          Left = 511
          Top = 8
          Width = 11
          Height = 19
          Anchors = [akRight]
          Caption = '5'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 19
        end
        object st_vl_etiqueta5: TStaticText
          Left = 511
          Top = 26
          Width = 11
          Height = 19
          Anchors = [akRight]
          Caption = '6'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 20
        end
        object st_vl_etiqueta6: TStaticText
          Left = 511
          Top = 43
          Width = 11
          Height = 19
          Anchors = [akRight]
          Caption = '7'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 21
        end
        object st_vl_etiqueta7: TStaticText
          Left = 511
          Top = 59
          Width = 11
          Height = 19
          Anchors = [akRight]
          Caption = '8'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 22
        end
        object st_vl_etiqueta8: TStaticText
          Left = 511
          Top = 74
          Width = 11
          Height = 19
          Anchors = [akRight]
          Caption = '9'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 23
        end
        object st_lb_Etiqueta6: TStaticText
          Left = 355
          Top = 42
          Width = 150
          Height = 18
          Alignment = taRightJustify
          AutoSize = False
          Caption = 'PIB do Monitor:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 5
        end
        object st_lb_Etiqueta5: TStaticText
          Left = 355
          Top = 25
          Width = 150
          Height = 18
          Alignment = taRightJustify
          AutoSize = False
          Caption = 'S'#233'rie da CPU:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 14
        end
        object st_lb_Etiqueta4: TStaticText
          Left = 355
          Top = 9
          Width = 150
          Height = 18
          Alignment = taRightJustify
          AutoSize = False
          Caption = 'PIB da CPU:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 15
        end
        object st_lb_Etiqueta1: TStaticText
          Left = 3
          Top = 8
          Width = 140
          Height = 18
          Alignment = taRightJustify
          AutoSize = False
          Caption = 'Entidade:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 0
        end
        object st_vl_Etiqueta1: TStaticText
          Left = 146
          Top = 8
          Width = 11
          Height = 19
          Anchors = [akRight]
          Caption = '1'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 1
        end
        object st_lb_Etiqueta1a: TStaticText
          Left = 3
          Top = 24
          Width = 140
          Height = 18
          Alignment = taRightJustify
          AutoSize = False
          Caption = 'Linha de Neg'#243'cio:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 2
        end
        object st_lb_Etiqueta2: TStaticText
          Left = 3
          Top = 41
          Width = 140
          Height = 18
          Alignment = taRightJustify
          AutoSize = False
          Caption = #211'rg'#227'o:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 3
        end
        object st_lb_Etiqueta7: TStaticText
          Left = 355
          Top = 58
          Width = 150
          Height = 18
          Alignment = taRightJustify
          AutoSize = False
          Caption = 'S'#233'rie do Monitor:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 4
        end
        object st_lb_Etiqueta8: TStaticText
          Left = 355
          Top = 73
          Width = 150
          Height = 18
          Alignment = taRightJustify
          AutoSize = False
          Caption = 'PIB da Impressora:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 6
        end
        object st_vl_Etiqueta1a: TStaticText
          Left = 146
          Top = 25
          Width = 11
          Height = 19
          Anchors = [akRight]
          Caption = '2'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 7
        end
        object st_vl_Etiqueta2: TStaticText
          Left = 146
          Top = 43
          Width = 11
          Height = 19
          Anchors = [akRight]
          Caption = '3'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 8
        end
        object Panel6: TPanel
          Tag = 36
          Left = 3
          Top = 22
          Width = 627
          Height = 2
          TabOrder = 9
        end
        object Panel7: TPanel
          Tag = 36
          Left = 3
          Top = 39
          Width = 627
          Height = 2
          TabOrder = 10
        end
        object Panel8: TPanel
          Tag = 36
          Left = 3
          Top = 56
          Width = 627
          Height = 2
          TabOrder = 11
        end
        object Panel9: TPanel
          Tag = 36
          Left = 3
          Top = 72
          Width = 627
          Height = 2
          TabOrder = 12
        end
        object Panel11: TPanel
          Tag = 36
          Left = 3
          Top = 87
          Width = 627
          Height = 2
          TabOrder = 13
        end
      end
    end
    object pnServidores: TPanel
      Left = 2
      Top = 3
      Width = 640
      Height = 44
      TabOrder = 4
      object lbServidores: TLabel
        Left = 5
        Top = 1
        Width = 147
        Height = 13
        AutoSize = False
        Caption = 'Servidores'
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clHotLight
        Font.Height = -12
        Font.Name = 'MS Sans Serif'
        Font.Style = [fsBold, fsUnderline]
        ParentFont = False
      end
      object GroupBox1: TGroupBox
        Left = 5
        Top = 15
        Width = 631
        Height = 26
        Color = clSilver
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clSilver
        Font.Height = -12
        Font.Name = 'Arial'
        Font.Style = []
        ParentColor = False
        ParentFont = False
        TabOrder = 0
        DesignSize = (
          631
          26)
        object staticNmServidorUpdates: TStaticText
          Left = 289
          Top = 8
          Width = 140
          Height = 14
          AutoSize = False
          Caption = 'Atualiza'#231#227'o de Vers'#245'es:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 3
        end
        object staticVlServidorUpdates: TStaticText
          Left = 427
          Top = 8
          Width = 200
          Height = 12
          Anchors = [akRight]
          AutoSize = False
          Caption = '2'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 4
        end
        object staticNmServidorAplicacao: TStaticText
          Left = 3
          Top = 8
          Width = 86
          Height = 14
          AutoSize = False
          Caption = 'Aplica'#231#227'o WEB:'
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 0
        end
        object staticVlServidorAplicacao: TStaticText
          Left = 88
          Top = 8
          Width = 200
          Height = 16
          Anchors = [akRight]
          AutoSize = False
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -12
          Font.Name = 'Arial'
          Font.Style = []
          ParentFont = False
          TabOrder = 1
        end
        object Panel4: TPanel
          Tag = 36
          Left = 3
          Top = 23
          Width = 627
          Height = 2
          TabOrder = 2
        end
      end
    end
  end
  object Panel1: TPanel
    Left = 643
    Top = 0
    Width = 5
    Height = 566
    Color = clGreen
    TabOrder = 2
  end
  object Panel3: TPanel
    Left = 2
    Top = 561
    Width = 645
    Height = 37
    ParentBackground = False
    TabOrder = 1
    object pnVersao: TPanel
      Left = 543
      Top = 20
      Width = 96
      Height = 16
      BevelInner = bvLowered
      BevelOuter = bvLowered
      Caption = 'v. 2.8.0.xxx'
      Color = clBackground
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWhite
      Font.Height = -9
      Font.Name = 'Arial'
      Font.Style = [fsBold]
      ParentFont = False
      TabOrder = 0
    end
    object bt_Fechar_Infos_Gerais: TBitBtn
      Left = 274
      Top = 3
      Width = 96
      Height = 30
      Caption = 'Fechar'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -13
      Font.Name = 'Arial'
      Font.Style = [fsBold]
      ParentFont = False
      TabOrder = 1
      TabStop = False
      OnClick = Bt_Fechar_InfosGeraisClick
      Glyph.Data = {
        E6040000424DE604000000000000360000002800000014000000140000000100
        180000000000B0040000120B0000120B00000000000000000000FFFFFFFFFFFF
        FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
        FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
        FFFFFFFFFFFFFFFFFFFFFFA39C989C969D96909D918B98928B908C827AFFFFFF
        FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
        FFC0BCBCB4B4D19B9AD85657CD6364D96364D95657CD9998D2ADA9BE9D958EFF
        FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB7B4C18B8BD5
        5A5AD88081E48B8BE58D8DE48D8DE48B8BE57777E24646C98E8DC8A7A0A1FFFF
        FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6B4C27D7DCB9B9BE26E6ED254
        54D35A5AD55959D55959D55959D55454D39B9BE26868CC6262B5A8A2A3FFFFFF
        FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4848A78888D8F0F0FBBCBCE64242BA2525
        C42E2EC62E2EC62525C48888D8E2E2F5DBDBF13939B07574ADA59E98FFFFFFFF
        FFFFFFFFFFFFFFFF9291B52020943332A6BCBCE6DEDEF4B2B2DF2625B10000AE
        0000AE6E6ED2D8D8F1DBDBF38080CC10109505068DA8A5B3FFFFFFFFFFFFFFFF
        FFFFFFFF37378A00007D0000852828A2BCBCE6DEDEF4B2B2DF1F1FAA5A5AC8D4
        D4F0DBDBF38080CC01019100008800007D7C7AA8FFFFFFFFFFFFFFFFFFD0CFD6
        20207300007200007F0000852828A2BBBBE3D8D8F1BBBBE3CBCBECD9D9F28080
        CC01018F00008600007F000070515193BCB8B7FFFFFFFFFFFFBBBAC60E0E611D
        1D7B0E0E7C03037D00007B272799C3C3E5D3D3EBD6D6ED8484C300008300007F
        0000790000700000640A0A61C1BEC0FFFFFFFFFFFFBBBAC63838786564A06564
        A056569E4242977A7ABBD3D3EBD9D9EED9D9EEAFAFD12E2E8A14148116167B0C
        0C6D000058060751CAC8C9FFFFFFFFFFFFCECDD38383A48A8AAE8383AD8181B2
        B8B8D4F1F1F7EDEDF2CBCBE1DADAEAF1F1F7D3D3E48181B27E7EAD7E7EAD5454
        871B1B53CFCCCBFFFFFFFFFFFFFFFFFF7D7D929F9FB79D9DBAC3C3D5F3F3F4F1
        F1F7D3D3E49999C0ABABCCE6E6EEF6F6F8DDDDE79D9DBAA2A2BB8A8BA2848295
        DBD8D8FFFFFFFFFFFFFFFFFF8B8B96D8D8DDD5D5DEF6F6F8F5F5F6DDDDE7B4B4
        CBB4B4CBB1B1C9C3C3D5EDEDF2F9F8F8E3E3EABEBECCB5B5BFADABB1FFFFFFFF
        FFFFFFFFFFFFFFFFFFFFFF898896FEFEFEFBFBFBE6E6EEC9C9D5CAC9D5CBCBD6
        CBCBD6C8C7D3D5D5DEF3F2F3F9F9FAF0F0F2848290FFFFFFFFFFFFFFFFFFFFFF
        FFFFFFFFFFFFFFFFFFFFAEAEB8FFFFFFE5E3E8DBDBE0DBDADFDBDADFDBDADFDC
        DBDFDCDBE0EBEAECF9F9FA858594FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
        FFFFFFFFFFFFFFFFFFA4A4AFF4F4F5ECECEEF3F3F4F4F3F4F3F3F4F3F2F3E4E3
        E7E6E6E99493A0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
        FFFFFFFFFFFFFFFFB1B1BAB1B1BAD8D8DDE3E3E7E3E3E7D2D2D7A9A9B3C0C0C6
        FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
        FFFFFFFFFFFFFFFFFFFFFFFFFFC8C8CDCAC9CEFFFFFFFFFFFFFFFFFFFFFFFFFF
        FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
        FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
        FFFFFFFFFFFFFFFFFFFF}
      Spacing = 1
    end
  end
  object timerNuExecApos: TTimer
    Enabled = False
    Interval = 1
    OnTimer = timerNuExecAposTimer
    Left = 196
    Top = 570
  end
  object Popup_Menu_Contexto: TPopupMenu
    MenuAnimation = [maLeftToRight, maRightToLeft, maTopToBottom, maBottomToTop]
    OwnerDraw = True
    OnPopup = Popup_Menu_ContextoPopup
    Left = 68
    Top = 569
    object Mnu_LogAtividades: TMenuItem
      Caption = 'Logs de Atividades'
      Hint = 
        'Exibe as atividades desempenhadas pelos agentes do CACIC nesta d' +
        'ata.'
      OnClick = ExibirLogAtividades
      OnDrawItem = Mnu_LogAtividadesDrawItem
    end
    object Mnu_Configuracoes: TMenuItem
      Caption = 'Configura'#231#245'es'
      Hint = 
        'Permite a reconfigura'#231#227'o de endere'#231'o do Servidor de Aplica'#231#227'o e ' +
        'Servidor de Atualiza'#231#245'es'
      OnClick = ExibirConfiguracoes
      OnDrawItem = Mnu_ConfiguracoesDrawItem
    end
    object Mnu_ExecutarAgora: TMenuItem
      Caption = 'Executar Agora'
      Hint = 
        'Ordena ao Agente Principal que inicie as a'#231#245'es fora do intervalo' +
        ' previamente configurado no m'#243'dulo Gerente WEB'
      OnClick = ExecutaCacic
      OnDrawItem = Mnu_ExecutarAgoraDrawItem
    end
    object ExecutarMapa1: TMenuItem
      Caption = 'Executar Mapa'
      Hint = 'Executa Mapa Cacic'
      OnClick = InvocaMapa1Click
      OnDrawItem = ExecutarMapa1DrawItem
    end
    object Mnu_InformacoesGerais: TMenuItem
      Caption = 'Informa'#231#245'es Gerais'
      Hint = 
        'Exibe um resumo de informa'#231#245'es relevantes coletadas neste comput' +
        'ador'
      OnClick = Mnu_InformacoesGeraisClick
      OnDrawItem = Mnu_InformacoesGeraisDrawItem
    end
    object Mnu_SuporteRemoto: TMenuItem
      Caption = 'Ativar Suporte Remoto Seguro'
      Hint = 
        'Caso a op'#231#227'o de Suporte Remoto Seguro esteja ativa no m'#243'dulo Ger' +
        'ente WEB para esta subrede, esta op'#231#227'o executar'#225' o M'#243'dulo Servid' +
        'or de Suporte Remoto Seguro'
      OnClick = Mnu_SuporteRemotoClick
      OnDrawItem = Mnu_SuporteRemotoDrawItem
    end
    object Mnu_FinalizarCacic: TMenuItem
      Caption = 'Finalizar o CACIC'
      Hint = 
        'Ordenar'#225' ao Agente Principal que auto-finalize-se. '#201' necess'#225'rio ' +
        'conhecer a senha configurada previamente no m'#243'dulo Gerente WEB.'
      OnClick = Sair
      OnDrawItem = Mnu_FinalizarCacicDrawItem
    end
  end
  object cn: TSHChangeNotify
    HardDriveOnly = False
    OnAssocChanged = cnAssocChanged
    OnAttributes = cnAttributes
    OnCreate = cnCreate
    OnDelete = cnDelete
    OnDriveAdd = cnDriveAdd
    OnDriveAddGUI = cnDriveAddGUI
    OnDriveRemoved = cnDriveRemoved
    OnMediaInserted = cnMediaInserted
    OnMediaRemoved = cnMediaRemoved
    OnMkDir = cnMkDir
    OnNetShare = cnNetShare
    OnNetUnshare = cnNetUnshare
    OnRenameFolder = cnRenameFolder
    OnRenameItem = cnRenameItem
    OnRmDir = cnRmDir
    OnServerDisconnect = cnServerDisconnect
    OnUpdateDir = cnUpdateDir
    OnUpdateImage = cnUpdateImage
    OnUpdateItem = cnUpdateItem
    OnEndSessionQuery = cnEndSessionQuery
    Left = 98
    Top = 569
  end
  object imgIconList: TImageList
    DrawingStyle = dsTransparent
    ShareImages = True
    Left = 164
    Top = 567
    Bitmap = {
      494C010104000900040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
      0000000000003600000028000000400000002000000001002000000000000020
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000000000000021A600000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000021A30000000000000000000021A600000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000021A30000000000000000000021A600000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000021A30000000000000000004B599C00000000000000
      00003BBC3C0050BE520080C48100000000000000000000000000000000000000
      000000000000000000004E5C9C0000000000001983000031FA000029CC000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000002AD5000030F60000000000001983000031FA000029CC000000
      00000000000000000000000000001E1E1E000000000000000000000000000000
      000000000000002AD5000030F60000000000001983000031FA000029CC000000
      00000000000000000000000000000F0F8E000F0F8E001E1E1E00000000000000
      000000000000002AD5000030F60000000000000000000132F9002D9D5B0004AE
      0B0075CF790049E02F003FE21D003AB83D0065DF6A0054DE570063D6630056DD
      5B00000000007581B7000130F500000000003D75AC000833C9002858B2000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000002452B2000833C9003B6EA4003D75AC000933C7002858B2000000
      00000000000000000000000000001E1E1E00224B4E0000000000000000000000
      0000000000002452B2000833C9003B6EA4003D75AC000833C9002858B2000000
      000000000000000000008E8E8E000000FF000000FF001E1E1E008E8E8E000000
      0000000000002452B2000833C9003B6EA400517696001D79830004AE10001EA8
      28009CE3880055DB420037DA2E0054BC4D000000000000000000000000000000
      000000000000385588000834CA006D88A00078C6C70087E1E0007CCACB000000
      0000000000005078C6006092ED00527CCD005681D5005D8DE9004C72BE000000
      0000000000007CCACB0086DEDD0086D8DA0078C6C70087E1E0007CCACB000000
      0000000000005078C6006092ED00374B73003D848E003BA7B600314365000000
      0000000000007CCACB0086DEDD0086D8DA0078C6C70087E1E0007CCACB000000
      0000000000005078C6006092ED000F0F8E000F0F8E001E1E1E008E8E8E000000
      0000000000007CCACB0086DEDD0086D8DA0074B8B00023C13700019D020049BA
      4D0095E394007ADE6B006EDE5400499F84006188D8006482BE008796B3000000
      0000000000008BD3D50082DBDE0080AEAF003B703C0076C4BA00447464005580
      D1006295F4006699FC006293F1005078C6005078C6006496F8006699FC005B89
      E30000000000497D6E0075C4B600396C38003B703C0076C4BA00447464005580
      D1006293F1006699FD006293F100374C71003D848E005DECFE003CA9B700496B
      AB0000000000497D6E0075C4B600396C38003B703C0076C4BA00447464005580
      D1006295F4006699FC006293F1008E8E8E008E8E8E006496F8006699FC005B89
      E30000000000497D6E0075C4B600396C380059A566000EBB1E00009F0A001FA8
      200098DBA20074D87D0055B36A004C7ABA005481D1006295F8006598FE006692
      E9008B99B70049786B0077CBBB00889E88000000000056AE2C003A727200409E
      E0005E98F5006699FC00527CCD006699FC006699FC005179C9006699FC005E98
      F500409EE000366B590053A72B00000000000000000056AE2C003A727200409F
      E1005E98F5006699FD00527BCC00425B8D0040898E005CEAFE005DECFE0036AF
      B8003B78AD00366B590053A72B00000000000000000056AE2C003A727200409E
      E0005E98F5006699FC008E8E8E000000FF000000FF001E1E1E006699FC005E98
      F500409EE000366B590053A72B000000000057D2670004C0200000B31F0003A4
      100035B168005C99E1005481D1006598FE006598FE005481D1006598FE005C99
      F6003F99DA00386C5C0056A7300000000000000000003E658500528BDD0038A7
      E10039A2DC006598FA006699FC006699FC006699FC006699FC006295F40038A7
      E10038A7E1005189D6003E65850000000000000000003D638300528BDD0039A7
      E20039A2DC006295F5006699FD00425B8D0024838D005DECFE005CEAFE005DEC
      FE0036ADB700406BA0003E65850000000000000000003E658500528BDD0038A7
      E10039A2DC006598FA008E8E8E000000FF000000FF001E1E1E008E8E8E0038A7
      E10038A7E1005189D6003E658500000000004DD449000ABB1D001AB02A004FBC
      470037BE41005C99E1006598FE006598FE006598FE006598FE006295F8003BA5
      E2003BA5E2004E85D10046667B00000000004B71BC006699FC006699FC005E98
      F5005799F0006699FC006699FC006699FC006699FC006699FC006699FC005599
      EE005E98F5006699FC006699FC00527BCC004B71BC006699FD006699FD005C98
      F3005799F000303C550025494E0039848E003BB5C6005DECFE003D848E003D84
      8E003D848E0025494E00547BC500517ACA004B71BC006699FC006699FC005E98
      F5005799F0006699FC008E8E8E000000FF000000FF0016165600565656005599
      EE005E98F5006699FC006699FC00527BCC004DD446002DCA1B0085E1850026C4
      16003DDA1F003DB55B006598FE006598FE006598FE006598FE006598FE00539C
      EF005D96F5006598FE006598FE00647FB6004B71BC006699FC006699FC006699
      FC005682D800527CCD005682D8006699FC006699FC005D8DE900527CCD00527C
      CD006496F8006699FC006699FC00466BB1004B71BC006699FD006699FD006699
      FD005682D800537CCE001E1E1E005DECFE005DECFE005CEAFE003EACB8001E1E
      1E001E1E1E001E1E1E001E1E1E00466BB1004B71BC006699FC006699FC006699
      FC005682D800527CCD005682D8004E4E8E000000FF000000FF00161656005656
      56006496F8006699FC006699FC00466BB1005EC35E0055E2530087DF780042C7
      370045CE380037B650005783DB006598FE006598FE005B8AE700517ACD004F77
      C8006295F8006598FE006497FC0063779F0001020600334C80004B71BC005D8D
      E9006295F4006495F4006598FA006699FC006699FC006598FA006295F4006293
      F1005B89E300466CB200263A5F000000000000010500334C80004B71BC005E8E
      EB006295F5006495F500405A8B003AB3BD005CEAFE005CEAFE005DECFE001F53
      5B004D71B700466CB200263A5F000000000001020600334C80004B71BC005D8D
      E9006295F4008E8E8E006598FA006699FC004E4E8E000000FF000000FF001616
      560056565600466CB200263A5F0000000000546F540062DB5D0088DE8D005CCD
      55003AC537004BB293006598FE006598FE006598FE006598FE006598FE006598
      FE005D8DEB004365A90023355700000000000000000000000000000000000000
      000004070B00090E19000F1727001F2F4E00203051000D142200070B15000102
      0600000000000000000000000000000000000000000000000000000000000000
      000004070B00090E19000F1727001C4449005DECFE005CEAFE005DECFE0051E1
      F000123A3F000000000000000000000000000000000000000000000000000000
      00000F0F8E000000FF000F0F8E001F2F4E00203051004E4E8E000000FF000F0F
      8E001E1E1E00000000000000000000000000000000001748160065BB6B0063C6
      6C002C7E2A000D141B000E162500202F5100203153000E162500090E18000508
      0E000000000000000000191919000000000000000000000B3A00000D4700000D
      4700000D4800000D4800000D4800000D480003114E00000D4800000D4700000D
      4800000D4800000D4700000A37000000000000000000000B3A00000D4700000D
      4700000D4800000D4800000D4800161C370048B9C3005CEAFE005DECFE005DEC
      FE003EBDCA00091C3A00000A37000000000000000000000B3A00000D4700000D
      47000F0F8E000000FF000F0F8E001E1E1E0003114E008E8E8E000000FF000F0F
      8E001E1E1E00000D4700000A3700000000000000000009113A0004174400081E
      490001104100000C4000000C4000000C400003114900000C4000000C4000000C
      4000000C4000000C4000282F50000000000000000000000000002D7791002E7A
      94002E7A94002E7A94002E7A94002E7A94002E7A94002E7A94002E7A94002E7A
      94002E7A94002A728C00000000000000000000000000000000002D7791002E7A
      94002E7A94002E7A94002E7A94002F6D7900204F55005DECFE005CEAFE005CEA
      FE005CEAFE001C5F6700000000000000000000000000000000002D7791002E7A
      94000F0F8E000000FF000000FF000F0F8E000F0F8E000707C6000000FF000F0F
      8E001E1E1E002A728C00000000000000000000000000000000002D768A002D76
      8A002D768A002D768A002D768A002D768A002D768A002D768A002D768A002D76
      8A002D768A003176880000000000000000000000000000000000347672002C59
      9B004A885E001D4C6800366AA000478760002655640032609700447F5B001D4B
      6B003B6E9200478D730000000000000000000000000000000000347672002C59
      9B004A885E001D4C6800366AA000478760001E2A450059ECFD005CEAFE005CEA
      FE005CEAFE0050D9EC001B363A00000000000000000000000000347672002C59
      9B004E4E8E000000FF000000FF000000FF000000FF000000FF000000FF001616
      56001E1E1E00478D73000000000000000000000000000000000043777E002D5E
      9800478660001B4B77003F79AE004D906700295F63002B5B9D00448068002252
      6F004075940065A17D00000000000000000000000000000000002B719C004D95
      DA0067C184002E719F00519BD6005AAD8D003A80A000539ACA005AAE83003374
      AE0059A7C5004C998800000000000000000000000000000000002B719C004D95
      DA0067C184002E719F00519BD6005AAD8D0031648D001E1E1E001E1E1E001E1E
      1E001E1E1E001E1E1E001E1E1E001E1E1E0000000000000000002B719C004D95
      DA0067C18400565656001E1E1E001E1E1E001E1E1E001E1E1E001E1E1E001E1E
      1E00565656004C998800000000000000000000000000000000002F7792004A92
      D20064BE81002769A500529DE1005BAE9300418C9200468CC30054A687003072
      AD0059A6C4004D9C870000000000000000000000000000000000347A92003C7A
      CF0068BC8D002A6B89004D95DA0067BD7F00307487004787D60062B485002967
      9800539CCD005AAE830000000000000000000000000000000000347A92003C7A
      CF0068BC8D002A6B89004D95DA0067BD7F0030748700497074001E1E1E001E1E
      1E001E1E1E001E1E1E001E1E1E001E1E1E000000000000000000347A92003C7A
      CF0068BC8D002A6B89008E8E8E008E8E8E008E8E8E008E8E8E008E8E8E008E8E
      8E00539CCD005AAE83000000000000000000000000000000000064949100658F
      C10081B6A0005E8999006D9CD2007EB995005F8F92006692C80081B6A000608C
      9900739FCB007EB890000000000000000000424D3E000000000000003E000000
      2800000040000000200000000100010000000000000100000000000000000000
      000000000000000000000000FFFFFF0000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000BFFDBFFDBFFDB1FD1FF91EF91E398009
      1FF81E781C1800F8181818181818001800080008000800008001800180010001
      8001800180010001000000000000000000000000000000000001000100010001
      00010001000180018001800180018001C003C003C003C003C003C001C003C003
      C003C000C003C003C003C000C003C00300000000000000000000000000000000
      000000000000}
  end
  object timerCheckNoMinuto: TTimer
    Interval = 600000
    OnTimer = timerCheckNoMinutoTimer
    Left = 36
    Top = 566
  end
  object TrayIcon1: TTrayIcon
    PopupMenu = Popup_Menu_Contexto
    Left = 132
    Top = 573
  end
  object ApplicationEvents1: TApplicationEvents
    OnMessage = ApplicationEvents1Message
    Left = 8
    Top = 568
  end
  object CheckForcaColeta: TTimer
    Enabled = False
    Interval = 3600000
    OnTimer = CheckForcaColetaTimer
    Left = 392
    Top = 568
  end
  object timerNuIntervalo: TTimer
    Enabled = False
    Interval = 1
    Left = 232
    Top = 568
  end
end