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
|
--TEST--
Test is_readable() function: basic functionality
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) != 'WIN') {
die('skip only for Windows');
}
?>
--FILE--
<?php
/* Prototype: bool is_readable ( string $filename );
Description: Tells whether the filename is readable
*/
// include common file test functions
require dirname(__FILE__).'/file.inc';
echo "*** Testing is_readable(): basic functionality ***\n";
// create a file
$filename = dirname(__FILE__)."/is_readable.tmp";
create_file($filename);
$counter = 1;
/* loop to check if the file with new mode is readable
using is_readable() */
for($mode = 0000; $mode <= 0777; $mode++) {
echo "-- Changing mode of file to $mode --\n";
chmod($filename, $mode); // change mode of file
var_dump( is_readable($filename) );
$counter++;
clearstatcache();
}
// delete the temp file
delete_file($filename);
echo "Done\n";
?>
--EXPECTF--
*** Testing is_readable(): basic functionality ***
-- Changing mode of file to 0 --
bool(true)
-- Changing mode of file to 1 --
bool(true)
-- Changing mode of file to 2 --
bool(true)
-- Changing mode of file to 3 --
bool(true)
-- Changing mode of file to 4 --
bool(true)
-- Changing mode of file to 5 --
bool(true)
-- Changing mode of file to 6 --
bool(true)
-- Changing mode of file to 7 --
bool(true)
-- Changing mode of file to 8 --
bool(true)
-- Changing mode of file to 9 --
bool(true)
-- Changing mode of file to 10 --
bool(true)
-- Changing mode of file to 11 --
bool(true)
-- Changing mode of file to 12 --
bool(true)
-- Changing mode of file to 13 --
bool(true)
-- Changing mode of file to 14 --
bool(true)
-- Changing mode of file to 15 --
bool(true)
-- Changing mode of file to 16 --
bool(true)
-- Changing mode of file to 17 --
bool(true)
-- Changing mode of file to 18 --
bool(true)
-- Changing mode of file to 19 --
bool(true)
-- Changing mode of file to 20 --
bool(true)
-- Changing mode of file to 21 --
bool(true)
-- Changing mode of file to 22 --
bool(true)
-- Changing mode of file to 23 --
bool(true)
-- Changing mode of file to 24 --
bool(true)
-- Changing mode of file to 25 --
bool(true)
-- Changing mode of file to 26 --
bool(true)
-- Changing mode of file to 27 --
bool(true)
-- Changing mode of file to 28 --
bool(true)
-- Changing mode of file to 29 --
bool(true)
-- Changing mode of file to 30 --
bool(true)
-- Changing mode of file to 31 --
bool(true)
-- Changing mode of file to 32 --
bool(true)
-- Changing mode of file to 33 --
bool(true)
-- Changing mode of file to 34 --
bool(true)
-- Changing mode of file to 35 --
bool(true)
-- Changing mode of file to 36 --
bool(true)
-- Changing mode of file to 37 --
bool(true)
-- Changing mode of file to 38 --
bool(true)
-- Changing mode of file to 39 --
bool(true)
-- Changing mode of file to 40 --
bool(true)
-- Changing mode of file to 41 --
bool(true)
-- Changing mode of file to 42 --
bool(true)
-- Changing mode of file to 43 --
bool(true)
-- Changing mode of file to 44 --
bool(true)
-- Changing mode of file to 45 --
bool(true)
-- Changing mode of file to 46 --
bool(true)
-- Changing mode of file to 47 --
bool(true)
-- Changing mode of file to 48 --
bool(true)
-- Changing mode of file to 49 --
bool(true)
-- Changing mode of file to 50 --
bool(true)
-- Changing mode of file to 51 --
bool(true)
-- Changing mode of file to 52 --
bool(true)
-- Changing mode of file to 53 --
bool(true)
-- Changing mode of file to 54 --
bool(true)
-- Changing mode of file to 55 --
bool(true)
-- Changing mode of file to 56 --
bool(true)
-- Changing mode of file to 57 --
bool(true)
-- Changing mode of file to 58 --
bool(true)
-- Changing mode of file to 59 --
bool(true)
-- Changing mode of file to 60 --
bool(true)
-- Changing mode of file to 61 --
bool(true)
-- Changing mode of file to 62 --
bool(true)
-- Changing mode of file to 63 --
bool(true)
-- Changing mode of file to 64 --
bool(true)
-- Changing mode of file to 65 --
bool(true)
-- Changing mode of file to 66 --
bool(true)
-- Changing mode of file to 67 --
bool(true)
-- Changing mode of file to 68 --
bool(true)
-- Changing mode of file to 69 --
bool(true)
-- Changing mode of file to 70 --
bool(true)
-- Changing mode of file to 71 --
bool(true)
-- Changing mode of file to 72 --
bool(true)
-- Changing mode of file to 73 --
bool(true)
-- Changing mode of file to 74 --
bool(true)
-- Changing mode of file to 75 --
bool(true)
-- Changing mode of file to 76 --
bool(true)
-- Changing mode of file to 77 --
bool(true)
-- Changing mode of file to 78 --
bool(true)
-- Changing mode of file to 79 --
bool(true)
-- Changing mode of file to 80 --
bool(true)
-- Changing mode of file to 81 --
bool(true)
-- Changing mode of file to 82 --
bool(true)
-- Changing mode of file to 83 --
bool(true)
-- Changing mode of file to 84 --
bool(true)
-- Changing mode of file to 85 --
bool(true)
-- Changing mode of file to 86 --
bool(true)
-- Changing mode of file to 87 --
bool(true)
-- Changing mode of file to 88 --
bool(true)
-- Changing mode of file to 89 --
bool(true)
-- Changing mode of file to 90 --
bool(true)
-- Changing mode of file to 91 --
bool(true)
-- Changing mode of file to 92 --
bool(true)
-- Changing mode of file to 93 --
bool(true)
-- Changing mode of file to 94 --
bool(true)
-- Changing mode of file to 95 --
bool(true)
-- Changing mode of file to 96 --
bool(true)
-- Changing mode of file to 97 --
bool(true)
-- Changing mode of file to 98 --
bool(true)
-- Changing mode of file to 99 --
bool(true)
-- Changing mode of file to 100 --
bool(true)
-- Changing mode of file to 101 --
bool(true)
-- Changing mode of file to 102 --
bool(true)
-- Changing mode of file to 103 --
bool(true)
-- Changing mode of file to 104 --
bool(true)
-- Changing mode of file to 105 --
bool(true)
-- Changing mode of file to 106 --
bool(true)
-- Changing mode of file to 107 --
bool(true)
-- Changing mode of file to 108 --
bool(true)
-- Changing mode of file to 109 --
bool(true)
-- Changing mode of file to 110 --
bool(true)
-- Changing mode of file to 111 --
bool(true)
-- Changing mode of file to 112 --
bool(true)
-- Changing mode of file to 113 --
bool(true)
-- Changing mode of file to 114 --
bool(true)
-- Changing mode of file to 115 --
bool(true)
-- Changing mode of file to 116 --
bool(true)
-- Changing mode of file to 117 --
bool(true)
-- Changing mode of file to 118 --
bool(true)
-- Changing mode of file to 119 --
bool(true)
-- Changing mode of file to 120 --
bool(true)
-- Changing mode of file to 121 --
bool(true)
-- Changing mode of file to 122 --
bool(true)
-- Changing mode of file to 123 --
bool(true)
-- Changing mode of file to 124 --
bool(true)
-- Changing mode of file to 125 --
bool(true)
-- Changing mode of file to 126 --
bool(true)
-- Changing mode of file to 127 --
bool(true)
-- Changing mode of file to 128 --
bool(true)
-- Changing mode of file to 129 --
bool(true)
-- Changing mode of file to 130 --
bool(true)
-- Changing mode of file to 131 --
bool(true)
-- Changing mode of file to 132 --
bool(true)
-- Changing mode of file to 133 --
bool(true)
-- Changing mode of file to 134 --
bool(true)
-- Changing mode of file to 135 --
bool(true)
-- Changing mode of file to 136 --
bool(true)
-- Changing mode of file to 137 --
bool(true)
-- Changing mode of file to 138 --
bool(true)
-- Changing mode of file to 139 --
bool(true)
-- Changing mode of file to 140 --
bool(true)
-- Changing mode of file to 141 --
bool(true)
-- Changing mode of file to 142 --
bool(true)
-- Changing mode of file to 143 --
bool(true)
-- Changing mode of file to 144 --
bool(true)
-- Changing mode of file to 145 --
bool(true)
-- Changing mode of file to 146 --
bool(true)
-- Changing mode of file to 147 --
bool(true)
-- Changing mode of file to 148 --
bool(true)
-- Changing mode of file to 149 --
bool(true)
-- Changing mode of file to 150 --
bool(true)
-- Changing mode of file to 151 --
bool(true)
-- Changing mode of file to 152 --
bool(true)
-- Changing mode of file to 153 --
bool(true)
-- Changing mode of file to 154 --
bool(true)
-- Changing mode of file to 155 --
bool(true)
-- Changing mode of file to 156 --
bool(true)
-- Changing mode of file to 157 --
bool(true)
-- Changing mode of file to 158 --
bool(true)
-- Changing mode of file to 159 --
bool(true)
-- Changing mode of file to 160 --
bool(true)
-- Changing mode of file to 161 --
bool(true)
-- Changing mode of file to 162 --
bool(true)
-- Changing mode of file to 163 --
bool(true)
-- Changing mode of file to 164 --
bool(true)
-- Changing mode of file to 165 --
bool(true)
-- Changing mode of file to 166 --
bool(true)
-- Changing mode of file to 167 --
bool(true)
-- Changing mode of file to 168 --
bool(true)
-- Changing mode of file to 169 --
bool(true)
-- Changing mode of file to 170 --
bool(true)
-- Changing mode of file to 171 --
bool(true)
-- Changing mode of file to 172 --
bool(true)
-- Changing mode of file to 173 --
bool(true)
-- Changing mode of file to 174 --
bool(true)
-- Changing mode of file to 175 --
bool(true)
-- Changing mode of file to 176 --
bool(true)
-- Changing mode of file to 177 --
bool(true)
-- Changing mode of file to 178 --
bool(true)
-- Changing mode of file to 179 --
bool(true)
-- Changing mode of file to 180 --
bool(true)
-- Changing mode of file to 181 --
bool(true)
-- Changing mode of file to 182 --
bool(true)
-- Changing mode of file to 183 --
bool(true)
-- Changing mode of file to 184 --
bool(true)
-- Changing mode of file to 185 --
bool(true)
-- Changing mode of file to 186 --
bool(true)
-- Changing mode of file to 187 --
bool(true)
-- Changing mode of file to 188 --
bool(true)
-- Changing mode of file to 189 --
bool(true)
-- Changing mode of file to 190 --
bool(true)
-- Changing mode of file to 191 --
bool(true)
-- Changing mode of file to 192 --
bool(true)
-- Changing mode of file to 193 --
bool(true)
-- Changing mode of file to 194 --
bool(true)
-- Changing mode of file to 195 --
bool(true)
-- Changing mode of file to 196 --
bool(true)
-- Changing mode of file to 197 --
bool(true)
-- Changing mode of file to 198 --
bool(true)
-- Changing mode of file to 199 --
bool(true)
-- Changing mode of file to 200 --
bool(true)
-- Changing mode of file to 201 --
bool(true)
-- Changing mode of file to 202 --
bool(true)
-- Changing mode of file to 203 --
bool(true)
-- Changing mode of file to 204 --
bool(true)
-- Changing mode of file to 205 --
bool(true)
-- Changing mode of file to 206 --
bool(true)
-- Changing mode of file to 207 --
bool(true)
-- Changing mode of file to 208 --
bool(true)
-- Changing mode of file to 209 --
bool(true)
-- Changing mode of file to 210 --
bool(true)
-- Changing mode of file to 211 --
bool(true)
-- Changing mode of file to 212 --
bool(true)
-- Changing mode of file to 213 --
bool(true)
-- Changing mode of file to 214 --
bool(true)
-- Changing mode of file to 215 --
bool(true)
-- Changing mode of file to 216 --
bool(true)
-- Changing mode of file to 217 --
bool(true)
-- Changing mode of file to 218 --
bool(true)
-- Changing mode of file to 219 --
bool(true)
-- Changing mode of file to 220 --
bool(true)
-- Changing mode of file to 221 --
bool(true)
-- Changing mode of file to 222 --
bool(true)
-- Changing mode of file to 223 --
bool(true)
-- Changing mode of file to 224 --
bool(true)
-- Changing mode of file to 225 --
bool(true)
-- Changing mode of file to 226 --
bool(true)
-- Changing mode of file to 227 --
bool(true)
-- Changing mode of file to 228 --
bool(true)
-- Changing mode of file to 229 --
bool(true)
-- Changing mode of file to 230 --
bool(true)
-- Changing mode of file to 231 --
bool(true)
-- Changing mode of file to 232 --
bool(true)
-- Changing mode of file to 233 --
bool(true)
-- Changing mode of file to 234 --
bool(true)
-- Changing mode of file to 235 --
bool(true)
-- Changing mode of file to 236 --
bool(true)
-- Changing mode of file to 237 --
bool(true)
-- Changing mode of file to 238 --
bool(true)
-- Changing mode of file to 239 --
bool(true)
-- Changing mode of file to 240 --
bool(true)
-- Changing mode of file to 241 --
bool(true)
-- Changing mode of file to 242 --
bool(true)
-- Changing mode of file to 243 --
bool(true)
-- Changing mode of file to 244 --
bool(true)
-- Changing mode of file to 245 --
bool(true)
-- Changing mode of file to 246 --
bool(true)
-- Changing mode of file to 247 --
bool(true)
-- Changing mode of file to 248 --
bool(true)
-- Changing mode of file to 249 --
bool(true)
-- Changing mode of file to 250 --
bool(true)
-- Changing mode of file to 251 --
bool(true)
-- Changing mode of file to 252 --
bool(true)
-- Changing mode of file to 253 --
bool(true)
-- Changing mode of file to 254 --
bool(true)
-- Changing mode of file to 255 --
bool(true)
-- Changing mode of file to 256 --
bool(true)
-- Changing mode of file to 257 --
bool(true)
-- Changing mode of file to 258 --
bool(true)
-- Changing mode of file to 259 --
bool(true)
-- Changing mode of file to 260 --
bool(true)
-- Changing mode of file to 261 --
bool(true)
-- Changing mode of file to 262 --
bool(true)
-- Changing mode of file to 263 --
bool(true)
-- Changing mode of file to 264 --
bool(true)
-- Changing mode of file to 265 --
bool(true)
-- Changing mode of file to 266 --
bool(true)
-- Changing mode of file to 267 --
bool(true)
-- Changing mode of file to 268 --
bool(true)
-- Changing mode of file to 269 --
bool(true)
-- Changing mode of file to 270 --
bool(true)
-- Changing mode of file to 271 --
bool(true)
-- Changing mode of file to 272 --
bool(true)
-- Changing mode of file to 273 --
bool(true)
-- Changing mode of file to 274 --
bool(true)
-- Changing mode of file to 275 --
bool(true)
-- Changing mode of file to 276 --
bool(true)
-- Changing mode of file to 277 --
bool(true)
-- Changing mode of file to 278 --
bool(true)
-- Changing mode of file to 279 --
bool(true)
-- Changing mode of file to 280 --
bool(true)
-- Changing mode of file to 281 --
bool(true)
-- Changing mode of file to 282 --
bool(true)
-- Changing mode of file to 283 --
bool(true)
-- Changing mode of file to 284 --
bool(true)
-- Changing mode of file to 285 --
bool(true)
-- Changing mode of file to 286 --
bool(true)
-- Changing mode of file to 287 --
bool(true)
-- Changing mode of file to 288 --
bool(true)
-- Changing mode of file to 289 --
bool(true)
-- Changing mode of file to 290 --
bool(true)
-- Changing mode of file to 291 --
bool(true)
-- Changing mode of file to 292 --
bool(true)
-- Changing mode of file to 293 --
bool(true)
-- Changing mode of file to 294 --
bool(true)
-- Changing mode of file to 295 --
bool(true)
-- Changing mode of file to 296 --
bool(true)
-- Changing mode of file to 297 --
bool(true)
-- Changing mode of file to 298 --
bool(true)
-- Changing mode of file to 299 --
bool(true)
-- Changing mode of file to 300 --
bool(true)
-- Changing mode of file to 301 --
bool(true)
-- Changing mode of file to 302 --
bool(true)
-- Changing mode of file to 303 --
bool(true)
-- Changing mode of file to 304 --
bool(true)
-- Changing mode of file to 305 --
bool(true)
-- Changing mode of file to 306 --
bool(true)
-- Changing mode of file to 307 --
bool(true)
-- Changing mode of file to 308 --
bool(true)
-- Changing mode of file to 309 --
bool(true)
-- Changing mode of file to 310 --
bool(true)
-- Changing mode of file to 311 --
bool(true)
-- Changing mode of file to 312 --
bool(true)
-- Changing mode of file to 313 --
bool(true)
-- Changing mode of file to 314 --
bool(true)
-- Changing mode of file to 315 --
bool(true)
-- Changing mode of file to 316 --
bool(true)
-- Changing mode of file to 317 --
bool(true)
-- Changing mode of file to 318 --
bool(true)
-- Changing mode of file to 319 --
bool(true)
-- Changing mode of file to 320 --
bool(true)
-- Changing mode of file to 321 --
bool(true)
-- Changing mode of file to 322 --
bool(true)
-- Changing mode of file to 323 --
bool(true)
-- Changing mode of file to 324 --
bool(true)
-- Changing mode of file to 325 --
bool(true)
-- Changing mode of file to 326 --
bool(true)
-- Changing mode of file to 327 --
bool(true)
-- Changing mode of file to 328 --
bool(true)
-- Changing mode of file to 329 --
bool(true)
-- Changing mode of file to 330 --
bool(true)
-- Changing mode of file to 331 --
bool(true)
-- Changing mode of file to 332 --
bool(true)
-- Changing mode of file to 333 --
bool(true)
-- Changing mode of file to 334 --
bool(true)
-- Changing mode of file to 335 --
bool(true)
-- Changing mode of file to 336 --
bool(true)
-- Changing mode of file to 337 --
bool(true)
-- Changing mode of file to 338 --
bool(true)
-- Changing mode of file to 339 --
bool(true)
-- Changing mode of file to 340 --
bool(true)
-- Changing mode of file to 341 --
bool(true)
-- Changing mode of file to 342 --
bool(true)
-- Changing mode of file to 343 --
bool(true)
-- Changing mode of file to 344 --
bool(true)
-- Changing mode of file to 345 --
bool(true)
-- Changing mode of file to 346 --
bool(true)
-- Changing mode of file to 347 --
bool(true)
-- Changing mode of file to 348 --
bool(true)
-- Changing mode of file to 349 --
bool(true)
-- Changing mode of file to 350 --
bool(true)
-- Changing mode of file to 351 --
bool(true)
-- Changing mode of file to 352 --
bool(true)
-- Changing mode of file to 353 --
bool(true)
-- Changing mode of file to 354 --
bool(true)
-- Changing mode of file to 355 --
bool(true)
-- Changing mode of file to 356 --
bool(true)
-- Changing mode of file to 357 --
bool(true)
-- Changing mode of file to 358 --
bool(true)
-- Changing mode of file to 359 --
bool(true)
-- Changing mode of file to 360 --
bool(true)
-- Changing mode of file to 361 --
bool(true)
-- Changing mode of file to 362 --
bool(true)
-- Changing mode of file to 363 --
bool(true)
-- Changing mode of file to 364 --
bool(true)
-- Changing mode of file to 365 --
bool(true)
-- Changing mode of file to 366 --
bool(true)
-- Changing mode of file to 367 --
bool(true)
-- Changing mode of file to 368 --
bool(true)
-- Changing mode of file to 369 --
bool(true)
-- Changing mode of file to 370 --
bool(true)
-- Changing mode of file to 371 --
bool(true)
-- Changing mode of file to 372 --
bool(true)
-- Changing mode of file to 373 --
bool(true)
-- Changing mode of file to 374 --
bool(true)
-- Changing mode of file to 375 --
bool(true)
-- Changing mode of file to 376 --
bool(true)
-- Changing mode of file to 377 --
bool(true)
-- Changing mode of file to 378 --
bool(true)
-- Changing mode of file to 379 --
bool(true)
-- Changing mode of file to 380 --
bool(true)
-- Changing mode of file to 381 --
bool(true)
-- Changing mode of file to 382 --
bool(true)
-- Changing mode of file to 383 --
bool(true)
-- Changing mode of file to 384 --
bool(true)
-- Changing mode of file to 385 --
bool(true)
-- Changing mode of file to 386 --
bool(true)
-- Changing mode of file to 387 --
bool(true)
-- Changing mode of file to 388 --
bool(true)
-- Changing mode of file to 389 --
bool(true)
-- Changing mode of file to 390 --
bool(true)
-- Changing mode of file to 391 --
bool(true)
-- Changing mode of file to 392 --
bool(true)
-- Changing mode of file to 393 --
bool(true)
-- Changing mode of file to 394 --
bool(true)
-- Changing mode of file to 395 --
bool(true)
-- Changing mode of file to 396 --
bool(true)
-- Changing mode of file to 397 --
bool(true)
-- Changing mode of file to 398 --
bool(true)
-- Changing mode of file to 399 --
bool(true)
-- Changing mode of file to 400 --
bool(true)
-- Changing mode of file to 401 --
bool(true)
-- Changing mode of file to 402 --
bool(true)
-- Changing mode of file to 403 --
bool(true)
-- Changing mode of file to 404 --
bool(true)
-- Changing mode of file to 405 --
bool(true)
-- Changing mode of file to 406 --
bool(true)
-- Changing mode of file to 407 --
bool(true)
-- Changing mode of file to 408 --
bool(true)
-- Changing mode of file to 409 --
bool(true)
-- Changing mode of file to 410 --
bool(true)
-- Changing mode of file to 411 --
bool(true)
-- Changing mode of file to 412 --
bool(true)
-- Changing mode of file to 413 --
bool(true)
-- Changing mode of file to 414 --
bool(true)
-- Changing mode of file to 415 --
bool(true)
-- Changing mode of file to 416 --
bool(true)
-- Changing mode of file to 417 --
bool(true)
-- Changing mode of file to 418 --
bool(true)
-- Changing mode of file to 419 --
bool(true)
-- Changing mode of file to 420 --
bool(true)
-- Changing mode of file to 421 --
bool(true)
-- Changing mode of file to 422 --
bool(true)
-- Changing mode of file to 423 --
bool(true)
-- Changing mode of file to 424 --
bool(true)
-- Changing mode of file to 425 --
bool(true)
-- Changing mode of file to 426 --
bool(true)
-- Changing mode of file to 427 --
bool(true)
-- Changing mode of file to 428 --
bool(true)
-- Changing mode of file to 429 --
bool(true)
-- Changing mode of file to 430 --
bool(true)
-- Changing mode of file to 431 --
bool(true)
-- Changing mode of file to 432 --
bool(true)
-- Changing mode of file to 433 --
bool(true)
-- Changing mode of file to 434 --
bool(true)
-- Changing mode of file to 435 --
bool(true)
-- Changing mode of file to 436 --
bool(true)
-- Changing mode of file to 437 --
bool(true)
-- Changing mode of file to 438 --
bool(true)
-- Changing mode of file to 439 --
bool(true)
-- Changing mode of file to 440 --
bool(true)
-- Changing mode of file to 441 --
bool(true)
-- Changing mode of file to 442 --
bool(true)
-- Changing mode of file to 443 --
bool(true)
-- Changing mode of file to 444 --
bool(true)
-- Changing mode of file to 445 --
bool(true)
-- Changing mode of file to 446 --
bool(true)
-- Changing mode of file to 447 --
bool(true)
-- Changing mode of file to 448 --
bool(true)
-- Changing mode of file to 449 --
bool(true)
-- Changing mode of file to 450 --
bool(true)
-- Changing mode of file to 451 --
bool(true)
-- Changing mode of file to 452 --
bool(true)
-- Changing mode of file to 453 --
bool(true)
-- Changing mode of file to 454 --
bool(true)
-- Changing mode of file to 455 --
bool(true)
-- Changing mode of file to 456 --
bool(true)
-- Changing mode of file to 457 --
bool(true)
-- Changing mode of file to 458 --
bool(true)
-- Changing mode of file to 459 --
bool(true)
-- Changing mode of file to 460 --
bool(true)
-- Changing mode of file to 461 --
bool(true)
-- Changing mode of file to 462 --
bool(true)
-- Changing mode of file to 463 --
bool(true)
-- Changing mode of file to 464 --
bool(true)
-- Changing mode of file to 465 --
bool(true)
-- Changing mode of file to 466 --
bool(true)
-- Changing mode of file to 467 --
bool(true)
-- Changing mode of file to 468 --
bool(true)
-- Changing mode of file to 469 --
bool(true)
-- Changing mode of file to 470 --
bool(true)
-- Changing mode of file to 471 --
bool(true)
-- Changing mode of file to 472 --
bool(true)
-- Changing mode of file to 473 --
bool(true)
-- Changing mode of file to 474 --
bool(true)
-- Changing mode of file to 475 --
bool(true)
-- Changing mode of file to 476 --
bool(true)
-- Changing mode of file to 477 --
bool(true)
-- Changing mode of file to 478 --
bool(true)
-- Changing mode of file to 479 --
bool(true)
-- Changing mode of file to 480 --
bool(true)
-- Changing mode of file to 481 --
bool(true)
-- Changing mode of file to 482 --
bool(true)
-- Changing mode of file to 483 --
bool(true)
-- Changing mode of file to 484 --
bool(true)
-- Changing mode of file to 485 --
bool(true)
-- Changing mode of file to 486 --
bool(true)
-- Changing mode of file to 487 --
bool(true)
-- Changing mode of file to 488 --
bool(true)
-- Changing mode of file to 489 --
bool(true)
-- Changing mode of file to 490 --
bool(true)
-- Changing mode of file to 491 --
bool(true)
-- Changing mode of file to 492 --
bool(true)
-- Changing mode of file to 493 --
bool(true)
-- Changing mode of file to 494 --
bool(true)
-- Changing mode of file to 495 --
bool(true)
-- Changing mode of file to 496 --
bool(true)
-- Changing mode of file to 497 --
bool(true)
-- Changing mode of file to 498 --
bool(true)
-- Changing mode of file to 499 --
bool(true)
-- Changing mode of file to 500 --
bool(true)
-- Changing mode of file to 501 --
bool(true)
-- Changing mode of file to 502 --
bool(true)
-- Changing mode of file to 503 --
bool(true)
-- Changing mode of file to 504 --
bool(true)
-- Changing mode of file to 505 --
bool(true)
-- Changing mode of file to 506 --
bool(true)
-- Changing mode of file to 507 --
bool(true)
-- Changing mode of file to 508 --
bool(true)
-- Changing mode of file to 509 --
bool(true)
-- Changing mode of file to 510 --
bool(true)
-- Changing mode of file to 511 --
bool(true)
Done
|